/* =====================================================
       RESET & BASE
    ===================================================== */
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

    :root {
      --bg:          #000000;
      --bg2:         #0a0a0a;
      --bg3:         #111111;
      --surface:     rgba(255,255,255,0.04);
      --surface2:    rgba(255,255,255,0.07);
      --border:      rgba(255,255,255,0.1);
      --border2:     rgba(255,255,255,0.16);
      --txt:         #f5f5f7;
      --txt2:        rgba(245,245,247,0.6);
      --txt3:        rgba(245,245,247,0.36);
      --accent:      #0071e3;
      --accent2:     #34aadc;
      --accent-glow: rgba(0,113,227,0.35);
      --radius:      18px;
      --radius-lg:   28px;
      --hdr-h:       64px;
      --font:        -apple-system, BlinkMacSystemFont, "SF Pro Display", "Segoe UI", Helvetica, Arial, sans-serif;
      --ease-out:    cubic-bezier(0.22, 1, 0.36, 1);
      --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
    }

    body {
      font-family: var(--font);
      background: var(--bg);
      color: var(--txt);
      min-height: 100vh;
      overflow-x: hidden;
    }

    img { display: block; max-width: 100%; }
    a { color: inherit; text-decoration: none; }
    ul, ol { list-style: none; }

    /* =====================================================
       SCROLL PROGRESS
    ===================================================== */
    .progress-bar {
      position: fixed; top: 0; left: 0; z-index: 9999;
      height: 2px; width: 0%; background: linear-gradient(90deg, var(--accent), var(--accent2));
      transition: width 0.1s linear;
      pointer-events: none;
    }

    /* =====================================================
       NOISE TEXTURE OVERLAY
    ===================================================== */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
    }

    /* =====================================================
       HEADER
    ===================================================== */
    .hdr {
      position: fixed; top: 0; left: 0; right: 0; z-index: 900;
      height: var(--hdr-h);
      display: flex; align-items: center;
      background: rgba(0,0,0,0.72);
      backdrop-filter: saturate(180%) blur(20px);
      -webkit-backdrop-filter: saturate(180%) blur(20px);
      border-bottom: 1px solid var(--border);
      transition: transform 0.4s var(--ease-out), background 0.3s;
    }
    .hdr.hidden { transform: translateY(-100%); }
    .hdr__inner {
      width: 100%; max-width: 1200px; margin: 0 auto;
      padding: 0 24px;
      display: flex; align-items: center; gap: 24px;
    }

    .brand {
      display: flex; align-items: center; gap: 10px;
      font-size: 15px; font-weight: 600; letter-spacing: -0.01em;
      flex-shrink: 0;
    }
    .brand__logo {
      width: 32px; height: 32px; border-radius: 8px;
      object-fit: contain; background: var(--surface2);
    }

    .nav {
      display: flex; align-items: center; gap: 4px; margin-left: auto;
    }
    .nav a {
      padding: 6px 14px; border-radius: 20px;
      font-size: 13.5px; font-weight: 400; color: var(--txt2);
      transition: color 0.2s, background 0.2s;
    }
    .nav a:hover, .nav a.active { color: var(--txt); background: var(--surface2); }

    .hdr__cta {
      display: flex; gap: 8px; flex-shrink: 0;
    }

    /* Hamburger */
    .hamburger {
      display: none; flex-direction: column; gap: 5px;
      width: 36px; height: 36px; align-items: center; justify-content: center;
      cursor: pointer; background: none; border: none; margin-left: auto;
    }
    .hamburger span {
      display: block; width: 20px; height: 1.5px;
      background: var(--txt); border-radius: 2px;
      transition: transform 0.3s, opacity 0.3s;
    }
    .hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
    .hamburger.open span:nth-child(2) { opacity: 0; }
    .hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

    /* Mobile nav overlay */
    .mobile-nav {
      display: none; position: fixed; inset: 0; z-index: 800;
      background: rgba(0,0,0,0.92);
      backdrop-filter: blur(30px); -webkit-backdrop-filter: blur(30px);
      flex-direction: column; align-items: center; justify-content: center; gap: 12px;
      opacity: 0; transition: opacity 0.3s;
    }
    .mobile-nav.open { opacity: 1; }
    .mobile-nav a {
      font-size: 28px; font-weight: 300; color: var(--txt2);
      transition: color 0.2s; padding: 8px 24px;
    }
    .mobile-nav a:hover { color: var(--txt); }

    /* =====================================================
       BUTTONS
    ===================================================== */
    .btn {
      display: inline-flex; align-items: center; justify-content: center;
      padding: 9px 18px; border-radius: 980px;
      font-size: 13.5px; font-weight: 500;
      transition: all 0.2s var(--ease-out);
      cursor: pointer; border: none; white-space: nowrap;
    }
    .btn--primary {
      background: var(--accent); color: #fff;
    }
    .btn--primary:hover { background: #0077ed; transform: translateY(-1px); box-shadow: 0 4px 20px var(--accent-glow); }
    .btn--ghost {
      background: var(--surface2); color: var(--txt);
      border: 1px solid var(--border2);
    }
    .btn--ghost:hover { background: var(--surface); transform: translateY(-1px); }
    .btn--lg { padding: 14px 30px; font-size: 15px; }
    .btn--full { width: 100%; }

    /* =====================================================
       LAYOUT UTILITIES
    ===================================================== */
    .wrap { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .section { padding: 100px 0; position: relative; z-index: 1; }
    .section--alt { background: var(--bg2); }

    .eyebrow {
      font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
      text-transform: uppercase; color: var(--accent2);
      margin-bottom: 12px;
    }
    .sec-head { text-align: center; margin-bottom: 60px; }
    .sec-head h2 {
      font-size: clamp(32px, 5vw, 52px);
      font-weight: 600; letter-spacing: -0.03em;
      line-height: 1.1; margin-bottom: 16px;
    }
    .sec-head p { font-size: 17px; color: var(--txt2); max-width: 580px; margin: 0 auto; line-height: 1.6; }

    .grad {
      background: linear-gradient(120deg, #34aadc, #0071e3);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    /* =====================================================
       REVEAL ANIMATIONS
    ===================================================== */
    [data-reveal] {
      opacity: 0;
      transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
    }
    [data-reveal="up"]    { transform: translateY(40px); }
    [data-reveal="left"]  { transform: translateX(-40px); }
    [data-reveal="right"] { transform: translateX(40px); }
    [data-reveal="scale"] { transform: scale(0.92); }
    [data-reveal].in {
      opacity: 1; transform: none;
    }

    /* =====================================================
       HERO
    ===================================================== */
    .hero {
      min-height: 100vh;
      display: flex; align-items: center;
      padding: calc(var(--hdr-h) + 60px) 0 80px;
      position: relative; overflow: hidden;
    }

    /* Animated gradient background */
    .hero__bg {
      position: absolute; inset: 0; z-index: 0;
      background: radial-gradient(ellipse 80% 60% at 50% -10%, rgba(0,113,227,0.15) 0%, transparent 70%);
      animation: heroBgPulse 8s ease-in-out infinite alternate;
    }
    @keyframes heroBgPulse {
      from { opacity: 0.6; }
      to   { opacity: 1; }
    }

    /* Floating orbs */
    .orb {
      position: absolute; border-radius: 50%; pointer-events: none;
      filter: blur(80px); animation: orbFloat 12s ease-in-out infinite alternate;
    }
    .orb1 {
      width: 600px; height: 600px;
      background: radial-gradient(circle, rgba(0,113,227,0.18), transparent 70%);
      top: -200px; left: -100px;
    }
    .orb2 {
      width: 500px; height: 500px;
      background: radial-gradient(circle, rgba(52,170,220,0.12), transparent 70%);
      bottom: -100px; right: -150px;
      animation-delay: -6s; animation-duration: 15s;
    }
    @keyframes orbFloat {
      from { transform: translate(0,0) scale(1); }
      to   { transform: translate(30px, 20px) scale(1.08); }
    }

    .hero__inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
      align-items: center;
    }

    .hero__tag {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 14px; border-radius: 980px;
      background: rgba(0,113,227,0.15); border: 1px solid rgba(0,113,227,0.3);
      font-size: 12px; font-weight: 500; color: var(--accent2);
      margin-bottom: 24px;
    }
    .hero__tag::before { content: ''; width: 6px; height: 6px; background: var(--accent2); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
    @keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.85)} }

    .hero__title {
      font-size: clamp(40px, 6vw, 80px);
      font-weight: 700; letter-spacing: -0.04em; line-height: 1.05;
      margin-bottom: 24px;
    }
    .hero__lead {
      font-size: 19px; line-height: 1.6;
      color: var(--txt2); margin-bottom: 36px; max-width: 460px;
    }
    .hero__btns { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 48px; }

    /* Mini stats */
    .hero__stats {
      display: flex; gap: 24px; flex-wrap: wrap;
    }
    .stat-pill {
      padding: 10px 20px; border-radius: 12px;
      background: var(--surface); border: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    .stat-pill__k { font-size: 11px; color: var(--txt3); font-weight: 500; margin-bottom: 2px; text-transform: uppercase; letter-spacing: 0.08em; }
    .stat-pill__v { font-size: 18px; font-weight: 600; }

    /* Hero card */
    .hero__card {
      background: var(--surface);
      border: 1px solid var(--border2);
      border-radius: var(--radius-lg);
      padding: 32px;
      backdrop-filter: blur(24px);
      -webkit-backdrop-filter: blur(24px);
      box-shadow: 0 32px 80px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.08);
      position: relative; overflow: hidden;
    }
    .hero__card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    }
    .hero__card-badge {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.1em;
      color: var(--accent2); margin-bottom: 20px;
    }
    .hero__card-title { font-size: 22px; font-weight: 600; margin-bottom: 6px; }
    .hero__card-sub { font-size: 14px; color: var(--txt2); margin-bottom: 28px; line-height: 1.5; }

    .card-stats {
      display: grid; grid-template-columns: repeat(3, 1fr);
      gap: 1px; background: var(--border);
      border-radius: 12px; overflow: hidden; margin-bottom: 24px;
    }
    .card-stat {
      background: var(--bg3);
      padding: 14px 10px; text-align: center;
    }
    .card-stat__k { font-size: 10px; color: var(--txt3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
    .card-stat__v { font-size: 16px; font-weight: 600; }

    .card-actions { display: flex; flex-direction: column; gap: 8px; }

    /* Shimmer on card */
    .hero__card .shine {
      position: absolute; inset: 0; border-radius: var(--radius-lg);
      background: linear-gradient(135deg, rgba(255,255,255,0.05) 0%, transparent 50%);
      pointer-events: none;
    }

    /* =====================================================
       MARQUEE STRIP
    ===================================================== */
    .marquee-strip {
      border-top: 1px solid var(--border);
      border-bottom: 1px solid var(--border);
      padding: 16px 0; overflow: hidden;
      background: var(--bg2);
    }
    .marquee-track {
      display: flex; gap: 48px; width: max-content;
      animation: marquee 20s linear infinite;
    }
    .marquee-track span {
      font-size: 13px; font-weight: 500; color: var(--txt3);
      white-space: nowrap; display: flex; align-items: center; gap: 8px;
    }
    .marquee-track span::before {
      content: ''; width: 4px; height: 4px; border-radius: 50%;
      background: var(--accent); flex-shrink: 0;
    }
    @keyframes marquee {
      from { transform: translateX(0); }
      to   { transform: translateX(-50%); }
    }

    /* =====================================================
       CARDS (glass)
    ===================================================== */
    .glass-card {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      transition: border-color 0.3s, box-shadow 0.3s, transform 0.3s var(--ease-out);
      position: relative; overflow: hidden;
    }
    .glass-card:hover {
      border-color: var(--border2);
      box-shadow: 0 0 0 1px rgba(255,255,255,0.06), 0 24px 60px rgba(0,0,0,0.4);
      transform: translateY(-3px);
    }
    .glass-card::before {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08), transparent);
    }
    .glass-card--accent { border-color: rgba(0,113,227,0.3); }
    .glass-card--accent::after {
      content: '';
      position: absolute; top: 0; left: 0; right: 0; height: 1px;
      background: linear-gradient(90deg, transparent, var(--accent), transparent);
    }

    .card-icon {
      width: 40px; height: 40px; border-radius: 10px;
      background: var(--accent); display: flex; align-items: center; justify-content: center;
      font-size: 18px; margin-bottom: 16px;
    }
    .glass-card h3 { font-size: 18px; font-weight: 600; margin-bottom: 8px; }
    .glass-card p { font-size: 14px; color: var(--txt2); line-height: 1.6; }

    /* Price cards */
    .price-big {
      font-size: 48px; font-weight: 700; letter-spacing: -0.03em;
      margin: 20px 0 4px;
    }
    .price-unit { font-size: 18px; color: var(--txt2); font-weight: 400; }
    .price-desc { font-size: 14px; color: var(--txt2); margin-bottom: 20px; }

    .feature-list { margin: 20px 0; display: flex; flex-direction: column; gap: 10px; }
    .feature-list li {
      display: flex; align-items: center; gap: 10px;
      font-size: 14px; color: var(--txt2);
    }
    .feature-list li::before {
      content: ''; width: 14px; height: 14px; border-radius: 50%;
      background: rgba(0,113,227,0.15); border: 1.5px solid var(--accent);
      flex-shrink: 0; display: flex; align-items: center; justify-content: center;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 10 8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpolyline points='1,4 4,7 9,1' stroke='%230071e3' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center;
      background-size: 8px;
    }

    /* =====================================================
       GRIDS
    ===================================================== */
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
    .grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }

    /* =====================================================
       SECTION: LE CLUB
    ===================================================== */
    .club-info-row {
      display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 16px;
    }
    .info-item { display: flex; flex-direction: column; gap: 4px; }
    .info-item dt { font-size: 12px; color: var(--txt3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; }
    .info-item dd { font-size: 15px; font-weight: 500; }

    .callout-band {
      margin-top: 40px;
      background: linear-gradient(135deg, rgba(0,113,227,0.12), rgba(52,170,220,0.08));
      border: 1px solid rgba(0,113,227,0.25);
      border-radius: var(--radius);
      padding: 24px 28px;
      display: flex; align-items: center; gap: 20px;
      flex-wrap: wrap;
    }
    .callout-band p { font-size: 15px; flex: 1; }

    /* =====================================================
       COACH SECTION
    ===================================================== */
    .coach-layout {
      display: grid; grid-template-columns: 420px 1fr; gap: 48px; align-items: start;
    }
    .coach-img {
      border-radius: var(--radius-lg); overflow: hidden;
      border: 1px solid var(--border);
      aspect-ratio: 4/5;
      background: var(--bg3);
      position: relative;
    }
    .coach-img img { width: 100%; height: 100%; object-fit: cover; }
    .coach-img-placeholder {
      position: absolute; inset: 0;
      display: flex; flex-direction: column; align-items: center; justify-content: center;
      gap: 12px; color: var(--txt3);
    }
    .coach-img-placeholder svg { width: 64px; height: 64px; opacity: 0.3; }

    .coach-card { position: sticky; top: calc(var(--hdr-h) + 24px); }
    .coach-name { font-size: 28px; font-weight: 600; margin-bottom: 4px; }
    .coach-role { font-size: 14px; color: var(--accent2); font-weight: 500; margin-bottom: 24px; }
    .coach-features { display: flex; flex-direction: column; gap: 12px; margin-bottom: 28px; }
    .coach-feature {
      display: flex; align-items: center; gap: 12px;
      padding: 14px 16px; border-radius: 12px;
      background: var(--surface); border: 1px solid var(--border);
    }
    .coach-feature-icon { font-size: 20px; flex-shrink: 0; }
    .coach-feature-txt { font-size: 14px; font-weight: 500; }

    /* =====================================================
       HOURS
    ===================================================== */
    .hours-grid {
      display: flex; flex-direction: column; gap: 2px;
    }
    .hours-row {
      display: flex; align-items: center; justify-content: space-between;
      padding: 14px 20px; border-radius: 10px;
      transition: background 0.2s;
    }
    .hours-row:hover { background: var(--surface2); }
    .hours-row.today {
      background: rgba(0,113,227,0.12);
      border: 1px solid rgba(0,113,227,0.25);
    }
    .hours-row.today .hours-day { color: var(--accent2); font-weight: 600; }
    .hours-day { font-size: 15px; font-weight: 400; }
    .hours-time { font-size: 15px; font-weight: 500; color: var(--txt2); }
    .hours-row.today .hours-time { color: var(--txt); }
    .today-badge {
      font-size: 10px; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em;
      background: var(--accent); color: #fff; border-radius: 4px; padding: 2px 6px; margin-left: 8px;
    }
    .hours-closed { color: var(--txt3); }

    /* =====================================================
       FAQ
    ===================================================== */
    .faq { display: flex; flex-direction: column; gap: 2px; }
    .faq-item {
      border-radius: 12px;
      border: 1px solid var(--border);
      overflow: hidden;
      transition: border-color 0.2s;
    }
    .faq-item[open] { border-color: var(--border2); }
    .faq-item summary {
      padding: 18px 22px;
      font-size: 16px; font-weight: 500;
      cursor: pointer; list-style: none;
      display: flex; align-items: center; justify-content: space-between;
      user-select: none;
    }
    .faq-item summary::-webkit-details-marker { display: none; }
    .faq-item summary::after {
      content: '';
      width: 20px; height: 20px; border-radius: 50%;
      background: var(--surface2);
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 12 12' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M3 5l3 3 3-3' stroke='rgba(245,245,247,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
      background-repeat: no-repeat; background-position: center;
      background-size: 12px;
      flex-shrink: 0;
      transition: transform 0.3s var(--ease-out);
    }
    .faq-item[open] summary::after { transform: rotate(180deg); }
    .faq-content {
      padding: 0 22px 18px;
      font-size: 15px; color: var(--txt2); line-height: 1.65;
    }

    /* =====================================================
       CONTACT
    ===================================================== */
    .contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

    .contact-item {
      padding: 4px 0;
    }
    .contact-label { font-size: 12px; color: var(--txt3); font-weight: 500; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 4px; }
    .contact-name { font-size: 17px; font-weight: 600; margin-bottom: 8px; }
    .contact-links { display: flex; flex-direction: column; gap: 6px; }
    .contact-link {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; color: var(--accent2);
      transition: color 0.2s;
    }
    .contact-link:hover { color: var(--txt); }
    .contact-link svg { width: 14px; height: 14px; flex-shrink: 0; }

    .contact-divider { height: 1px; background: var(--border); margin: 20px 0; }

    .map-wrap {
      margin-top: 16px; border-radius: 12px; overflow: hidden;
      border: 1px solid var(--border);
    }
    .map-wrap iframe { width: 100%; height: 240px; display: block; border: none; filter: grayscale(0.3) invert(0.9) hue-rotate(180deg); }

    /* =====================================================
       FOOTER
    ===================================================== */
    .ftr {
      border-top: 1px solid var(--border);
      padding: 40px 0;
      background: var(--bg);
    }
    .ftr__inner {
      display: flex; align-items: center; justify-content: space-between;
      gap: 20px; flex-wrap: wrap;
    }
    .ftr__brand { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; }
    .ftr__links { display: flex; gap: 20px; }
    .ftr__links a { font-size: 13px; color: var(--txt3); transition: color 0.2s; }
    .ftr__links a:hover { color: var(--txt2); }
    .ftr__copy { font-size: 12px; color: var(--txt3); width: 100%; text-align: center; margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--border); }

    /* =====================================================
       RESPONSIVE
    ===================================================== */
    @media (max-width: 980px) {
      .nav, .hdr__cta { display: none; }
      .hamburger { display: flex; }
      .mobile-nav { display: flex; }

      .hero__inner { grid-template-columns: 1fr; }
      .hero__card-wrapper { display: none; }

      .grid-2, .grid-3 { grid-template-columns: 1fr; }
      .coach-layout { grid-template-columns: 1fr; }
      .coach-img { aspect-ratio: 16/9; max-height: 300px; }
      .coach-card { position: static; }

      .contact-grid { grid-template-columns: 1fr; }
      .callout-band { flex-direction: column; align-items: flex-start; }
    }

    @media (max-width: 600px) {
      .section { padding: 70px 0; }
      .sec-head { margin-bottom: 40px; }
      .hero__stats { flex-direction: column; gap: 10px; }
    }

    /* =====================================================
       CURSOR GLOW
    ===================================================== */
    .cursor-glow {
      pointer-events: none;
      position: fixed; z-index: 0;
      width: 600px; height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,113,227,0.08), transparent 70%);
      transition: transform 0s;
      will-change: transform;
      top: 0; left: 0;
    }