*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --bg:          #07070F;
      --bg2:         #0D0D1A;
      --surface:     rgba(255,255,255,0.04);
      --border:      rgba(255,255,255,0.08);
      --purple:      #7C3AED;
      --purple-lt:   #A78BFA;
      --green:       #10B981;
      --green-lt:    #34D399;
      --text:        #F4F4F8;
      --muted:       #8B8BA7;
      --radius:      16px;
      --radius-sm:   10px;
    }

    html { scroll-behavior: smooth; }

    body {
      font-family: 'Inter', sans-serif;
      background: var(--bg);
      color: var(--text);
      line-height: 1.6;
      overflow-x: hidden;
    }

    /* ── SCROLLBAR ── */
    ::-webkit-scrollbar { width: 6px; }
    ::-webkit-scrollbar-track { background: var(--bg); }
    ::-webkit-scrollbar-thumb { background: var(--purple); border-radius: 99px; }

    /* ── NOISE OVERLAY ── */
    body::before {
      content: '';
      position: fixed; inset: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
      pointer-events: none; z-index: 999; opacity: 0.4;
    }

    /* ── UTILITIES ── */
    .container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
    .tag {
      display: inline-flex; align-items: center; gap: 6px;
      font-size: 11px; font-weight: 600; letter-spacing: .08em; text-transform: uppercase;
      background: rgba(124,58,237,.15); color: var(--purple-lt);
      border: 1px solid rgba(124,58,237,.3); border-radius: 99px;
      padding: 5px 14px;
    }
    .tag-green { background: rgba(16,185,129,.12); color: var(--green-lt); border-color: rgba(16,185,129,.25); }

    h1,h2,h3,h4 { font-family: 'Plus Jakarta Sans', sans-serif; line-height: 1.15; }

    .gradient-text {
      background: linear-gradient(135deg, #fff 0%, var(--purple-lt) 60%, var(--green-lt) 100%);
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
    }

    .btn {
      display: inline-flex; align-items: center; gap: 8px;
      font-size: 14px; font-weight: 600; letter-spacing: .01em;
      padding: 13px 26px; border-radius: 99px; border: none; cursor: pointer;
      transition: all .25s ease; text-decoration: none; white-space: nowrap;
    }
    .btn-primary {
      background: linear-gradient(135deg, var(--purple), #5B21B6);
      color: #fff;
      box-shadow: 0 0 0 1px rgba(124,58,237,.4), 0 8px 24px rgba(124,58,237,.3);
    }
    .btn-primary:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 0 1px rgba(124,58,237,.6), 0 12px 32px rgba(124,58,237,.45);
    }
    .btn-green {
      background: linear-gradient(135deg, var(--green), #059669);
      color: #fff;
      box-shadow: 0 0 0 1px rgba(16,185,129,.4), 0 8px 24px rgba(16,185,129,.25);
    }
    .btn-green:hover {
      transform: translateY(-2px);
      box-shadow: 0 0 0 1px rgba(16,185,129,.6), 0 12px 32px rgba(16,185,129,.4);
    }
    .btn-ghost {
      background: var(--surface); color: var(--text);
      border: 1px solid var(--border);
      backdrop-filter: blur(12px);
    }
    .btn-ghost:hover { background: rgba(255,255,255,.08); transform: translateY(-1px); }

    /* ────────────────────────────── NAV ── */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      transition: background .3s, border-color .3s;
    }
    nav.scrolled {
      background: rgba(7,7,15,.85);
      backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--border);
    }
    .nav-inner {
      display: flex; align-items: center; justify-content: space-between;
      height: 68px;
    }
    .nav-logo {
      font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 22px; font-weight: 800;
      background: linear-gradient(135deg, #fff 30%, var(--purple-lt));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
      text-decoration: none;
    }
    .nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
    .nav-links a {
      font-size: 14px; font-weight: 500; color: var(--muted); text-decoration: none;
      transition: color .2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-links a.active { color: var(--text); }
    .nav-actions { display: flex; align-items: center; gap: 10px; }
    .nav-actions .btn { padding: 9px 20px; font-size: 13px; }

    /* ────────────────────────────── HERO ── */
    .hero {
      position: relative;
      min-height: 100svh;
      overflow: hidden;
    }

    .hero-content {
      position: relative; z-index: 2;
      display: grid; grid-template-columns: 1fr 1fr;
      align-items: center; gap: 60px;
    }
    .hero-eyebrow { margin-bottom: 20px; }
    .hero-title {
      font-size: clamp(42px, 5.5vw, 72px);
      font-weight: 900;
      letter-spacing: -.03em;
      line-height: 1.05;
      margin-bottom: 22px;
    }
    .hero-sub {
      font-size: 17px; color: var(--muted); max-width: 460px;
      line-height: 1.7; margin-bottom: 36px;
    }
    .hero-actions { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }

    .hero-visual {
      position: relative; display: flex; justify-content: center; align-items: center;
    }

    @keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-18px)} }

    /* ────────────────────────────── PARTNERS ── */
    .partners {
      padding: 64px 0;
      background: #fff;
      border-top: 1px solid rgba(0, 0, 0, 0.06);
      border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    }
    .partners-label {
      text-align: center;
      font-size: 12px;
      font-weight: 600;
      color: #6b7280;
      text-transform: uppercase;
      letter-spacing: 0.1em;
      margin-bottom: 40px;
    }
    .partners-logos {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      justify-content: center;
      gap: clamp(32px, 5vw, 72px);
    }
    /* ────────────────────────────── STEPS ── */
    .steps { padding: 120px 0; }
    .section-header { text-align: center; margin-bottom: 72px; }
    .section-header h2 { font-size: clamp(32px, 4vw, 52px); font-weight: 800; margin: 12px 0; }
    .section-header p  { font-size: 16px; color: var(--muted); max-width: 520px; margin: 0 auto; }

    .steps-grid {
      display: grid; grid-template-columns: repeat(4,1fr);
      gap: 0; position: relative;
    }
    .steps-grid::before {
      content: '';
      position: absolute; top: 52px; left: 12.5%; right: 12.5%; height: 1px;
      background: linear-gradient(90deg, transparent, var(--purple) 20%, var(--green) 80%, transparent);
    }
    .step-item { text-align: center; padding: 0 24px; position: relative; }
    .step-num {
      width: 52px; height: 52px; border-radius: 50%;
      background: linear-gradient(135deg, var(--purple), #5B21B6);
      color: #fff; font-family: 'Plus Jakarta Sans', sans-serif;
      font-size: 18px; font-weight: 800;
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 24px; position: relative; z-index: 1;
      box-shadow: 0 0 0 6px rgba(124,58,237,.15), 0 8px 20px rgba(124,58,237,.35);
    }
    .step-icon {
      width: 56px; height: 56px; border-radius: 16px;
      background: var(--surface); border: 1px solid var(--border);
      display: flex; align-items: center; justify-content: center;
      margin: 0 auto 20px; font-size: 24px;
      transition: all .3s;
    }
    .step-item:hover .step-icon {
      background: rgba(124,58,237,.15); border-color: rgba(124,58,237,.4);
      transform: scale(1.1);
    }
    .step-title { font-family: 'Plus Jakarta Sans',sans-serif; font-size: 16px; font-weight: 700; margin-bottom: 8px; }
    .step-desc  { font-size: 14px; color: var(--muted); line-height: 1.6; }

    /* ────────────────────────────── MATCHES ── */
    .matches { padding: 0 0 120px; }
    .matches-header {
      display: flex; align-items: flex-end; justify-content: space-between;
      margin-bottom: 48px;
    }
    .matches-header h2 { font-size: clamp(28px, 3.5vw, 44px); font-weight: 800; max-width: 480px; }
    .matches-header p  { font-size: 14px; color: var(--muted); max-width: 240px; text-align: right; }
    .matches-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }

    .match-card {
      border-radius: var(--radius); overflow: hidden;
      background: var(--surface); border: 1px solid var(--border);
      padding: 20px; transition: all .3s;
    }
    .match-card:hover {
      border-color: rgba(124,58,237,.4); transform: translateY(-6px);
      box-shadow: 0 24px 48px rgba(0,0,0,.5), 0 0 0 1px rgba(124,58,237,.15);
    }
    .match-card-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 12px; }
    .match-badges { display: flex; gap: 6px; flex-wrap: wrap; }
    .match-badge {
      font-size: 9px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em;
      padding: 3px 8px; border-radius: 99px;
    }
    .mb-sport { background: rgba(124,58,237,.2); color: var(--purple-lt); }
    .mb-hot   { background: rgba(239,68,68,.2); color: #FCA5A5; }
      .mb-new   { background: rgba(16,185,129,.2); color: var(--green-lt); }
    .mb-last  { background: rgba(245,158,11,.2); color: #FCD34D; }
    .mb-full  { background: rgba(239,68,68,.15); color: #FCA5A5; }
    .match-rating { display:flex; align-items:center; gap:4px; font-size:12px; font-weight:600; color:#FCD34D; }

    .match-name { font-family:'Plus Jakarta Sans',sans-serif; font-size:17px; font-weight:700; margin-bottom:6px; }
    .match-meta { font-size:12px; color:var(--muted); display:flex; flex-direction:column; gap:3px; }
    .match-meta span { display:flex; align-items:center; gap:5px; }

    .match-footer {
      margin-top: 16px; padding-top: 16px; border-top: 1px solid var(--border);
      display: flex; justify-content: space-between; align-items: center;
    }
    .match-price { font-family:'Plus Jakarta Sans',sans-serif; font-size:20px; font-weight:800; }
    .match-price small { font-size:11px; color:var(--muted); font-family:'Inter',sans-serif; font-weight:400; }
    .match-players { display:flex; align-items:center; gap:6px; font-size:12px; color:var(--muted); }
    .match-players-avs { display:flex; }
    .match-av {
      width:22px; height:22px; border-radius:50%; border:2px solid var(--bg2);
      margin-left:-6px; font-size:9px; font-weight:700;
      display:flex; align-items:center; justify-content:center; background:var(--purple);
    }
    .match-av:first-child { margin-left:0; }

    /* ────────────────────────────── PROBLEM ── */
    .problem { padding: 0 0 120px; }
    .problem-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 60px; align-items: center;
    }

    .problem-tabs { display: flex; gap: 8px; margin-bottom: 32px; }
    .ptab {
      padding: 8px 18px; border-radius: 99px; font-size: 13px; font-weight: 600;
      cursor: pointer; transition: all .25s; border: 1px solid transparent;
    }
    .ptab.active { background: var(--surface); border-color: var(--border); color: var(--text); }
    .ptab:not(.active) { color: var(--muted); }
    .ptab:not(.active):hover { color: var(--text); }

    .problem-title { font-size: clamp(28px, 3vw, 40px); font-weight: 800; margin-bottom: 20px; line-height:1.15; }
    .problem-list { list-style: none; display: flex; flex-direction: column; gap: 14px; }
    .problem-list li {
      display: flex; align-items: flex-start; gap: 12px;
      font-size: 15px; color: var(--muted);
    }
    .pl-icon {
      width: 22px; height: 22px; flex-shrink: 0;
      border-radius: 50%; display: flex; align-items: center; justify-content: center;
      font-size: 11px; margin-top: 1px;
    }
    .pl-icon.bad  { background: rgba(239,68,68,.15); color: #FCA5A5; }
    .pl-icon.good { background: rgba(16,185,129,.15); color: var(--green-lt); }

    .problem-visual {
      position: relative; height: 480px;
    }
    .pv-img {
      width: 100%; height: 100%; border-radius: var(--radius);
      object-fit: cover;
      background: linear-gradient(135deg, #1a0533 0%, #0d1f3c 50%, #0a2b1e 100%);
    }
    /* ────────────────────────────── PATHS ── */
    .paths { padding: 0 0 120px; }
    .paths h2 { font-size: clamp(30px, 3.5vw, 46px); font-weight: 800; margin-bottom: 8px; }
    .paths-subtext { font-size: 15px; color: var(--muted); margin-bottom: 48px; }
    .paths-header { display:flex; justify-content:space-between; align-items:flex-start; margin-bottom:48px; }
    .paths-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }

    .path-card {
      border-radius: 20px; overflow: hidden; position: relative;
      height: 320px; cursor: pointer;
      transition: transform .4s cubic-bezier(.25,.8,.25,1), box-shadow .4s;
    }
    .path-card:hover { transform: scale(1.02); box-shadow: 0 32px 60px rgba(0,0,0,.6); }
    .path-bg {
      position: absolute; inset: 0;
      background-size: cover; background-position: center;
    }
    .path-bg-promo  { background: linear-gradient(135deg, #1a0533 0%, #2d1060 50%, #1a1a3e 100%); }
    .path-bg-last   { background: linear-gradient(135deg, #0a2b1e 0%, #065f46 50%, #0d2b1e 100%); }
    .path-overlay {
      position: absolute; inset: 0;
      background: linear-gradient(0deg, rgba(0,0,0,.8) 0%, rgba(0,0,0,.2) 60%, transparent 100%);
    }
    .path-content {
      position: absolute; bottom: 0; left: 0; right: 0;
      padding: 28px; display: flex; justify-content: space-between; align-items: flex-end;
    }
    .path-label { font-size:11px; font-weight:600; color:rgba(255,255,255,.5); text-transform:uppercase; letter-spacing:.08em; margin-bottom:6px; }
    .path-title { font-family:'Plus Jakarta Sans',sans-serif; font-size:28px; font-weight:900; color:#fff; }
    .path-icon-wrap {
      width:48px; height:48px; border-radius:50%;
      background: rgba(255,255,255,.15); backdrop-filter:blur(12px);
      border: 1px solid rgba(255,255,255,.2);
      display:flex; align-items:center; justify-content:center; font-size:20px;
      transition: background .3s;
    }
    .path-card:hover .path-icon-wrap { background: rgba(255,255,255,.25); }

    /* path decorative elements */
    .path-deco {
      position: absolute; top: 24px; left: 24px;
      display: flex; gap: 8px;
    }
    .path-deco-dot {
      width: 32px; height: 32px; border-radius: 50%;
      display: flex; align-items: center; justify-content: center; font-size: 14px;
    }
    .path-deco-dot.purple { background: rgba(124,58,237,.3); }
    .path-deco-dot.green  { background: rgba(16,185,129,.3); }

    /* ────────────────────────────── TESTIMONIALS ── */
    .testimonials { padding: 0 0 120px; }
    .testimonials-header { display:flex; justify-content:space-between; align-items:flex-end; margin-bottom:48px; }
    .testimonials-header h2 { font-size:clamp(28px,3.5vw,44px); font-weight:800; }
    .testimonials-header p  { font-size:14px; color:var(--muted); text-align:right; max-width:220px; }

    .testi-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 28px;
      transition: all .3s; position: relative; overflow: hidden;
    }
    .testi-card::before {
      content: '"'; position: absolute; top: 14px; right: 20px;
      font-size: 80px; line-height:1; color: rgba(124,58,237,.15);
      font-family: Georgia, serif; pointer-events: none;
    }
    .testi-card:hover {
      border-color: rgba(124,58,237,.3); transform: translateY(-4px);
      box-shadow: 0 20px 40px rgba(0,0,0,.4);
    }
    .testi-stars { display:flex; gap:3px; margin-bottom:16px; font-size:14px; }
    .testi-text  { font-size:15px; line-height:1.7; color: rgba(255,255,255,.8); margin-bottom:20px; font-style:italic; }
    .testi-author { display:flex; align-items:center; gap:12px; }
    .testi-avatar {
      width:40px; height:40px; border-radius:50%;
      display:flex; align-items:center; justify-content:center;
      font-family:'Plus Jakarta Sans',sans-serif; font-size:16px; font-weight:800; color:#fff;
      flex-shrink:0;
    }
    .testi-name  { font-weight:600; font-size:14px; }
    .testi-role  { font-size:12px; color:var(--muted); }

    /* ────────────────────────────── CTA DOWNLOAD ── */
    .cta-download {
      margin: 0 0 120px;
      border-radius: 24px; overflow: hidden; position: relative;
      padding: 80px 64px;
      background: linear-gradient(135deg, #1a0533 0%, #0d1259 50%, #0a2b1e 100%);
      border: 1px solid rgba(124,58,237,.2);
    }
    .cta-download::before {
      content: '';
      position: absolute; inset: 0;
      background: radial-gradient(ellipse 70% 80% at 20% 50%, rgba(124,58,237,.2) 0%, transparent 65%),
                  radial-gradient(ellipse 50% 60% at 80% 50%, rgba(16,185,129,.12) 0%, transparent 60%);
      pointer-events: none;
    }
    .cta-inner {
      position: relative; z-index: 1;
      display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 48px;
    }
    .cta-eyebrow { margin-bottom: 16px; }
    .cta-title { font-size: clamp(28px,3.5vw,44px); font-weight:900; margin-bottom:14px; }
    .cta-sub { font-size: 16px; color: rgba(255,255,255,.6); max-width: 480px; margin-bottom: 36px; line-height: 1.65; }

    /* ────────────────────────────── FAQ ── */
    .faq { padding: 0 0 120px; }
    .faq-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
    .faq-cta-card {
      background: var(--surface); border: 1px solid var(--border);
      border-radius: var(--radius); padding: 24px;
    }
    .faq-cta-label { font-size:12px; color:var(--muted); margin-bottom:8px; }
    .faq-cta-title { font-family:'Plus Jakarta Sans',sans-serif; font-size:18px; font-weight:700; margin-bottom:16px; }

    .faq-list { display: flex; flex-direction: column; gap: 4px; }
    .faq-item {
      border: 1px solid var(--border); border-radius: var(--radius-sm);
      overflow: hidden; transition: border-color .3s;
    }
    .faq-item.open { border-color: rgba(124,58,237,.3); }
    .faq-q {
      display: flex; align-items: center; justify-content: space-between;
      padding: 18px 20px; cursor: pointer; gap: 12px;
      font-size: 14px; font-weight: 600; transition: background .2s;
    }
    .faq-q:hover { background: rgba(255,255,255,.03); }
    .faq-q-arrow {
      width: 22px; height: 22px; border-radius: 50%;
      background: var(--surface); border: 1px solid var(--border);
      display:flex; align-items:center; justify-content:center;
      flex-shrink:0; font-size:11px; transition: transform .3s, background .3s;
    }
    .faq-item.open .faq-q-arrow { transform: rotate(45deg); background: rgba(124,58,237,.2); }
    .faq-a {
      max-height: 0; overflow: hidden; transition: max-height .4s ease, padding .4s;
      font-size: 14px; color: var(--muted); line-height: 1.7; padding: 0 20px;
    }
    .faq-item.open .faq-a { max-height: 200px; padding: 0 20px 18px; }

    /* ────────────────────────────── FOOTER ── */
    footer {
      border-top: 1px solid var(--border); padding: 72px 0 40px;
    }
    .footer-top {
      display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
      gap: 40px; margin-bottom: 60px;
    }
    .footer-brand p { font-size:14px; color:var(--muted); line-height:1.7; margin-top:12px; max-width:240px; }
    .footer-col h4 { font-family:'Plus Jakarta Sans',sans-serif; font-size:13px; font-weight:700; margin-bottom:16px; }
    .footer-col ul { list-style:none; display:flex; flex-direction:column; gap:10px; }
    .footer-col ul a { font-size:13px; color:var(--muted); text-decoration:none; transition:color .2s; }
    .footer-col ul a:hover { color:var(--text); }
    .footer-bottom {
      display:flex; justify-content:space-between; align-items:center;
      padding-top:32px; border-top:1px solid var(--border);
      font-size:13px; color:var(--muted);
    }
    .footer-bottom a { color:var(--muted); text-decoration:none; }
    .footer-bottom a:hover { color:var(--text); }

    /* ────────────────────────────── ANIMATIONS ── */
    .reveal {
      opacity: 0; transform: translateY(28px);
      transition: opacity .65s ease, transform .65s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    .reveal-delay-1 { transition-delay: .1s; }
    .reveal-delay-2 { transition-delay: .2s; }
    .reveal-delay-3 { transition-delay: .3s; }
    .reveal-delay-4 { transition-delay: .4s; }

    /* ────────────────────────────── RESPONSIVE ── */
    @media (max-width: 1024px) {
      .hero-content    { grid-template-columns: 1fr; text-align: center; }
      .hero-sub        { max-width: 100%; }
      .hero-actions    { justify-content: center; }
      .hero-visual     { display:none; }
      .steps-grid      { grid-template-columns: repeat(2,1fr); gap: 40px; }
      .steps-grid::before { display:none; }
      .matches-grid    { grid-template-columns: 1fr 1fr; }
      .problem-inner   { grid-template-columns: 1fr; }
      .problem-visual  { height:280px; }
      .cta-inner       { grid-template-columns: 1fr; }
      .faq-inner       { grid-template-columns: 1fr; }
      .footer-top      { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 640px) {
      .steps-grid    { grid-template-columns: 1fr; }
      .matches-grid  { grid-template-columns: 1fr; }
      .paths-grid    { grid-template-columns: 1fr; }
      .footer-top    { grid-template-columns: 1fr; }
      .matches-header,.testimonials-header,.paths-header { flex-direction:column; gap:8px; }
      .matches-header p,.testimonials-header p { text-align:left; }
      .cta-download  { padding: 48px 24px; }
      .nav-links     { display:none; }
      .nav-actions   { display:none; }
      .menu-toggle   { display:inline-flex; }
    }

/* ── Overrides & extensions (contenu accueil) ── */

/*
 * Cause réelle de la « bande noire » :
 * - min-height: 100vh + align-items: center centre le .container au milieu de l’écran
 * - (WP) padding-top cumulé sur main + hero aggravait encore l’écart
 * → contenu ancré en haut, sous la navbar (~68px)
 */
body.home .hero {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  justify-content: flex-start;
  min-height: 100svh;
  padding-top: 72px;
  padding-bottom: 80px;
  color: var(--text);
}

body.home .hero:not(.hero--video) {
  background: var(--bg);
}

body.home .hero > .container {
  position: relative;
  z-index: 2;
  width: 100%;
  flex: 0 0 auto;
}

/* Hero vidéo */
body.home .hero.hero--video {
  isolation: isolate;
  background: #0a0736;
}

body.home .hero.hero--video .hero-title,
body.home .hero.hero--video .hero-sub {
  text-shadow: 0 2px 24px rgba(10, 7, 54, 0.55);
}

.hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  pointer-events: none;
}

.hero-scrim {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(10, 7, 54, 0.45) 0%, rgba(10, 7, 54, 0.78) 100%),
    radial-gradient(1100px 520px at 18% 32%, rgba(110, 0, 223, 0.38), transparent 72%),
    radial-gradient(900px 420px at 82% 70%, rgba(49, 244, 104, 0.12), transparent 68%);
}

@media (prefers-reduced-motion: reduce) {
  .hero-video {
    display: none;
  }

  body.home .hero.hero--video {
    background: #0a0736 url("../assets/hero-futsal-poster.jpg") center / cover no-repeat;
  }
}

.btn-primary:hover,
.btn-green:hover,
.btn-ghost:hover,
.match-card:hover,
.path-card:hover,
.store-btn:hover {
  transform: none;
}

.nav-logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav-inner { gap: 16px; }

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--text);
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-shrink: 0;
}

.menu-toggle__bar {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 2px;
  background: currentColor;
}

.menu-toggle__bar + .menu-toggle__bar { margin-top: 4px; }

.mobile-drawer {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: none;
}

.mobile-drawer.is-open { display: block; }

.mobile-drawer__backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
}

.mobile-drawer__panel {
  position: absolute;
  top: 0;
  right: 0;
  width: min(86vw, 360px);
  height: 100%;
  background: rgba(13, 13, 26, 0.96);
  border-left: 1px solid var(--border);
  box-shadow: -16px 0 40px rgba(0, 0, 0, 0.45);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transform: translateX(100%);
  transition: transform 0.25s ease;
  backdrop-filter: blur(20px);
}

.mobile-drawer.is-open .mobile-drawer__panel { transform: translateX(0); }

.mobile-drawer__close {
  align-self: flex-end;
  width: 38px;
  height: 38px;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface);
  color: var(--text);
  font-size: 24px;
  line-height: 1;
  cursor: pointer;
}

.mobile-nav { display: grid; gap: 10px; }

.mobile-nav a {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
  background: rgba(255, 255, 255, 0.03);
}

.mobile-drawer__cta {
  margin-top: auto;
  display: grid;
  gap: 10px;
}

.partner-img {
  height: clamp(48px, 6vw, 72px);
  width: auto;
  max-width: min(220px, 28vw);
  object-fit: contain;
  opacity: 0.85;
  transition: opacity 0.25s ease;
}

.partner-img:hover {
  opacity: 1;
}

.hero-mockup-wrap {
  position: relative;
  width: 90%;
  animation: float 6s ease-in-out infinite;
}

.hero-mockup-wrap::before {
  content: "";
  position: absolute;
  inset: -40px;
  background: radial-gradient(circle, rgba(124, 58, 237, 0.25) 0%, transparent 70%);
  border-radius: 50%;
  z-index: 0;
}

.hero-mockup-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  display: block;
  filter: drop-shadow(0 40px 80px rgba(0, 0, 0, 0.55));
}

a.match-card {
  text-decoration: none;
  color: inherit;
  display: block;
}

.match-card__join {
  margin-left: auto;
  padding: 9px 18px;
  font-size: 12px;
}

.match-card__urgency {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin: 12px 0 0;
  font-size: 11px;
}

.urgency {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 4px 8px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border);
  color: var(--muted);
}

.urgency--scarcity { color: #fcd34d; border-color: rgba(245, 158, 11, 0.25); }
.urgency--critical { color: #fca5a5; border-color: rgba(239, 68, 68, 0.25); }

.match-card__progress {
  height: 4px;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.06);
  margin-top: 12px;
  overflow: hidden;
}

.match-card__progress-bar {
  height: 100%;
  width: var(--pct, 50%);
  border-radius: inherit;
  background: linear-gradient(90deg, var(--purple), var(--green));
}

.match-card__progress-bar--urgent {
  background: linear-gradient(90deg, #f59e0b, #ef4444);
}

.match-footer {
  flex-wrap: wrap;
  gap: 12px;
}

.pv-img {
  width: 100%;
  height: 100%;
  border-radius: var(--radius);
  object-fit: cover;
  border: 1px solid var(--border);
}

.path-card--flip {
  perspective: 1400px;
  padding: 0;
  overflow: visible;
}

.path-card__inner {
  position: relative;
  width: 100%;
  height: 320px;
  transform-style: preserve-3d;
  transition: transform 0.75s cubic-bezier(0.4, 0, 0.2, 1);
  border-radius: 20px;
}

.path-card--flip.is-flipped .path-card__inner,
.path-card--flip:hover .path-card__inner {
  transform: rotateY(180deg);
}

.path-card__face {
  position: absolute;
  inset: 0;
  border-radius: inherit;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  overflow: hidden;
}

.path-card__face--back {
  transform: rotateY(180deg);
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.path-card__face--back ul {
  list-style: disc;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 14px;
  line-height: 1.65;
  display: grid;
  gap: 8px;
}

.path-card__face--back h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.path-card--flip:hover {
  transform: none;
  box-shadow: none;
}

.path-card__hint {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 4;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
}

.testimonials-carousel {
  position: relative;
}

.testimonials-carousel__chrome {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
}

.testimonials-carousel__viewport { overflow: hidden; }

.testimonials-track {
  display: flex;
  transition: transform 0.45s ease;
}

.testimonials-slide {
  flex: 0 0 100%;
  min-width: 0;
  padding: 4px;
}

.carousel-nav {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--surface);
  color: var(--text);
  font-size: 22px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.carousel-nav:hover { border-color: rgba(124, 58, 237, 0.4); }

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 20px;
}

.carousel-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
}

.path-card--flip {
  height: 320px;
}

.carousel-dots .carousel-dot.is-active,
.carousel-dots button[aria-current="true"] {
  background: var(--purple-lt);
  transform: scale(1.2);
}

.store-badges-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.store-badges-row .store-btn {
  padding: 0;
  background: transparent;
  border: none;
  box-shadow: none;
}

.store-badges-row .store-btn:hover {
  background: transparent;
  border: none;
}

.footer-top {
  grid-template-columns: 2fr 1fr 1fr 1fr;
}

.store-badges-row img {
  height: 52px;
  width: auto;
  display: block;
}

.cta-phone-preview img {
  width: 160px;
  height: auto;
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.5));
}

.footer-social-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-top: 16px;
}

.footer-social-list a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--muted);
  text-decoration: none;
}

.footer-social-list a:hover { color: var(--text); }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.problem-lead {
  font-size: 15px;
  color: var(--muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.faq-item.open .faq-a {
  max-height: 360px;
}

.carousel-dots .carousel-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.2);
  cursor: pointer;
  padding: 0;
}