  * { box-sizing: border-box; margin: 0; padding: 0; }
  html { scroll-behavior: smooth; }
  body {
    background: var(--bg); color: var(--paper);
    font-family: 'Space Grotesk', sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
  }
  ::selection { background: var(--y); color: var(--ink); }
  ::-webkit-scrollbar { width: 5px; }
  ::-webkit-scrollbar-track { background: var(--bg); }
  ::-webkit-scrollbar-thumb { background: rgba(var(--y-rgb),.25); border-radius: 3px; }

  /* ── Thème sombre Kinetica (défaut) ─────────────────── */
  :root {
    --y: #FFCC00;             /* jaune Marsupilami */
    --y-rgb: 255,204,0;
    --ink: #09090a;           /* texte SUR jaune — sombre dans les 2 modes */
    --paper: #F2F0E6;         /* texte principal */
    --paper-rgb: 242,240,230;
    --sec: rgba(var(--paper-rgb),.6);
    --ter: rgba(var(--paper-rgb),.35);
    --stroke: rgba(var(--y-rgb),.1);
    --bg: #09090a;            /* fond de page */
    --bg-rgb: 9,9,10;
    --surface: #111113;       /* cartes */
    --surface-2: #1a1a1e;     /* inputs, hover */
    --tint-deep: #191400;     /* dégradés cartes "pro" */
    --tint-stats: #0f0d02;    /* dégradé bandeau stats */
    --tint-warm: #17150d;     /* fond footer/CTA chaud */
  }

  /* ── Mode clair crème (html.light, persisté en localStorage) ── */
  html.light {
    --y: #C99800;             /* doré profond (contraste sur crème) */
    --y-rgb: 201,152,0;
    --paper: #1C1B17;
    --paper-rgb: 28,27,23;
    --stroke: rgba(var(--y-rgb),.22);
    --bg: #F5F3EC;
    --bg-rgb: 245,243,236;
    --surface: #FBFAF5;
    --surface-2: #FFFFFF;
    --tint-deep: #F3ECD0;
    --tint-stats: #F1ECDB;
    --tint-warm: #EFE9D5;
  }

  /* Bouton de bascule sombre/clair (injecté par ouba.js dans la nav) */
  .theme-toggle {
    width: 34px; height: 34px; border-radius: 50%;
    border: 1px solid rgba(var(--y-rgb),.3); background: rgba(var(--y-rgb),.06);
    color: var(--y); font-size: 15px; line-height: 1; cursor: pointer;
    display: inline-flex; align-items: center; justify-content: center;
    transition: transform .2s, box-shadow .2s; margin-left: 12px; flex-shrink: 0;
  }
  .theme-toggle:hover { transform: scale(1.08); box-shadow: 0 0 14px rgba(var(--y-rgb),.35); }

  .boog { font-family: 'Boogaloo', cursive; font-weight: 400; }
  .mono { font-family: 'Space Mono', monospace; }

  /* ── NAV ─────────────────────────────────────────────── */
  nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 100;
    display: flex; align-items: center; justify-content: space-between;
    padding: 0 48px; height: 60px;
    background: rgba(var(--bg-rgb),.75); backdrop-filter: blur(20px) saturate(1.4);
    border-bottom: 1px solid transparent;
    transition: border-color .3s;
  }
  nav.scrolled { border-bottom-color: var(--stroke); }
  .nav-logo {
    font-size: 26px; letter-spacing: .01em; text-decoration: none; line-height: 1;
    color: transparent;
    background-image: url('assets/logo-ouba-texture.svg');
    background-size: 100% 100%;
    -webkit-background-clip: text; background-clip: text;
    padding: 1px 3px 4px;
    filter: drop-shadow(0 0 6px rgba(var(--y-rgb),.35));
  }
  .nav-links { display: flex; gap: 32px; align-items: center; }
  .nav-links a { color: var(--sec); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; }
  .nav-links a:hover { color: var(--paper); }
  .nav-cta {
    background: var(--y); color: var(--ink) !important; font-weight: 700 !important;
    padding: 8px 18px; border-radius: 99px; font-size: 13px;
    transition: transform .15s, box-shadow .15s !important;
  }
  .nav-cta:hover { transform: scale(1.04); box-shadow: 0 0 20px rgba(var(--y-rgb),.4); }

  /* ── LANG SWITCHER ───────────────────────────────────── */
  .lang {
    display: inline-flex; align-items: center; gap: 2px;
    border: 1px solid rgba(var(--y-rgb),.2); border-radius: 99px; padding: 3px;
    background: rgba(var(--y-rgb),.04);
  }
  .lang button {
    font-family: 'Space Mono', monospace; font-size: 11px; font-weight: 700;
    letter-spacing: .06em; text-transform: uppercase;
    color: var(--ter); background: transparent; border: none; cursor: pointer;
    padding: 4px 8px; border-radius: 99px; line-height: 1;
    transition: color .2s, background .2s; min-width: 30px; min-height: 26px;
  }
  .lang button:hover { color: var(--paper); }
  .lang button.on { color: var(--ink); background: var(--y); }
  .lang.mobile { display: none; }

  /* ── HERO ────────────────────────────────────────────── */
  .hero {
    height: 175vh; position: relative;
  }
  .hero-sticky {
    position: sticky; top: 0; height: 100vh;
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    overflow: hidden;
  }
  .hero-word {
    font-size: clamp(120px, 24vw, 360px);
    line-height: .9; letter-spacing: .005em;
    color: transparent;
    background-image: url('assets/logo-ouba-texture.svg');
    background-size: 100% 100%;
    -webkit-background-clip: text; background-clip: text;
    padding: 8px 16px 20px;
    filter: drop-shadow(0 0 24px rgba(var(--y-rgb),.25));
    will-change: transform, opacity;
    user-select: none;
  }
  .hero-tag {
    font-size: clamp(18px, 2.4vw, 30px); color: var(--paper);
    margin-top: 28px; font-weight: 600; text-align: center;
    will-change: transform, opacity;
  }
  .hero-tag em { font-style: normal; color: var(--y); }
  .hero-sub { color: var(--ter); font-size: 15px; margin-top: 16px; will-change: opacity; text-align: center; padding: 0 24px; }
  .hero-scroll-hint {
    position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
    color: var(--ter); font-size: 11px; letter-spacing: .2em; text-transform: uppercase;
    animation: bounce 2s infinite;
  }
  @keyframes bounce { 0%,100%{transform:translate(-50%,0)} 50%{transform:translate(-50%,8px)} }

  /* Spots flottants du héro */
  .spot { position: absolute; background: var(--y); border-radius: 50% 45% 55% 50%; opacity: .1; will-change: transform; pointer-events: none; }

  /* ── SECTIONS COMMUNES ───────────────────────────────── */
  section { position: relative; }
  .container { max-width: 1200px; margin: 0 auto; padding: 0 48px; }
  .kicker {
    display: inline-flex; align-items: center; gap: 8px;
    font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .18em;
    text-transform: uppercase; color: var(--y);
    padding: 6px 14px; border: 1px solid rgba(var(--y-rgb),.25); border-radius: 99px;
    margin-bottom: 24px;
  }
  .h2 {
    font-size: clamp(44px, 6vw, 84px); line-height: 1.02; letter-spacing: -.01em;
    color: var(--paper);
  }
  .h2 .y { color: var(--y); }
  .lead { font-size: 19px; color: var(--sec); line-height: 1.6; max-width: 560px; margin-top: 24px; }

  /* Reveal on scroll */
  .rv { opacity: 0; transform: translateY(48px); transition: opacity .8s cubic-bezier(.2,.65,.25,1), transform .8s cubic-bezier(.2,.65,.25,1); }
  .rv.in { opacity: 1; transform: none; }
  .rv-d1 { transition-delay: .08s; } .rv-d2 { transition-delay: .16s; } .rv-d3 { transition-delay: .24s; }

  /* ── BANDE DEFILANTE ─────────────────────────────────── */
  .marquee-wrap { overflow: hidden; padding: 40px 0; border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); background: var(--surface); }
  .marquee { display: flex; gap: 64px; width: max-content; animation: scroll-x 30s linear infinite; }
  @keyframes scroll-x { to { transform: translateX(-50%); } }
  .marquee span { font-family: 'Boogaloo', cursive; font-size: 40px; color: var(--ter); white-space: nowrap; }
  .marquee span.y { color: var(--y); }

  /* ── ZERO HDS — section sticky avec compteur ─────────── */
  .zero { height: 220vh; }
  .zero-sticky { position: sticky; top: 0; height: 100vh; display: flex; align-items: center; overflow: hidden; }
  .zero-big {
    font-size: clamp(160px, 32vw, 480px); line-height: .85;
    color: transparent; -webkit-text-stroke: 2px rgba(var(--y-rgb),.4);
    position: absolute; right: -2%; top: 50%; transform: translateY(-50%);
    user-select: none; will-change: transform;
  }
  .zero-content { position: relative; z-index: 2; max-width: 600px; }
  .zero-points { margin-top: 14px; display: flex; flex-direction: column; gap: 0; }
  .zero-point {
    display: flex; gap: 18px; align-items: flex-start; padding: 10px 0;
    border-top: 1px solid var(--stroke);
    opacity: .25; transition: opacity .5s;
  }
  .zero .kicker { margin-bottom: 16px; }
  .zero .h2 { font-size: clamp(32px, 3.4vw, 46px); }
  .zero-point p { font-size: 13px; line-height: 1.45; }
  .zero-sticky { padding-top: 60px; }
  .zero-point.lit { opacity: 1; }
  .zero-point-num { font-family: 'Space Mono', monospace; color: var(--y); font-size: 13px; padding-top: 3px; }
  .zero-point b { display: block; font-size: 17px; color: var(--paper); margin-bottom: 4px; }
  .zero-point p { font-size: 13px; color: var(--sec); line-height: 1.45; }

  /* ── APPS SHOWCASE ───────────────────────────────────── */
  .apps { padding: 160px 0; }
  .app-row { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; margin-top: 96px; }
  .app-row.flip .app-visual { order: 2; }
  .app-visual {
    position: relative; height: 480px; border-radius: 28px;
    background: radial-gradient(ellipse at 30% 20%, rgba(var(--y-rgb),.09), transparent 60%), var(--surface);
    border: 1px solid var(--stroke);
    display: flex; align-items: center; justify-content: center;
    overflow: hidden;
  }
  /* device frames */
  .ipad-frame {
    width: 380px; height: 280px; background: var(--surface-2); border-radius: 18px;
    border: 3px solid #2a2a30; padding: 12px;
    box-shadow: 0 24px 64px rgba(0,0,0,.6);
    will-change: transform;
  }
  .iphone-frame {
    width: 160px; height: 330px; background: var(--surface-2); border-radius: 26px;
    border: 3px solid #2a2a30; padding: 10px;
    box-shadow: 0 24px 64px rgba(0,0,0,.6);
    will-change: transform;
  }
  .screen { width: 100%; height: 100%; border-radius: 10px; background: var(--bg); overflow: hidden; position: relative; }
  /* Live app embeds */
  .live-embed { position: absolute; top: 0; left: 0; transform-origin: 0 0; border: none; pointer-events: none; background: var(--bg); }
  .app-visual { cursor: pointer; }
  .expand-hint {
    position: absolute; bottom: 16px; left: 50%; transform: translateX(-50%);
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(var(--bg-rgb),.85); backdrop-filter: blur(8px);
    border: 1px solid rgba(var(--y-rgb),.3); border-radius: 99px;
    padding: 8px 18px; font-size: 12px; font-weight: 600; color: var(--y);
    opacity: 0; transition: opacity .25s, transform .25s; z-index: 5;
    pointer-events: none; white-space: nowrap;
  }
  .app-visual:hover .expand-hint { opacity: 1; transform: translateX(-50%) translateY(-4px); }
  /* Modal plein écran */
  .demo-modal {
    position: fixed; inset: 0; z-index: 200;
    background: rgba(var(--bg-rgb),.92); backdrop-filter: blur(16px);
    display: none; align-items: center; justify-content: center;
    flex-direction: column; gap: 16px;
  }
  .demo-modal.open { display: flex; }
  .demo-stage { position: relative; border-radius: 18px; overflow: hidden; border: 1px solid rgba(var(--y-rgb),.25); box-shadow: 0 32px 120px rgba(0,0,0,.8), 0 0 60px rgba(var(--y-rgb),.08); background: var(--bg); }
  .demo-stage iframe { border: none; transform-origin: 0 0; display: block; }
  .demo-close {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--y); color: var(--ink); border: none; border-radius: 99px;
    padding: 10px 24px; font-family: 'Space Grotesk', sans-serif; font-size: 14px; font-weight: 700;
    cursor: pointer; transition: transform .15s;
  }
  .demo-close:hover { transform: scale(1.05); }
  .demo-label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: rgba(var(--paper-rgb),.5); }
  .scr-head { display:flex; align-items:center; gap:6px; padding: 12px 12px 4px; }
  .scr-dot { width: 8px; height: 8px; border-radius: 50%; background: rgba(var(--y-rgb),.5); }
  .scr-dot.d2 { background: rgba(var(--paper-rgb),.2); } .scr-dot.d3 { background: rgba(var(--paper-rgb),.12); }
  .scr-bar { height: 6px; border-radius: 3px; background: rgba(var(--y-rgb),.5); margin: 10px 10px 6px; width: 40%; }
  .scr-line { height: 4px; border-radius: 2px; background: rgba(var(--paper-rgb),.12); margin: 6px 10px; }
  .scr-line.s { width: 60%; } .scr-line.xs { width: 35%; }
  .scr-card { height: 34px; border-radius: 6px; background: rgba(var(--y-rgb),.08); border: 1px solid rgba(var(--y-rgb),.18); margin: 8px 10px; }
  .scr-row { display:flex; gap:8px; margin: 8px 10px; }
  .scr-row .scr-card { flex:1; margin: 0; }
  .scr-donut {
    width: 60px; height: 60px; border-radius: 50%; margin: 12px auto;
    background: conic-gradient(var(--y) 0 74%, rgba(var(--paper-rgb),.08) 74% 100%);
    display: flex; align-items: center; justify-content: center;
  }
  .scr-donut::after { content: '74%'; background: var(--bg); width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: 'Space Mono', monospace; font-size: 10px; color: var(--y); }
  .app-label { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .15em; text-transform: uppercase; color: var(--y); margin-bottom: 14px; }
  .app-name { font-size: clamp(34px, 4vw, 54px); color: var(--paper); line-height: 1.05; }
  .app-desc { font-size: 16px; color: var(--sec); line-height: 1.65; margin-top: 18px; max-width: 460px; }
  .app-feats { margin-top: 28px; display: flex; flex-wrap: wrap; gap: 8px; }
  .app-feat {
    font-size: 12px; font-weight: 600; color: var(--y);
    background: rgba(var(--y-rgb),.07); border: 1px solid rgba(var(--y-rgb),.2);
    padding: 6px 13px; border-radius: 99px;
  }

  /* ── STATS COMPTEURS ─────────────────────────────────── */
  .stats { padding: 140px 0; background: linear-gradient(180deg, var(--bg), var(--tint-stats) 50%, var(--bg)); }
  .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-top: 72px; }
  .stat-num { font-family: 'Boogaloo', cursive; font-size: clamp(56px, 6vw, 92px); color: var(--y); line-height: 1; filter: drop-shadow(0 0 16px rgba(var(--y-rgb),.2)); }
  .stat-lbl { font-size: 14px; color: var(--sec); margin-top: 8px; }

  /* ── AR SECTION ──────────────────────────────────────── */
  .ar { padding: 160px 0; overflow: hidden; }
  .ar-cards { display: flex; gap: 20px; margin-top: 64px; will-change: transform; }
  .ar-card {
    min-width: 340px; padding: 32px; border-radius: 22px;
    background: var(--surface); border: 1px solid var(--stroke);
    transition: border-color .3s, transform .3s;
  }
  .ar-card:hover { border-color: rgba(var(--y-rgb),.4); transform: translateY(-6px); }
  .ar-card-num { font-family: 'Space Mono', monospace; font-size: 12px; color: var(--ter); }
  .ar-card h3 { font-size: 26px; color: var(--paper); margin: 14px 0 10px; font-family: 'Boogaloo', cursive; letter-spacing: .01em; }
  .ar-card p { font-size: 14px; color: var(--sec); line-height: 1.6; }
  .ar-card .lsi { margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--stroke); display: flex; align-items: baseline; gap: 8px; }
  .ar-card .lsi b { font-family: 'Space Mono', monospace; font-size: 26px; color: var(--y); }
  .ar-card .lsi span { font-size: 11px; color: var(--ter); text-transform: uppercase; letter-spacing: .08em; }

  /* ── PROFILS (chacun sa place) ───────────────────────── */
  .spectrum { display: flex; align-items: center; gap: 14px; margin-top: 40px; max-width: 620px; }
  .spectrum .bar { flex: 1; height: 6px; border-radius: 99px; background: linear-gradient(90deg, rgba(var(--y-rgb),.22), var(--y)); }
  .spectrum .lbl { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .12em; text-transform: uppercase; color: var(--ter); white-space: nowrap; }
  .profiles-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
  .profile-card { padding: 32px; border-radius: 22px; background: var(--surface); border: 1px solid var(--stroke); transition: border-color .3s, transform .3s; }
  .profile-card:hover { border-color: rgba(var(--y-rgb),.4); transform: translateY(-6px); }
  .profile-card.mid { background: linear-gradient(160deg, var(--tint-deep), var(--surface) 70%); border-color: rgba(var(--y-rgb),.3); }
  .profile-tag { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .14em; text-transform: uppercase; color: var(--ter); }
  .profile-card h3 { font-family: 'Boogaloo', cursive; font-size: 26px; color: var(--y); margin: 12px 0 12px; letter-spacing: .01em; line-height: 1.1; }
  .profile-card p { font-size: 14px; color: var(--sec); line-height: 1.6; }

  /* ── PRICING ─────────────────────────────────────────── */
  .pricing { padding: 160px 0 120px; }
  .price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 72px; max-width: 1150px; margin-left: auto; margin-right: auto; }
  .price-card {
    padding: 44px 40px; border-radius: 26px; background: var(--surface);
    border: 1px solid var(--stroke); position: relative;
    transition: transform .3s, border-color .3s; text-align: left;
  }
  .price-card:hover { transform: translateY(-8px); }
  .price-card.pro { background: linear-gradient(160deg, var(--tint-deep), var(--surface) 70%); border-color: rgba(var(--y-rgb),.35); }
  .price-card.pro:hover { border-color: rgba(var(--y-rgb),.6); box-shadow: 0 24px 80px rgba(var(--y-rgb),.12); }
  .price-badge { position: absolute; top: -13px; left: 40px; background: var(--y); color: var(--ink); font-size: 11px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; padding: 5px 14px; border-radius: 99px; }
  .price-name { font-family: 'Boogaloo', cursive; font-size: 30px; color: var(--paper); }
  .price-amount { margin: 22px 0 6px; display: flex; align-items: baseline; gap: 6px; }
  .price-amount b { font-family: 'Boogaloo', cursive; font-size: 68px; color: var(--y); line-height: 1; }
  .price-amount span { color: var(--ter); font-size: 15px; }
  .price-alt { font-size: 13px; color: var(--ter); margin-bottom: 28px; }
  .price-feats { display: flex; flex-direction: column; gap: 0; }
  .price-feat { display: flex; gap: 12px; align-items: center; padding: 12px 0; border-top: 1px solid var(--stroke); font-size: 14px; color: var(--sec); }
  .price-feat .check { color: var(--y); font-weight: 700; }
  .price-cta {
    margin-top: 32px; width: 100%; padding: 15px; border-radius: 14px;
    font-family: 'Space Grotesk', sans-serif; font-size: 15px; font-weight: 700;
    cursor: pointer; transition: transform .15s, box-shadow .2s;
  }
  .price-cta.solid { background: var(--y); color: var(--ink); border: none; }
  .price-cta.solid:hover { transform: scale(1.02); box-shadow: 0 0 32px rgba(var(--y-rgb),.35); }
  .price-cta.ghost { background: transparent; color: var(--paper); border: 1px solid rgba(var(--paper-rgb),.18); }
  .price-cta.ghost:hover { border-color: rgba(var(--y-rgb),.4); color: var(--y); }

  /* ── FOOTER CTA ──────────────────────────────────────── */
  .final { padding: 180px 0 140px; text-align: center; position: relative; overflow: hidden; }
  .final-word {
    font-size: clamp(80px, 14vw, 200px);
    line-height: .95;
    color: transparent;
    background-image: url('assets/logo-ouba-texture.svg');
    background-size: 100% 100%;
    -webkit-background-clip: text; background-clip: text;
    display: inline-block;
    padding: 6px 12px 14px;
    filter: drop-shadow(0 0 32px rgba(var(--y-rgb),.3));
  }
  .final p { color: var(--sec); font-size: 18px; margin: 28px 0 40px; padding: 0 24px; }
  .final-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
  .btn-store {
    display: inline-flex; align-items: center; gap: 10px;
    background: var(--y); color: var(--ink); text-decoration: none;
    padding: 16px 32px; border-radius: 16px; font-weight: 700; font-size: 16px;
    transition: transform .15s, box-shadow .2s;
  }
  .btn-store:hover { transform: scale(1.04); box-shadow: 0 0 40px rgba(var(--y-rgb),.4); }
  .btn-store.dark { background: var(--surface-2); color: var(--paper); border: 1px solid rgba(var(--paper-rgb),.14); }
  .btn-store.dark:hover { box-shadow: none; border-color: rgba(var(--y-rgb),.4); }

  footer { border-top: 1px solid var(--stroke); padding: 40px 48px; display: flex; justify-content: space-between; align-items: center; gap: 20px; flex-wrap: wrap; }
  footer .fl {
    font-family: 'Boogaloo', cursive; font-size: 22px;
    color: transparent;
    background-image: url('assets/logo-ouba-texture.svg');
    background-size: 100% 100%;
    -webkit-background-clip: text; background-clip: text;
    padding: 1px 3px 4px;
  }
  footer p { color: var(--ter); font-size: 12px; }

  /* ── SHOP AR ── */
  .shop-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; margin-top: 64px; }
  .shop-card {
    border-radius: 22px; overflow: hidden; background: var(--surface);
    border: 1px solid var(--stroke); transition: border-color .3s, transform .3s;
  }
  .shop-card:hover { border-color: rgba(var(--y-rgb),.4); transform: translateY(-6px); }
  .shop-card.wide { grid-column: 1 / -1; }
  .shop-card img { width: 100%; display: block; aspect-ratio: 16/9; object-fit: cover; object-position: center; }
  .shop-card.wide img { aspect-ratio: 32/9; }
  .shop-meta { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; padding: 18px 22px; }
  .shop-meta h3 { font-family: 'Boogaloo', cursive; font-size: 22px; color: var(--y); letter-spacing: .01em; }
  .shop-meta p { font-size: 13px; color: var(--sec); margin-top: 4px; line-height: 1.5; }
  .shop-ref { font-family: 'Space Mono', monospace; font-size: 11px; color: var(--ter); white-space: nowrap; }
  .shop-price { font-family: 'Boogaloo', cursive; font-size: 26px; color: var(--y); line-height: 1; margin-bottom: 4px; }
  .shop-right { text-align: right; flex-shrink: 0; }
  .shop-soon { position: relative; }
  .shop-soon .soon-badge {
    position: absolute; top: 16px; left: 16px; z-index: 3;
    background: var(--y); color: var(--ink); font-size: 11px; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase; padding: 6px 14px; border-radius: 99px;
    font-family: 'Space Grotesk', sans-serif;
  }
  .preorder-btn {
    background: transparent; color: var(--y); border: 1px solid rgba(var(--y-rgb),.4);
    border-radius: 99px; padding: 9px 20px; font-family: 'Space Grotesk', sans-serif;
    font-size: 13px; font-weight: 700; cursor: pointer; white-space: nowrap;
    transition: transform .15s, background .2s, box-shadow .2s; align-self: center;
  }
  .preorder-btn:hover { background: var(--y); color: var(--ink); transform: scale(1.04); box-shadow: 0 0 24px rgba(var(--y-rgb),.3); }
  .device-stage {
    aspect-ratio: 16/9; display: flex; align-items: center; justify-content: center;
    background: radial-gradient(ellipse at 50% 30%, rgba(var(--y-rgb),.08), transparent 65%), var(--tint-warm);
  }

  /* ── MOBILE MENU TOGGLE (≤900px) ─────────────────────── */
  .nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
  .nav-toggle span { display: block; width: 22px; height: 2px; background: var(--paper); border-radius: 2px; transition: transform .25s, opacity .25s; }
  .nav-toggle span + span { margin-top: 5px; }
  .nav-right { display: flex; align-items: center; gap: 16px; }

  /* ── RESPONSIVE ──────────────────────────────────────── */
  @media (max-width: 1200px) {
    .price-grid { grid-template-columns: 1fr 1fr; max-width: 760px; }
    .price-card.pro { grid-column: 1 / -1; }
  }
  @media (max-width: 900px) {
    nav { padding: 0 24px; }
    .container { padding: 0 24px; }
    .app-row { grid-template-columns: 1fr; gap: 40px; }
    .app-row.flip .app-visual { order: 0; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .profiles-grid { grid-template-columns: 1fr; }
    .price-grid { grid-template-columns: 1fr; max-width: 460px; }
    .price-card.pro { grid-column: auto; }
    .zero-big { opacity: .3; }
    .apps, .ar, .pricing { padding: 110px 0; }
    .apps { padding-bottom: 110px; }
    /* mobile nav */
    .nav-toggle { display: block; }
    .nav-links {
      position: fixed; top: 60px; left: 0; right: 0;
      flex-direction: column; align-items: stretch; gap: 0;
      background: rgba(var(--bg-rgb),.97); backdrop-filter: blur(20px);
      border-bottom: 1px solid var(--stroke);
      padding: 8px 24px 20px; transform: translateY(-12px);
      opacity: 0; pointer-events: none; transition: opacity .25s, transform .25s;
    }
    .nav-links.open { opacity: 1; transform: none; pointer-events: auto; max-height: calc(100vh - 60px); overflow-y: auto; }
    .nav-links a { padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(var(--y-rgb),.06); }
    .nav-links a.nav-cta { margin-top: 12px; text-align: center; border: none; }
    /* Hamburger -> croix quand le menu est ouvert (affordance de fermeture) */
    .nav-toggle[aria-expanded="true"] span:first-child { transform: translateY(3.5px) rotate(45deg); }
    .nav-toggle[aria-expanded="true"] span:last-child  { transform: translateY(-3.5px) rotate(-45deg); }
    /* Dropdowns : dépliés en accordéon (le hover n'existe pas sur tactile) */
    .nav-drop { display: block; width: 100%; }
    .nav-drop > a { display: block; padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(var(--y-rgb),.06); }
    .nav-drop-menu { position: static; display: block; opacity: 1; background: transparent; border: none; box-shadow: none; padding: 4px 0 8px 14px; min-width: 0; }
    .nav-drop-menu::before { display: none; }
    .nav-drop-menu a { padding: 9px 0; font-size: 14px; border-bottom: none; }
    footer { flex-direction: column; text-align: center; }
    #langDesktop { display: none; }
    .lang.mobile { display: inline-flex; margin: 12px auto 2px; align-self: center; }
  }
  @media (max-width: 600px) {
    .container { padding: 0 18px; }
    nav { padding: 0 18px; }
    .shop-grid { grid-template-columns: 1fr; }
    .shop-card.wide { grid-column: auto; }
    .shop-card img, .shop-card.wide img { aspect-ratio: 16/9; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 32px 16px; }
    .app-visual { height: 380px; }
    .ipad-frame { width: 300px; height: 224px; }
    .apps { padding: 80px 0; } .ar, .pricing, .stats { padding: 80px 0; }
    .app-row { margin-top: 56px; }
    .marquee { animation-duration: 22s; }
  }

  @media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    .marquee { animation: none; }
    .hero-scroll-hint { animation: none; }
    .rv { opacity: 1 !important; transform: none !important; transition: none !important; }
    .hero-word, .hero-tag, .hero-sub, .zero-big, .ar-cards, .ipad-frame, .iphone-frame { transform: none !important; }
    .spot { display: none; }
  }
/* ══ PAGE PRODUITS ══════════════════════════════════════════ */
.prod-hero { padding: 132px 0 6px; }
.prod-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 40px; }
.prod-card { background: var(--surface); border: 1px solid var(--stroke); border-radius: 22px; overflow: hidden; display: flex; flex-direction: column; cursor: pointer; transition: border-color .3s, transform .3s; }
.prod-card:hover { border-color: rgba(var(--y-rgb),.4); transform: translateY(-4px); }
.prod-card.soon { cursor: default; }
.prod-card.soon:hover { transform: none; border-color: var(--stroke); }
.prod-media { aspect-ratio: 4/3; background: #000; display: flex; align-items: center; justify-content: center; overflow: hidden; position: relative; }
.prod-media > img, .prod-media > video { width: 100%; height: 100%; object-fit: cover; display: block; }
.prod-card.hw .prod-media > img, .prod-card.hw .prod-media > video { object-fit: contain; padding: 7%; }
.prod-media .screen { width: 100%; height: 100%; position: relative; overflow: hidden; }
.prod-tap { position: absolute; bottom: 10px; right: 10px; font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: .04em; padding: 6px 10px; border-radius: 20px; background: rgba(0,0,0,.6); color: var(--paper); backdrop-filter: blur(4px); pointer-events: none; }
.prod-info { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 7px; flex: 1; }
.prod-info .ptag { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--y); }
.prod-info h3 { font-family: 'Boogaloo', cursive; font-size: 27px; color: var(--paper); line-height: 1; }
.prod-info p { font-size: 14px; color: var(--sec); line-height: 1.5; }
.prod-badge { align-self: flex-start; font-family: 'Space Mono', monospace; font-size: 10px; letter-spacing: .06em; text-transform: uppercase; padding: 5px 11px; border-radius: 20px; background: rgba(var(--y-rgb),.14); color: var(--y); margin-top: 6px; }
.prod-badge.b-soon { background: rgba(var(--paper-rgb),.07); color: var(--sec); }

/* Modal détail produit (galerie + vidéo) */
.product-modal { position: fixed; inset: 0; z-index: 200; background: rgba(5,5,6,.92); backdrop-filter: blur(10px); display: none; align-items: center; justify-content: center; padding: 24px; }
.product-modal.open { display: flex; }
.pm-panel { width: min(1000px, 96vw); max-height: 92vh; overflow-y: auto; background: var(--surface); border: 1px solid var(--stroke); border-radius: 24px; padding: 22px; display: grid; grid-template-columns: 1.3fr 1fr; gap: 24px; }
.pm-media { display: flex; flex-direction: column; gap: 12px; }
.pm-stage { aspect-ratio: 4/3; background: #000; border-radius: 16px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.pm-stage img, .pm-stage video { width: 100%; height: 100%; object-fit: contain; }
.pm-thumbs { display: flex; gap: 8px; flex-wrap: wrap; }
.pm-thumb { width: 64px; height: 48px; border-radius: 9px; overflow: hidden; background: #000; border: 1px solid var(--stroke); cursor: pointer; padding: 0; position: relative; }
.pm-thumb.on { border-color: var(--y); }
.pm-thumb img, .pm-thumb video { width: 100%; height: 100%; object-fit: cover; }
.pm-thumb .vbadge { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: #fff; font-size: 15px; text-shadow: 0 1px 4px #000; }
.pm-info h3 { font-family: 'Boogaloo', cursive; font-size: 34px; color: var(--paper); }
.pm-info .ptag { font-family: 'Space Mono', monospace; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--y); }
.pm-info p { color: var(--sec); font-size: 14.5px; line-height: 1.6; margin-top: 12px; }
.pm-specs { list-style: none; margin-top: 16px; display: flex; flex-direction: column; gap: 8px; }
.pm-specs li { display: flex; gap: 8px; align-items: flex-start; font-size: 14px; color: var(--paper); }
.pm-specs li::before { content: "▸"; color: var(--y); }
.pm-close { position: absolute; top: 26px; right: 32px; font-family: 'Space Mono', monospace; font-size: 12px; color: var(--paper); background: rgba(0,0,0,.5); border: 1px solid var(--stroke); border-radius: 20px; padding: 8px 14px; cursor: pointer; }
@media (max-width: 900px) {
  .prod-grid { grid-template-columns: 1fr; }
  .pm-panel { grid-template-columns: 1fr; }
}

/* Vidéo produit en format portrait (clips verticaux) */
.pm-stage.video { aspect-ratio: auto; height: min(72vh, 640px); background: #000; }
.pm-stage.video video { width: auto; height: 100%; max-width: 100%; object-fit: contain; }

/* ══ BOUTIQUE / PANIER ══════════════════════════════════════ */
.cart-btn { position:relative; background:none; border:none; cursor:pointer; font-size:20px; padding:6px 8px; line-height:1; }
.cart-badge { position:absolute; top:-2px; right:-2px; min-width:17px; height:17px; padding:0 4px; border-radius:9px; background:var(--y); color:var(--ink); font:700 10px/17px 'Space Mono',monospace; display:none; align-items:center; justify-content:center; }
.cart-overlay { position:fixed; inset:0; background:rgba(5,5,6,.6); backdrop-filter:blur(3px); opacity:0; pointer-events:none; transition:opacity .25s; z-index:150; }
.cart-overlay.open { opacity:1; pointer-events:auto; }
.cart-drawer { position:fixed; top:0; right:0; height:100%; width:min(420px,92vw); background:var(--surface); border-left:1px solid var(--stroke); transform:translateX(100%); transition:transform .3s cubic-bezier(.4,0,.2,1); z-index:160; display:flex; flex-direction:column; }
.cart-drawer.open { transform:none; }
.cart-head { display:flex; align-items:center; justify-content:space-between; padding:20px 22px; border-bottom:1px solid var(--stroke); }
.cart-head b { font:400 24px/1 'Boogaloo',cursive; color:var(--paper); }
.cart-x { background:none; border:none; color:var(--sec); font-size:18px; cursor:pointer; }
.cart-body { flex:1; overflow-y:auto; padding:14px 18px; }
.cart-empty { color:var(--sec); text-align:center; padding:40px 0; }
.cart-item { display:flex; gap:12px; padding:12px 0; border-bottom:1px solid rgba(var(--paper-rgb),.06); }
.cart-item img { width:64px; height:64px; border-radius:10px; object-fit:cover; background:var(--surface-2); }
.ci-mid { flex:1; }
.ci-name { color:var(--paper); font-size:14px; font-weight:600; }
.ci-pre { font:700 9px/1 'Space Mono',monospace; color:var(--y); background:rgba(var(--y-rgb),.14); padding:2px 6px; border-radius:10px; text-transform:uppercase; }
.ci-price { color:var(--y); font:700 14px/1.4 'Space Mono',monospace; }
.ci-qty { display:flex; align-items:center; gap:8px; margin-top:8px; }
.ci-qty button { width:26px; height:26px; border-radius:7px; border:1px solid var(--stroke); background:var(--surface-2); color:var(--paper); cursor:pointer; font-size:15px; }
.ci-qty span { min-width:20px; text-align:center; color:var(--paper); font-family:'Space Mono',monospace; }
.ci-rm { margin-left:auto; border:none!important; background:none!important; color:var(--ter)!important; font-size:11px!important; width:auto!important; text-decoration:underline; }
.cart-foot { padding:18px 22px; border-top:1px solid var(--stroke); }
.cart-total { display:flex; justify-content:space-between; align-items:baseline; margin-bottom:14px; }
.cart-total span { color:var(--sec); } .cart-total b { font:700 24px/1 'Space Mono',monospace; color:var(--paper); }
.cart-checkout { width:100%; padding:15px; border:none; border-radius:13px; background:var(--y); color:var(--ink); font:400 20px/1 'Boogaloo',cursive; cursor:pointer; }
.cart-checkout:hover { filter:brightness(1.05); }

/* Checkout modal */
.co-modal { position:fixed; inset:0; z-index:200; background:rgba(5,5,6,.9); backdrop-filter:blur(8px); display:none; align-items:center; justify-content:center; padding:22px; }
.co-modal.open { display:flex; }
.co-panel { position:relative; width:min(460px,96vw); max-height:92vh; overflow-y:auto; background:var(--surface); border:1px solid var(--stroke); border-radius:22px; padding:26px; }
.co-panel h3 { font:400 30px/1 'Boogaloo',cursive; color:var(--paper); margin-bottom:16px; }
.co-x { position:absolute; top:18px; right:18px; background:none; border:none; color:var(--sec); font-size:18px; cursor:pointer; }
.co-lines { border:1px solid var(--stroke); border-radius:12px; padding:12px 14px; margin-bottom:18px; }
.co-line { display:flex; justify-content:space-between; padding:5px 0; color:var(--sec); font-size:14px; }
.co-line b { color:var(--paper); font-family:'Space Mono',monospace; }
.co-tot { border-top:1px solid var(--stroke); margin-top:6px; padding-top:10px; } .co-tot span,.co-tot b { color:var(--paper); font-weight:700; }
.co-panel label { display:block; color:var(--sec); font-size:13px; margin-bottom:12px; }
.co-panel input, .co-panel textarea { width:100%; margin-top:6px; padding:11px 13px; border-radius:11px; border:1px solid var(--stroke); background:#161618; color:var(--paper); font-family:inherit; font-size:14px; }
.co-note { color:var(--ter); font-size:12px; margin:4px 0 16px; }
.co-done { text-align:center; padding:20px 0; }
.co-check { width:56px; height:56px; margin:0 auto 14px; border-radius:50%; background:rgba(var(--y-rgb),.15); color:var(--y); font-size:28px; display:flex; align-items:center; justify-content:center; }
.co-done p { color:var(--sec); margin-top:8px; }

/* Grille marketplace */
.mk-grid { display:grid; grid-template-columns:repeat(3,1fr); gap:20px; margin-top:38px; }
.mk-card { background:var(--surface); border:1px solid var(--stroke); border-radius:20px; overflow:hidden; display:flex; flex-direction:column; }
.mk-media { aspect-ratio:1/1; background:#000; display:flex; align-items:center; justify-content:center; overflow:hidden; }
.mk-media img { width:100%; height:100%; object-fit:cover; }
.mk-card.contain .mk-media img { object-fit:contain; padding:8%; }
.mk-info { padding:18px 20px 20px; display:flex; flex-direction:column; gap:6px; flex:1; }
.mk-info h3 { font-size:18px; color:var(--paper); }
.mk-ref { font:400 10px/1 'Space Mono',monospace; color:var(--ter); letter-spacing:.06em; }
.mk-row { display:flex; align-items:center; justify-content:space-between; margin-top:auto; padding-top:12px; }
.mk-price { font:700 22px/1 'Space Mono',monospace; color:var(--y); }
.mk-add { border:none; border-radius:11px; background:var(--y); color:var(--ink); font:400 16px/1 'Boogaloo',cursive; padding:11px 16px; cursor:pointer; }
.mk-add.done { background:#1f3a1f; color:#7dd87d; }
.mk-pre { font:700 9px/1 'Space Mono',monospace; color:var(--y); background:rgba(var(--y-rgb),.14); padding:3px 8px; border-radius:10px; text-transform:uppercase; align-self:flex-start; }
@media(max-width:900px){ .mk-grid{ grid-template-columns:1fr; } }

/* Prix prévente : prix plein barré + prix réduit */
.mk-prices { display:flex; align-items:baseline; gap:8px; flex-wrap:wrap; }
.mk-full { font-family:'Space Mono',monospace; font-size:13px; color:var(--ter); text-decoration:line-through; }

/* Sticker promo prévente (−20%) sur la photo */
.mk-media { position: relative; }
.mk-promo {
  position: absolute; top: 12px; right: 12px; z-index: 3;
  width: 62px; height: 62px; border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ffe27a, var(--y) 70%);
  color: var(--ink); display: flex; flex-direction: column; align-items: center; justify-content: center;
  transform: rotate(9deg); box-shadow: 0 6px 18px rgba(0,0,0,.45); border: 2px solid #fff3c4;
}
.mk-promo b { font: 400 21px/1 'Boogaloo', cursive; }
.mk-promo i { font: 700 8px/1 'Space Mono', monospace; text-transform: uppercase; letter-spacing: .06em; font-style: normal; margin-top: 2px; }

/* Audiences ciblées (boutique) : kinés, préparateurs, coachs, clubs, athlètes */
.mk-aud { display:flex; flex-wrap:wrap; gap:10px; margin-top:26px; }
.mk-aud span { font:700 11px/1 'Space Mono',monospace; text-transform:uppercase; letter-spacing:.05em; color:var(--paper); padding:9px 14px; border-radius:20px; border:1px solid var(--stroke); background:rgba(var(--y-rgb),.06); }

/* ══ PAGE PRODUIT (produit.html) ══ */
.prod-back { display:inline-block; margin-bottom:22px; font:700 12px/1 'Space Mono',monospace; letter-spacing:.05em; text-transform:uppercase; color:var(--sec); text-decoration:none; }
.prod-back:hover { color:var(--y); }
.pd-wrap { display:grid; grid-template-columns:1.15fr 1fr; gap:36px; align-items:start; }
.pd-media .pm-stage { aspect-ratio:1/1; }
.pd-info h1 { font:400 clamp(32px,4vw,48px)/1 'Boogaloo',cursive; color:var(--paper); margin:4px 0 0; }
.pd-info .ptag { font-family:'Space Mono',monospace; font-size:12px; letter-spacing:.08em; text-transform:uppercase; color:var(--y); }
.pd-price { display:flex; align-items:baseline; gap:10px; flex-wrap:wrap; margin:18px 0; }
.pd-amount { font:700 32px/1 'Space Mono',monospace; color:var(--y); }
.pd-info > p { color:var(--sec); font-size:15px; line-height:1.65; }
@media(max-width:900px){ .pd-wrap{ grid-template-columns:1fr; } }

/* ══ PAGES LÉGALES + RGPD ══ */
.legal { max-width: 780px; margin: 0 auto; padding: 118px 0 40px; }
.legal h1 { font:400 clamp(30px,4vw,44px)/1.05 'Boogaloo',cursive; color:var(--paper); margin-bottom:8px; }
.legal .upd { font-family:'Space Mono',monospace; font-size:12px; color:var(--ter); margin-bottom:30px; }
.legal h2 { font:400 24px/1.2 'Boogaloo',cursive; color:var(--y); margin:34px 0 12px; }
.legal h3 { font-size:16px; color:var(--paper); margin:20px 0 6px; }
.legal p, .legal li { color:var(--sec); font-size:15px; line-height:1.7; }
.legal ul { margin:8px 0 8px 20px; }
.legal a { color:var(--y); }
.legal .todo { color:#ff8f6b; }
.legal table { width:100%; border-collapse:collapse; margin:10px 0; font-size:14px; }
.legal td, .legal th { border:1px solid var(--stroke); padding:8px 10px; text-align:left; color:var(--sec); vertical-align:top; }
.legal th { color:var(--paper); }
.legal-links { margin-top:14px; font-size:12px; color:var(--ter); }
.legal-links a { color:var(--sec); text-decoration:none; }
.legal-links a:hover { color:var(--y); }
.cookie-banner { position:fixed; left:16px; right:16px; bottom:16px; z-index:180; max-width:560px; margin:0 auto; background:#161618; border:1px solid var(--stroke); border-radius:16px; padding:16px 18px; display:flex; gap:14px; align-items:center; box-shadow:0 10px 30px rgba(0,0,0,.5); }
.cookie-banner p { font-size:13px; color:var(--sec); line-height:1.5; margin:0; }
.cookie-banner b { color:var(--paper); }
.cookie-banner a { color:var(--y); }
.cookie-banner button { flex:none; padding:11px 20px; border:none; border-radius:11px; background:var(--y); color:var(--ink); font:400 16px/1 'Boogaloo',cursive; cursor:pointer; }
@media(max-width:600px){ .cookie-banner{ flex-direction:column; align-items:stretch; } }

/* ── Menu déroulant « Nos solutions » ─────────────────── */
.nav-drop { position: relative; display: inline-block; }
.nav-drop > a { color: var(--sec); text-decoration: none; font-size: 13px; font-weight: 500; transition: color .2s; cursor: pointer; }
.nav-drop > a:hover { color: var(--paper); }
.nav-drop .caret { font-size: 9px; opacity: .7; margin-left: 3px; }
.nav-drop-menu {
  position: absolute; top: calc(100% + 10px); left: 50%; transform: translateX(-50%);
  min-width: 210px; padding: 8px; border-radius: 14px;
  background: var(--surface); border: 1px solid var(--stroke);
  box-shadow: 0 18px 50px rgba(0,0,0,.35);
  display: none; z-index: 80;
}
.nav-drop-menu::before { content: ""; position: absolute; top: -12px; left: 0; right: 0; height: 12px; }
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu a { display: block; padding: 10px 14px; border-radius: 9px; font-size: 13.5px; color: var(--sec); text-decoration: none; }
.nav-drop-menu a:hover { background: rgba(var(--y-rgb),.1); color: var(--paper); }
.nav-drop-menu a b { display: block; font-size: 13.5px; color: var(--paper); font-weight: 600; }
.nav-drop-menu a small { display: block; font-size: 11px; color: var(--ter); margin-top: 1px; }
@media (max-width: 900px) {
  .nav-drop { display: block; }
  .nav-drop > a { display: block; padding: 14px 0; font-size: 16px; border-bottom: 1px solid rgba(var(--y-rgb),.06); }
  .nav-drop-menu { position: static; transform: none; display: block; box-shadow: none; border: none; background: transparent; padding: 0 0 6px 16px; min-width: 0; }
  .nav-drop-menu a { padding: 10px 0; border-bottom: 1px solid rgba(var(--y-rgb),.04); border-radius: 0; }
}

/* ══ Logo OUBA officiel : lettres Boogaloo remplies avec la texture pelage ══ */
.nav-logo, .home-word, .hero-word, .hero-word-sm, .final-word, footer .fl {
  font-family: 'Boogaloo', cursive;
  background-image: url(assets/logo-ouba-texture.svg);
  background-size: 100% 100%;
  background-repeat: no-repeat;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  filter: drop-shadow(0 1px 1px rgba(0,0,0,.15));
}
/* garder un halo doux sur les grands lettrages sombres */
.home-word, .hero-word, .hero-word-sm, .final-word {
  filter: drop-shadow(0 0 10px rgba(var(--y-rgb),.28));
}
