  *, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

  :root {
    --bg: #06060e;
    --surface: #0c0c18;
    --surface-2: #111122;
    --border: #1a1a30;
    --red: #d42030;
    --red-soft: #e8354580;
    --blue: #1e6cf5;
    --blue-soft: #1e6cf560;
    --green: #10b981;
    --amber: #f59e0b;
    --violet: #8b5cf6;
    --teal: #14b8a6;
    --white: #f0f0f8;
    --muted: #6b6b90;
    --light: #a0a0c0;
  }

  html {
    scroll-behavior: smooth;
    scroll-snap-type: y mandatory;
  }

  body {
    font-family: 'Inter', system-ui, sans-serif;
    background: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    cursor: none;
  }

  /* ─── PAGE-BY-PAGE SCROLL SNAP ─── */
  section {
    scroll-snap-align: start;
    scroll-snap-stop: always;
  }

  /* ─── CUSTOM CURSOR ─── */
  .cursor {
    position: fixed;
    width: 320px; height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,32,48,0.07) 0%, transparent 70%);
    pointer-events: none; z-index: 9999;
    transform: translate(-50%, -50%);
    mix-blend-mode: screen;
  }
  .cursor-dot {
    position: fixed;
    width: 6px; height: 6px;
    background: var(--red);
    border-radius: 50%;
    pointer-events: none; z-index: 10000;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 15px var(--red-soft);
  }
  @media (max-width: 768px) {
    body { cursor: auto; }
    .cursor, .cursor-dot { display: none; }
  }

  /* ─── CANVAS ─── */
  #particles {
    position: fixed; top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: 0; pointer-events: none;
  }

  /* ─── NAV ─── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    padding: 0 3rem; height: 64px;
    display: flex; align-items: center; justify-content: space-between;
    background: rgba(6,6,14,0);
    backdrop-filter: blur(0px);
    transition: all 0.5s;
  }
  nav.scrolled {
    background: rgba(6,6,14,0.92);
    backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
  }
  .nav-logo {
    font-family: 'Space Grotesk', sans-serif;
    font-weight: 800; font-size: 1.3rem;
    letter-spacing: 4px; color: var(--white);
    opacity: 0; transition: opacity 0.5s;
  }
  nav.scrolled .nav-logo { opacity: 1; }
  .nav-logo b { color: var(--red); }
  .nav-btn {
    padding: 0.55rem 1.6rem;
    background: transparent;
    border: 1px solid rgba(212,32,48,0.4);
    color: var(--white);
    font-weight: 600; font-size: 0.78rem;
    border-radius: 6px; cursor: pointer;
    text-decoration: none; letter-spacing: 0.8px;
    text-transform: uppercase;
    transition: all 0.35s;
    font-family: 'Inter', sans-serif;
  }
  .nav-btn:hover {
    background: var(--red); border-color: var(--red);
    box-shadow: 0 0 30px rgba(212,32,48,0.3);
  }

  /* ─── REVEAL ─── */
  .reveal {
    opacity: 0; transform: translateY(60px);
    transition: all 1s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal.visible { opacity: 1; transform: translateY(0); }
  .reveal-delay-1 { transition-delay: 0.15s; }
  .reveal-delay-2 { transition-delay: 0.3s; }
  .reveal-delay-3 { transition-delay: 0.45s; }
  .reveal-delay-4 { transition-delay: 0.6s; }
  .reveal-scale {
    opacity: 0; transform: scale(0.85);
    transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .reveal-scale.visible { opacity: 1; transform: scale(1); }

  .overline {
    font-size: 0.68rem; font-weight: 700;
    letter-spacing: 4px; text-transform: uppercase;
    color: var(--red); margin-bottom: 1.5rem;
  }

  /* ═══════════════════════════════════════════
     HERO
  ═══════════════════════════════════════════ */
  .hero {
    min-height: 100vh;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    position: relative; z-index: 1;
    padding: 2rem;
  }

  .hero-pre {
    font-size: 0.7rem; font-weight: 700;
    letter-spacing: 5px; text-transform: uppercase;
    color: var(--red); margin-bottom: 2.5rem;
    display: flex; align-items: center; gap: 1rem;
  }
  .hero-pre::before, .hero-pre::after {
    content: ''; width: 40px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--red));
  }
  .hero-pre::after { background: linear-gradient(90deg, var(--red), transparent); }

  .hero h1 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.8rem, 7vw, 6rem);
    font-weight: 800; line-height: 1;
    letter-spacing: -2px;
    max-width: 850px;
    margin-bottom: 2.5rem;
  }
  .hero h1 .line { display: block; overflow: hidden; }
  .hero h1 .line-inner {
    display: block;
    animation: slideUp 1s cubic-bezier(0.16, 1, 0.3, 1) both;
  }
  .hero h1 .line:nth-child(2) .line-inner { animation-delay: 0.12s; }
  .hero h1 .line:nth-child(3) .line-inner { animation-delay: 0.24s; }
  @keyframes slideUp { from { transform: translateY(110%); } to { transform: translateY(0); } }

  .hero h1 .soft {
    color: var(--light);
    font-weight: 300;
    font-size: 0.55em;
    letter-spacing: 0px;
    display: block;
    margin-bottom: 0.3em;
  }
  .hero h1 .fill-red {
    background: linear-gradient(135deg, var(--red), #ff4060);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .hero-tagline {
    font-size: clamp(0.95rem, 1.8vw, 1.1rem);
    color: var(--muted); max-width: 480px;
    line-height: 1.7; margin-bottom: 3.5rem;
    animation: fadeIn 1s 0.5s both;
  }
  @keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

  .hero-cta-group {
    display: flex; align-items: center; gap: 1.5rem;
    animation: fadeIn 1s 0.7s both;
  }

  .btn-primary {
    position: relative;
    padding: 1rem 2.8rem;
    background: var(--red); color: #fff;
    font-weight: 700; font-size: 0.88rem;
    border: none; border-radius: 8px; cursor: pointer;
    text-decoration: none; letter-spacing: 0.5px;
    font-family: 'Inter', sans-serif;
    overflow: hidden; transition: all 0.35s;
  }
  .btn-primary::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
    transform: translateX(-100%); transition: transform 0.6s;
  }
  .btn-primary:hover::before { transform: translateX(100%); }
  .btn-primary:hover {
    box-shadow: 0 0 50px rgba(212,32,48,0.4), 0 8px 32px rgba(212,32,48,0.2);
    transform: translateY(-2px);
  }

  .btn-ghost {
    padding: 1rem 1.2rem;
    background: none; border: none;
    color: var(--muted); font-size: 0.82rem; font-weight: 500;
    cursor: pointer; text-decoration: none;
    font-family: 'Inter', sans-serif;
    transition: color 0.3s;
  }
  .btn-ghost:hover { color: var(--white); }

  .scroll-indicator {
    position: absolute; bottom: 3rem;
    animation: fadeIn 1s 1.2s both;
  }
  .scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--red), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
  }
  @keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.6); }
    50% { opacity: 1; transform: scaleY(1); }
  }

  /* ═══════════════════════════════════════════
     MANIFESTO RUGBY
  ═══════════════════════════════════════════ */
  .manifesto {
    min-height: 100vh;
    padding: 8rem 2rem;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
    text-align: center;
    position: relative; z-index: 1;
  }

  .manifesto-text {
    max-width: 700px; margin: 0 auto;
    font-size: clamp(1.15rem, 2.2vw, 1.55rem);
    line-height: 1.85;
    color: var(--muted);
    font-weight: 300;
  }
  .manifesto-text em {
    font-style: normal; color: var(--white); font-weight: 600;
  }
  .manifesto-text .accent {
    color: var(--red); font-weight: 600;
  }

  .manifesto-sig {
    margin-top: 2.5rem;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem; font-weight: 600;
    letter-spacing: 3px; text-transform: uppercase;
    color: var(--muted);
    opacity: 0.5;
  }

  /* ═══════════════════════════════════════════
     GAINS / BENEFITS — the core section
  ═══════════════════════════════════════════ */
  .gains {
    min-height: 100vh;
    padding: 6rem 2rem 6rem;
    display: flex; flex-direction: column; justify-content: center;
    position: relative; z-index: 1;
  }

  .gains::before {
    content: '';
    position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 70% 50% at 20% 40%, rgba(30,108,245,0.04), transparent),
      radial-gradient(ellipse 70% 50% at 80% 60%, rgba(212,32,48,0.04), transparent);
    pointer-events: none;
  }

  .gains-header {
    text-align: center;
    margin-bottom: 3rem;
  }
  .gains-header h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 800; letter-spacing: -1px;
    line-height: 1.1;
  }

  .gains-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    max-width: 1200px; margin: 0 auto;
    background: var(--border);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
  }

  .gain {
    background: var(--surface);
    padding: 2rem 1.7rem;
    position: relative;
    transition: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
  }
  .gain:hover { background: var(--surface-2); }

  .gain::after {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 0; height: 2px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  }
  /* Color rotation across 8 cards (2 rows of 4) */
  .gain:nth-child(1)::after, .gain:nth-child(5)::after { background: var(--red); }
  .gain:nth-child(2)::after, .gain:nth-child(6)::after { background: var(--blue); }
  .gain:nth-child(3)::after, .gain:nth-child(7)::after { background: var(--green); }
  .gain:nth-child(4)::after, .gain:nth-child(8)::after { background: var(--amber); }
  .gain:hover::after { width: 80%; }

  .gain-icon {
    width: 40px; height: 40px;
    border-radius: 12px;
    display: flex; align-items: center; justify-content: center;
    margin-bottom: 1.2rem;
  }
  .gain:nth-child(1) .gain-icon, .gain:nth-child(5) .gain-icon { background: rgba(212,32,48,0.08); }
  .gain:nth-child(2) .gain-icon, .gain:nth-child(6) .gain-icon { background: rgba(30,108,245,0.08); }
  .gain:nth-child(3) .gain-icon, .gain:nth-child(7) .gain-icon { background: rgba(16,185,129,0.08); }
  .gain:nth-child(4) .gain-icon, .gain:nth-child(8) .gain-icon { background: rgba(245,158,11,0.08); }

  .gain h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1rem; font-weight: 700;
    margin-bottom: 0.6rem; line-height: 1.3;
  }

  .gain p {
    font-size: 0.8rem; color: var(--muted);
    line-height: 1.65;
  }

  /* ═══════════════════════════════════════════
     FORMATION — teaser visuel (pas de détails)
  ═══════════════════════════════════════════ */
  .teaser-section {
    min-height: 100vh;
    padding: 6rem 2rem;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
  }

  .teaser-inner {
    max-width: 1000px; margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem; align-items: center;
  }

  .teaser-copy h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 800; line-height: 1.08;
    letter-spacing: -1px;
    margin-bottom: 1.8rem;
  }

  .teaser-copy p {
    font-size: 1rem; line-height: 1.8;
    color: var(--muted); margin-bottom: 1.2rem;
  }

  .teaser-copy .team-hint {
    margin-top: 1.5rem;
    padding: 1.2rem 1.5rem;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 10px;
    display: flex; align-items: center; gap: 1.5rem;
  }

  .team-dots {
    display: flex; gap: 0.4rem; flex-shrink: 0;
  }
  .team-dot {
    width: 10px; height: 10px; border-radius: 50%;
  }
  .team-dot:nth-child(1) { background: var(--blue); box-shadow: 0 0 10px rgba(30,108,245,0.4); }
  .team-dot:nth-child(2) { background: var(--red); box-shadow: 0 0 10px rgba(212,32,48,0.4); }
  .team-dot:nth-child(3) { background: var(--green); box-shadow: 0 0 10px rgba(16,185,129,0.4); }
  .team-dot:nth-child(4) { background: var(--violet); box-shadow: 0 0 10px rgba(139,92,246,0.4); }
  .team-dot:nth-child(5) { background: var(--teal); box-shadow: 0 0 10px rgba(20,184,166,0.4); }
  .team-dot:nth-child(6) { background: #ec4899; box-shadow: 0 0 10px rgba(236,72,153,0.4); }
  .team-dot.coach {
    width: 10px; height: 10px;
    border-radius: 3px;
    background: var(--amber); box-shadow: 0 0 10px rgba(245,158,11,0.4);
  }
  .team-dot.separator {
    width: 1px; height: 14px;
    background: var(--border);
    border-radius: 0;
    box-shadow: none;
    margin: 0 0.2rem;
  }

  .team-hint-text {
    font-size: 0.82rem; color: var(--light); line-height: 1.5;
  }
  .team-hint-text strong { color: var(--white); }

  /* Formation visual */
  .formation-wrap {
    display: flex; align-items: center; justify-content: center;
  }
  .formation {
    position: relative;
    width: 360px; height: 360px;
  }
  .formation-field {
    position: absolute; inset: 0;
    border-radius: 50%;
    border: 1px solid rgba(30,108,245,0.08);
  }
  .formation-field:nth-child(2) { inset: 22%; border-color: rgba(212,32,48,0.12); }
  .formation-field:nth-child(3) { inset: 44%; border-color: rgba(255,255,255,0.05); }

  .formation-core {
    position: absolute; inset: 38%;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(212,32,48,0.12), transparent 70%);
    display: flex; align-items: center; justify-content: center;
  }
  .formation-core span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.8rem; font-weight: 800; letter-spacing: 4px;
    background: linear-gradient(135deg, var(--red), var(--blue));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
  }

  .f-node {
    position: absolute;
    width: 50px; height: 50px;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    cursor: default;
  }
  .f-node .f-ico { width: 16px; height: 16px; }

  /* 6 équipiers placed at 60°, 120°, 180°, 240°, 300°, 360° around the circle */
  .f-node.n1 {
    top: -2%; left: 50%; transform: translateX(-50%);
    background: rgba(30,108,245,0.12); border: 1px solid rgba(30,108,245,0.3);
    box-shadow: 0 0 25px rgba(30,108,245,0.1);
  }
  .f-node.n1:hover { transform: translateX(-50%) scale(1.15); box-shadow: 0 0 40px rgba(30,108,245,0.25); }

  .f-node.n2 {
    top: 22%; right: 1%;
    background: rgba(212,32,48,0.12); border: 1px solid rgba(212,32,48,0.3);
    box-shadow: 0 0 25px rgba(212,32,48,0.1);
  }
  .f-node.n2:hover { transform: scale(1.15); box-shadow: 0 0 40px rgba(212,32,48,0.25); }

  .f-node.n3 {
    bottom: 22%; right: 1%;
    background: rgba(16,185,129,0.12); border: 1px solid rgba(16,185,129,0.3);
    box-shadow: 0 0 25px rgba(16,185,129,0.1);
  }
  .f-node.n3:hover { transform: scale(1.15); box-shadow: 0 0 40px rgba(16,185,129,0.25); }

  .f-node.n4 {
    bottom: -2%; left: 50%; transform: translateX(-50%);
    background: rgba(139,92,246,0.12); border: 1px solid rgba(139,92,246,0.3);
    box-shadow: 0 0 25px rgba(139,92,246,0.1);
  }
  .f-node.n4:hover { transform: translateX(-50%) scale(1.15); box-shadow: 0 0 40px rgba(139,92,246,0.25); }

  .f-node.n5 {
    bottom: 22%; left: 1%;
    background: rgba(20,184,166,0.12); border: 1px solid rgba(20,184,166,0.3);
    box-shadow: 0 0 25px rgba(20,184,166,0.1);
  }
  .f-node.n5:hover { transform: scale(1.15); box-shadow: 0 0 40px rgba(20,184,166,0.25); }

  .f-node.n6 {
    top: 22%; left: 1%;
    background: rgba(236,72,153,0.12); border: 1px solid rgba(236,72,153,0.3);
    box-shadow: 0 0 25px rgba(236,72,153,0.1);
  }
  .f-node.n6:hover { transform: scale(1.15); box-shadow: 0 0 40px rgba(236,72,153,0.25); }

  .f-node.n-coach {
    top: 50%; left: -10%; transform: translateY(-50%);
    background: rgba(245,158,11,0.15); border: 1px solid rgba(245,158,11,0.4);
    box-shadow: 0 0 25px rgba(245,158,11,0.15);
    border-radius: 14px; /* square = different role */
  }
  .f-node.n-coach:hover { transform: translateY(-50%) scale(1.15); box-shadow: 0 0 40px rgba(245,158,11,0.3); }

  .energy-svg {
    position: absolute; inset: 0; width: 100%; height: 100%;
  }
  .energy-line {
    stroke-dasharray: 8 12;
    animation: dash 3s linear infinite;
  }
  @keyframes dash { to { stroke-dashoffset: -60; } }

  /* ═══════════════════════════════════════════
     CLIMAX
  ═══════════════════════════════════════════ */
  .climax {
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    position: relative; z-index: 1;
    overflow: hidden;
  }
  .climax::before {
    content: ''; position: absolute; inset: 0;
    background:
      radial-gradient(ellipse 60% 50% at 30% 50%, rgba(30,108,245,0.07), transparent),
      radial-gradient(ellipse 60% 50% at 70% 50%, rgba(212,32,48,0.07), transparent);
  }
  .climax-inner { position: relative; z-index: 1; }

  .climax h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(2.5rem, 7vw, 5.5rem);
    font-weight: 800; letter-spacing: -2px;
    line-height: 1; margin-bottom: 3rem;
  }

  .climax-pills {
    display: flex; justify-content: center; gap: 1.5rem; flex-wrap: wrap;
  }
  .pill {
    font-family: 'Space Grotesk', sans-serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    font-weight: 700; padding: 0.8rem 2.5rem;
    border-radius: 60px; letter-spacing: 1px;
    position: relative; overflow: hidden;
  }
  .pill::before {
    content: ''; position: absolute; inset: 0;
    border-radius: 60px; opacity: 0; transition: opacity 0.4s;
  }
  .pill-red {
    color: var(--red);
    border: 1.5px solid rgba(212,32,48,0.3);
    background: rgba(212,32,48,0.06);
  }
  .pill-red::before { background: rgba(212,32,48,0.1); }
  .pill-red:hover::before { opacity: 1; }
  .pill-blue {
    color: var(--blue);
    border: 1.5px solid rgba(30,108,245,0.3);
    background: rgba(30,108,245,0.06);
  }
  .pill-blue::before { background: rgba(30,108,245,0.1); }
  .pill-blue:hover::before { opacity: 1; }

  /* ═══════════════════════════════════════════
     FORM
  ═══════════════════════════════════════════ */
  .form-section {
    min-height: 100vh;
    padding: 6rem 2rem 6rem;
    display: flex; align-items: center; justify-content: center;
    position: relative; z-index: 1;
  }
  .form-section::before {
    content: '';
    position: absolute; bottom: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(212,32,48,0.08), transparent 65%);
    pointer-events: none;
  }

  .form-wrapper {
    max-width: 940px; width: 100%;
    display: grid; grid-template-columns: 1fr 1fr;
    background: var(--surface);
    border: 1px solid var(--border);
    border-radius: 20px; overflow: hidden;
  }

  .form-left {
    padding: 3.5rem 3rem;
    display: flex; flex-direction: column; justify-content: center;
    background: linear-gradient(135deg, rgba(212,32,48,0.04), rgba(30,108,245,0.04));
    border-right: 1px solid var(--border);
  }
  .form-left h2 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 800;
    line-height: 1.15; margin-bottom: 1.2rem; letter-spacing: -0.5px;
  }
  .form-left p {
    color: var(--muted); font-size: 0.92rem; line-height: 1.7; margin-bottom: 2rem;
  }
  .form-perks {
    list-style: none;
    display: flex; flex-direction: column; gap: 0.8rem;
  }
  .form-perks li {
    display: flex; align-items: center; gap: 0.8rem;
    font-size: 0.85rem; color: var(--light);
  }
  .form-perks li::before {
    content: ''; width: 6px; height: 6px;
    background: var(--red); border-radius: 50%; flex-shrink: 0;
  }

  .form-right {
    padding: 3rem 2.5rem;
    display: flex; flex-direction: column; justify-content: center;
  }
  .form-right input, .form-right select {
    width: 100%; padding: 0.9rem 1rem;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border); border-radius: 8px;
    color: var(--white); font-family: 'Inter', sans-serif;
    font-size: 0.88rem; margin-bottom: 0.7rem;
    transition: border-color 0.3s; outline: none;
  }
  .form-right input::placeholder { color: var(--muted); }
  .form-right input:focus, .form-right select:focus { border-color: var(--red); }
  .form-right select option { background: var(--surface); color: var(--white); }
  .form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0.7rem; }

  .form-submit {
    width: 100%; padding: 1rem; margin-top: 0.5rem;
    background: var(--red); color: #fff;
    font-family: 'Inter', sans-serif;
    font-weight: 700; font-size: 0.9rem;
    border: none; border-radius: 8px; cursor: pointer;
    transition: all 0.35s;
    position: relative; overflow: hidden;
  }
  .form-submit::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, transparent 40%, rgba(255,255,255,0.12) 50%, transparent 60%);
    transform: translateX(-100%); transition: transform 0.6s;
  }
  .form-submit:hover::before { transform: translateX(100%); }
  .form-submit:hover { box-shadow: 0 0 40px rgba(212,32,48,0.35); }

  .form-legal {
    font-size: 0.66rem; color: var(--muted);
    margin-top: 1rem; line-height: 1.5; text-align: center;
  }

  /* ─── FOOTER ─── */
  footer {
    position: relative; z-index: 1;
    padding: 2rem; text-align: center;
    border-top: 1px solid var(--border);
  }
  footer p { font-size: 0.72rem; color: var(--muted); letter-spacing: 2px; }
  footer p b { color: var(--red); }

  /* ─── SCROLL PROGRESS INDICATOR ─── */
  .scroll-track {
    position: fixed;
    right: 1.2rem; top: 50%; transform: translateY(-50%);
    z-index: 99;
    display: flex; flex-direction: column; align-items: center; gap: 0;
  }
  .scroll-track-line {
    width: 2px; height: 180px;
    background: var(--border);
    border-radius: 2px;
    position: relative;
    overflow: hidden;
  }
  .scroll-track-fill {
    position: absolute; top: 0; left: 0;
    width: 100%; height: 0%;
    background: linear-gradient(to bottom, var(--red), var(--blue));
    border-radius: 2px;
    transition: height 0.15s ease-out;
  }
  .scroll-dots {
    position: absolute; top: 0; left: 50%; transform: translateX(-50%);
    width: 100%; height: 100%;
    display: flex; flex-direction: column; justify-content: space-between;
    align-items: center;
    padding: 0;
  }
  .scroll-dot {
    width: 8px; height: 8px;
    background: var(--border);
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    z-index: 1;
  }
  .scroll-dot.active {
    background: var(--red);
    box-shadow: 0 0 10px rgba(212,32,48,0.4);
  }
  .scroll-dot-label {
    position: absolute;
    right: 18px; top: 50%; transform: translateY(-50%);
    font-size: 0.6rem; font-weight: 600;
    letter-spacing: 1px; text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s;
    pointer-events: none;
  }
  .scroll-dot:hover .scroll-dot-label { opacity: 1; }

  @media (max-width: 768px) {
    .scroll-track { display: none; }
  }

  /* ─── RESPONSIVE ─── */
  @media (max-width: 1100px) {
    .gains-grid { grid-template-columns: repeat(2, 1fr); }
  }
  @media (max-width: 900px) {
    .teaser-inner { grid-template-columns: 1fr; gap: 3rem; }
    .formation-wrap { order: -1; }
    .formation { width: 280px; height: 280px; }
    .f-node { width: 40px; height: 40px; }
    .form-wrapper { grid-template-columns: 1fr; }
    .form-left { border-right: none; border-bottom: 1px solid var(--border); padding: 2.5rem 2rem; }
    /* Disable scroll-snap on smaller screens for better mobile UX */
    html { scroll-snap-type: none; }
  }
  @media (max-width: 600px) {
    .gains-grid { grid-template-columns: 1fr; }
    .hero h1 { letter-spacing: -1px; }
    nav { padding: 0 1.5rem; }
    .form-left, .form-right { padding: 2rem 1.5rem; }
    .climax-pills { flex-direction: column; align-items: center; gap: 1rem; }
    
  }

  .footer-legal {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  margin-top: 0.5rem;
  font-weight: 300;
  }
