*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --accent: #B9FF2B;
    --accent-2: #D4FF6B;
    --purple: #956AE5;
    --blue: #3E7BFF;
    --bg: #050714;
    --bg-1: #080B1F;
    --surface: rgba(255,255,255,0.04);
    --surface-2: rgba(255,255,255,0.07);
    --border: rgba(255,255,255,0.09);
    --border-2: rgba(255,255,255,0.16);
    --text: #ECEFFF;
    --text-mute: rgba(236,239,255,0.66);
    --text-dim: rgba(236,239,255,0.42);
    --r: 22px;
    --r-lg: 32px;
    --max: 1120px;
    --pad-y: clamp(4.2rem, 8vw, 7.5rem);
}

html { scroll-behavior: smooth; scroll-padding-top: 96px; overflow-x: hidden; }

body {
    font-family: Manrope, system-ui, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    font-size: 16px;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}
body.locked { overflow: hidden; }

h1, h2, h3, h4 {
    font-family: Unbounded, sans-serif;
    font-weight: 600;
    line-height: 1.12;
    letter-spacing: -0.02em;
}
h1 { font-size: clamp(2.1rem, 5.4vw, 4.2rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.7rem, 3.6vw, 2.7rem); }
h3 { font-size: clamp(1.15rem, 1.8vw, 1.4rem); }
p { color: var(--text-mute); }
a { color: inherit; text-decoration: none; }

.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 clamp(1.1rem, 4vw, 2rem); }
section { padding: var(--pad-y) 0; position: relative; }

.grad {
    background: linear-gradient(120deg, #B9FF2B 0%, #76C2D0 50%, #956AE5 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.eyebrow {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.45rem 0.9rem;
    background: var(--surface-2); border: 1px solid var(--border);
    border-radius: 999px;
    font-size: 0.74rem; font-weight: 600;
    text-transform: uppercase; letter-spacing: 0.1em;
    color: var(--text-mute);
}
.eyebrow .dot {
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent); box-shadow: 0 0 10px rgba(185,255,43,0.5);
}

.section-head { text-align: center; max-width: 700px; margin: 0 auto clamp(2.4rem, 5vw, 3.8rem); }
.section-head .eyebrow { margin-bottom: 1.15rem; }
.section-head p { margin-top: 1rem; }

.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.55rem;
    padding: 0.92rem 1.55rem;
    font-family: inherit; font-weight: 600; font-size: 0.95rem;
    border-radius: 999px; border: 1px solid transparent; cursor: pointer;
    transition: transform .25s ease, box-shadow .25s ease, background .25s ease, border-color .25s ease;
    white-space: nowrap;
}
.btn-primary {
    background: var(--accent); color: #0A0F00;
    box-shadow: 0 12px 30px -12px rgba(185,255,43,0.45);
}
.btn-primary:hover { transform: translateY(-2px); }
.btn-ghost {
    background: var(--surface-2); border-color: var(--border-2); color: var(--text);
}
.btn-ghost:hover { background: rgba(255,255,255,0.1); transform: translateY(-2px); }
.btn-app .btn-app-icon { width: 1.25rem; height: 1.25rem; object-fit: contain; }

#preloader {
    position: fixed; inset: 0; z-index: 9999;
    background: var(--bg);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1.4rem;
    transition: opacity .7s ease, visibility .7s ease;
}
#preloader.done { opacity: 0; visibility: hidden; }
.pl-bar { width: min(220px, 58vw); height: 3px; border-radius: 99px; background: var(--surface-2); overflow: hidden; }
.pl-bar i { display: block; height: 100%; width: 0; background: linear-gradient(90deg, var(--accent), var(--blue)); }
.pl-pct { font-size: .8rem; color: var(--text-dim); letter-spacing: .08em; }

nav#nav {
    position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
    padding: 1rem 0; border-bottom: 1px solid transparent;
    transition: background .3s ease, border-color .3s ease, padding .3s ease;
}
nav#nav.scrolled {
    background: rgba(6,8,24,0.78);
    backdrop-filter: blur(22px);
    border-bottom-color: var(--border);
    padding: .65rem 0;
}
.nav-inner {
    max-width: var(--max); margin: 0 auto;
    padding: 0 clamp(1.1rem, 4vw, 2rem);
    display: flex; align-items: center; justify-content: space-between; gap: 1.2rem;
}
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-word {
    font-family: Manrope, system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.42rem;
    letter-spacing: -0.015em;
    line-height: 1;
    color: #fff;
    white-space: nowrap;
}
.pl-word {
    font-family: Manrope, system-ui, sans-serif;
    font-weight: 800;
    font-size: 1.55rem;
    letter-spacing: -0.01em;
    color: #fff;
}
.studio-tag {
    font-family: Unbounded, sans-serif; font-weight: 600; font-size: .68rem;
    letter-spacing: .12em; text-transform: uppercase;
    padding: .26rem .55rem; border-radius: 8px;
    color: #0A0F00; background: var(--accent);
}
.nav-links { display: flex; align-items: center; gap: .15rem; list-style: none; }
.nav-links a {
    display: inline-block; padding: .5rem .85rem;
    font-size: .9rem; font-weight: 500; color: var(--text-mute); border-radius: 999px;
}
.nav-links a:hover { color: var(--text); background: var(--surface-2); }
.nav-cta { display: flex; align-items: center; gap: .55rem; }
.nav-cta .btn { padding: .58rem 1.1rem; font-size: .85rem; }
.menu-toggle {
    display: none; width: 42px; height: 42px;
    background: var(--surface-2); border: 1px solid var(--border); border-radius: 12px;
    flex-direction: column; align-items: center; justify-content: center; gap: 5px; cursor: pointer;
}
.menu-toggle span { width: 18px; height: 2px; background: var(--text); border-radius: 2px; }

.mobile-menu {
    position: fixed; inset: 0; z-index: 999;
    background: rgba(5,7,20,0.96); backdrop-filter: blur(18px);
    display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 1rem;
    opacity: 0; visibility: hidden; transition: opacity .3s ease, visibility .3s ease;
}
body.menu-open .mobile-menu { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: Unbounded, sans-serif; font-size: 1.4rem; color: var(--text-mute); }
.mobile-menu a:hover { color: var(--accent); }

.hero {
    min-height: 100svh; display: flex; align-items: center;
    padding-top: 7.5rem; padding-bottom: 3.5rem;
    position: relative; overflow: hidden;
}
#hero-canvas { position: absolute; inset: 0; z-index: 0; width: 100%; height: 100%; pointer-events: none; }

/* Grain fin : casse les dégradés et donne une matière de tirage photo. */
.hero-grain {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    opacity: .16;
    mix-blend-mode: overlay;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='140' height='140' filter='url(%23n)'/%3E%3C/svg%3E");
}
.hero-vignette {
    position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: radial-gradient(115% 88% at 50% 40%, transparent 20%, rgba(5,7,20,.5) 62%, rgba(5,7,20,.92) 100%);
}
.hero::after {
    content: ''; position: absolute; inset: 0; z-index: 1; pointer-events: none;
    background: linear-gradient(180deg, rgba(5,7,20,.45) 0%, rgba(5,7,20,0) 26%, rgba(5,7,20,.1) 70%, rgba(5,7,20,.97) 100%);
}

.hero .container { position: relative; z-index: 2; text-align: center; }
.hero-text { max-width: 1020px; margin: 0 auto; position: relative; }
.hero-text::before {
    content: ''; position: absolute; z-index: -1; inset: -18% -10%;
    background: radial-gradient(58% 58% at 50% 48%, rgba(5,7,20,.72), rgba(5,7,20,.3) 58%, transparent 76%);
    filter: blur(26px);
}

.hero-badge {
    background: rgba(255,255,255,0.05);
    border-color: rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    color: var(--text-mute);
}
.hero-badge .dot { position: relative; }
.hero-badge .dot::after {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(185,255,43,.55);
    animation: heroPing 2.6s cubic-bezier(.2,.7,.3,1) infinite;
}
@keyframes heroPing {
    0%   { transform: scale(.55); opacity: .9; }
    70%  { transform: scale(1.75); opacity: 0; }
    100% { transform: scale(1.75); opacity: 0; }
}

.hero h1 {
    margin-top: 1.4rem;
    color: #fff;
    font-size: clamp(2.05rem, 5vw, 4rem);
}
.hero h1 .line { display: block; overflow: hidden; }
.hero h1 .line > span { display: inline-block; transform: translateY(110%); }
.hero-grad {
    background: linear-gradient(100deg, #B9FF2B 0%, #76C2D0 26%, #956AE5 50%, #76C2D0 74%, #B9FF2B 100%);
    background-size: 220% 100%;
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
    animation: heroGrad 12s linear infinite;
}
@keyframes heroGrad {
    from { background-position: 0% 50%; }
    to   { background-position: 220% 50%; }
}

.hero-sub { margin: 1.5rem auto 0; max-width: 620px; font-size: clamp(1rem, 1.35vw, 1.12rem); }
.hero-cta { margin-top: 2.1rem; display: flex; gap: .8rem; justify-content: center; flex-wrap: wrap; }

/* Reflet qui balaie le bouton principal, de loin en loin. */
.btn-sheen { position: relative; overflow: hidden; }
.btn-sheen::after {
    content: '';
    position: absolute; top: -20%; bottom: -20%; left: -70%;
    width: 45%;
    background: linear-gradient(100deg, transparent, rgba(255,255,255,.5), transparent);
    transform: skewX(-18deg);
    animation: heroSheen 6.5s ease-in-out 2.4s infinite;
    pointer-events: none;
}
@keyframes heroSheen {
    0%        { left: -70%; }
    24%, 100% { left: 140%; }
}

.hero-trust { margin-top: 2.3rem; display: flex; gap: 1.4rem; justify-content: center; flex-wrap: wrap; color: var(--text-dim); font-size: .84rem; }
.hero-trust span { display: inline-flex; align-items: center; gap: .45rem; }
.hero-trust svg { width: 15px; height: 15px; color: var(--accent); flex: none; }

.scroll-hint {
    position: absolute; bottom: 1.6rem; left: 50%; transform: translateX(-50%);
    z-index: 2; display: flex; flex-direction: column; align-items: center; gap: .5rem;
    color: var(--text-dim); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase;
}
.scroll-hint .mouse {
    width: 24px; height: 38px; border: 2px solid var(--border-2); border-radius: 14px; position: relative;
}
.scroll-hint .mouse::after {
    content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
    width: 4px; height: 7px; background: var(--accent); border-radius: 4px;
    animation: scrollWheel 1.6s ease-in-out infinite;
}
@keyframes scrollWheel {
    0% { opacity: 0; transform: translate(-50%, 0); }
    40% { opacity: 1; }
    80% { opacity: 0; transform: translate(-50%, 12px); }
    100% { opacity: 0; }
}

.offers {
    display: grid;
    grid-template-columns: 1.12fr 1fr;
    gap: 1.2rem;
}
.offer {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    min-height: 320px;
    padding: 2.15rem 1.9rem 1.85rem;
    display: flex;
    flex-direction: column;
    gap: .72rem;
    border-radius: 28px;
    background:
        linear-gradient(165deg, rgba(255,255,255,0.055) 0%, rgba(255,255,255,0.018) 48%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 24px 60px -36px rgba(0,0,0,0.7), inset 0 1px 0 rgba(255,255,255,0.06);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease, box-shadow .45s ease;
}
.offer::before {
    content: '';
    position: absolute; inset: 0;
    border-radius: inherit;
    pointer-events: none;
    opacity: 0;
    background: radial-gradient(520px circle at var(--mx, 50%) var(--my, 30%), rgba(255,255,255,0.09), transparent 42%);
    transition: opacity .4s ease;
    z-index: 1;
}
.offer::after {
    content: '';
    position: absolute; top: 0; left: 12%; right: 12%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--glow, rgba(185,255,43,0.45)), transparent);
    opacity: .7;
}
.offer:hover {
    transform: translateY(-7px);
    border-color: rgba(255,255,255,0.18);
    box-shadow: 0 32px 70px -32px rgba(0,0,0,0.8), 0 0 0 1px rgba(255,255,255,0.04), inset 0 1px 0 rgba(255,255,255,0.08);
}
.offer:hover::before { opacity: 1; }
.offer-index {
    position: absolute; right: .4rem; top: -.35rem;
    font-family: Unbounded, sans-serif; font-weight: 700;
    font-size: clamp(4.4rem, 8vw, 6.4rem); line-height: 1;
    letter-spacing: -.06em;
    color: rgba(255,255,255,0.045);
    pointer-events: none; user-select: none; z-index: 0;
}
.offer-icon, .offer-kicker, .offer h3, .offer p, .offer ul { position: relative; z-index: 2; }
.offer-icon {
    width: 48px; height: 48px; border-radius: 14px;
    display: grid; place-items: center; margin-bottom: .25rem;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
}
.offer-icon svg { width: 22px; height: 22px; }
.offer-kicker {
    font-size: .72rem; font-weight: 700;
    letter-spacing: .16em; text-transform: uppercase;
    color: var(--accent);
}
.offer h3 { margin-top: .1rem; max-width: 16ch; }
.offer p { font-size: .96rem; flex: 1; max-width: 42ch; }
.offer ul {
    list-style: none; display: flex; flex-wrap: wrap; gap: .45rem;
    margin-top: .55rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.offer li {
    font-size: .78rem; font-weight: 600;
    color: var(--text-mute);
    padding: .32rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.offer-a { --glow: rgba(185,255,43,0.55); }
.offer-a .offer-icon { color: var(--accent); background: rgba(185,255,43,0.08); border-color: rgba(185,255,43,0.22); }
.offer-b { --glow: rgba(62,123,255,0.55); }
.offer-b .offer-icon { color: var(--blue); background: rgba(62,123,255,0.1); border-color: rgba(62,123,255,0.28); }
.offer-b .offer-kicker { color: #8EB4FF; }
.offer-c { --glow: rgba(245,130,155,0.45); }
.offer-c .offer-icon { color: #F5829B; background: rgba(245,130,155,0.1); border-color: rgba(245,130,155,0.28); }
.offer-c .offer-kicker { color: #F5829B; }
.offer-d { --glow: rgba(149,106,229,0.55); }
.offer-d .offer-icon { color: var(--purple); background: rgba(149,106,229,0.12); border-color: rgba(149,106,229,0.3); }
.offer-d .offer-kicker { color: #C4A8FF; }

.section-bridge {
    position: relative;
    height: 0;
    z-index: 3;
    pointer-events: none;
}
.section-bridge i {
    position: absolute;
    left: 50%;
    top: 0;
    transform: translate(-50%, -50%);
    width: min(560px, 58vw);
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185,255,43,0.55), rgba(118,194,208,0.4), rgba(149,106,229,0.5), transparent);
    box-shadow: 0 0 28px rgba(185,255,43,0.18);
}
.section-bridge i::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 7px;
    height: 7px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px rgba(185,255,43,0.7);
}

#services {
    background: radial-gradient(80% 45% at 50% 0%, rgba(185,255,43,0.055), transparent 58%);
}
#livrables {
    background:
        radial-gradient(70% 80% at 4% 18%, rgba(149,106,229,0.10), transparent 52%),
        radial-gradient(62% 70% at 98% 82%, rgba(62,123,255,0.07), transparent 50%);
}
#methode {
    background: radial-gradient(78% 48% at 50% 0%, rgba(118,194,208,0.07), transparent 56%);
}
#tarifs {
    background: radial-gradient(70% 40% at 50% 100%, rgba(185,255,43,0.04), transparent 50%);
}

/* ---------- Livrables · showcase ---------- */

.showcase {
    --sc: 185, 255, 43;
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 1.3rem;
    align-items: start;
}

.sc-stage {
    position: relative;
    align-self: stretch;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: clamp(.9rem, 1.6vw, 1.4rem);
    border-radius: 30px;
    background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 55%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.10);
    box-shadow: 0 30px 70px -40px rgba(0,0,0,0.85), inset 0 1px 0 rgba(255,255,255,0.06);
    overflow: hidden;
    isolation: isolate;
}
.sc-glow {
    position: absolute;
    inset: -30% -10% auto -10%;
    height: 70%;
    z-index: 0;
    pointer-events: none;
    background: radial-gradient(50% 60% at 50% 50%, rgba(var(--sc), 0.20), transparent 70%);
    filter: blur(20px);
    transition: background .6s ease;
}

.sc-window {
    width: 100%;
    position: relative;
    z-index: 1;
    border-radius: 18px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.11);
    background: linear-gradient(180deg, #0A0E22, #06091A);
    box-shadow: 0 24px 50px -30px rgba(0,0,0,0.9);
}
.sc-bar {
    display: flex;
    align-items: center;
    gap: .38rem;
    padding: .6rem .8rem;
    border-bottom: 1px solid rgba(255,255,255,0.07);
    background: rgba(255,255,255,0.025);
}
.sc-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,0.13); flex: none; }
.sc-url {
    margin-left: .6rem;
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    max-width: 62%;
    padding: .26rem .75rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.07);
    font-size: .72rem;
    color: var(--text-dim);
    overflow: hidden;
}
.sc-url svg { width: 11px; height: 11px; flex: none; opacity: .7; }
.sc-url b { font-weight: 500; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.sc-screen { position: relative; aspect-ratio: 16 / 10; }
.sc-scene {
    position: absolute;
    inset: 0;
    opacity: 0;
    transform: scale(.99);
    transition: opacity .45s ease, transform .6s cubic-bezier(.2,.8,.2,1), visibility .45s;
}
.sc-scene[hidden] { display: block; visibility: hidden; }
.sc-scene.is-active { opacity: 1; transform: none; visibility: visible; }
.sc-scene svg { display: block; width: 100%; height: 100%; }

.sc-scene .p { opacity: 0; }
.sc-scene.is-active .p { animation: scPop .75s cubic-bezier(.2,.8,.2,1) both; animation-delay: var(--d, 0s); }
@keyframes scPop {
    from { opacity: 0; transform: translateY(12px); }
    to   { opacity: var(--o, 1); transform: none; }
}

.sc-pulse { transform-origin: 481px 222px; opacity: 0; }
.sc-scene-2.is-active .sc-pulse { animation: scPulse 2.6s ease-out .7s infinite; }
@keyframes scPulse {
    0%   { opacity: .9; transform: scale(.4); }
    70%  { opacity: 0;  transform: scale(1.5); }
    100% { opacity: 0;  transform: scale(1.5); }
}

.sc-ring { stroke-dasharray: 289; stroke-dashoffset: 289; }
.sc-scene-3.is-active .sc-ring { animation: scRing 1.2s cubic-bezier(.2,.8,.2,1) both; animation-delay: calc(var(--d, 0s) + .15s); }
@keyframes scRing {
    from { stroke-dashoffset: 289; }
    to   { stroke-dashoffset: calc(289 - var(--val)); }
}

.sc-scene-3.is-active .sc-uptime { animation: scWipe 1.4s cubic-bezier(.3,.7,.3,1) .7s both; }
@keyframes scWipe {
    from { clip-path: inset(0 100% 0 0); }
    to   { clip-path: inset(0 0 0 0); }
}

.sc-wire { stroke-dasharray: 220; stroke-dashoffset: 220; opacity: 0; }
.sc-scene-4.is-active .sc-wire {
    opacity: 1;
    animation: scDraw .7s ease-out both var(--d), scDash 1.3s linear infinite calc(var(--d) + .7s);
}
@keyframes scDraw { from { stroke-dashoffset: 220; } to { stroke-dashoffset: 0; } }
@keyframes scDash {
    from { stroke-dasharray: 5 9; stroke-dashoffset: 0; }
    to   { stroke-dasharray: 5 9; stroke-dashoffset: -14; }
}
.sc-brainbar { transform-box: fill-box; transform-origin: left center; transform: scaleX(0); }
.sc-scene-4.is-active .sc-brainbar { animation: scLoad 1.9s cubic-bezier(.4,0,.2,1) .5s infinite; }
@keyframes scLoad {
    0%   { transform: scaleX(0); opacity: 1; }
    70%  { transform: scaleX(1); opacity: 1; }
    100% { transform: scaleX(1); opacity: .25; }
}
.sc-spark { transform-box: fill-box; transform-origin: center; }
.sc-scene-4.is-active .sc-spark { animation: scBreathe 3s ease-in-out .6s infinite; }
@keyframes scBreathe {
    0%, 100% { opacity: .75; transform: scale(.94); }
    50%      { opacity: 1;   transform: scale(1.06); }
}

.sc-side { display: flex; flex-direction: column; gap: .6rem; }
.sc-list { display: flex; flex-direction: column; gap: .55rem; }

.sc-tab {
    position: relative;
    overflow: hidden;
    display: block;
    width: 100%;
    text-align: left;
    font-family: inherit;
    color: inherit;
    cursor: pointer;
    padding: 1rem 1.15rem 1.05rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(255,255,255,0.08);
    transition: background .35s ease, border-color .35s ease, transform .35s ease;
}
.sc-tab:hover { background: rgba(255,255,255,0.055); border-color: rgba(255,255,255,0.14); }
.sc-tab:focus-visible { outline: 2px solid rgba(var(--sc), .7); outline-offset: 3px; }
.sc-tab.is-active {
    background: linear-gradient(150deg, rgba(var(--sc), 0.10), rgba(255,255,255,0.02) 70%);
    border-color: rgba(var(--sc), 0.34);
}

.sc-tab-top { display: flex; align-items: flex-start; gap: .8rem; }
.sc-tab-icon {
    flex: none;
    width: 40px; height: 40px;
    border-radius: 12px;
    display: grid; place-items: center;
    color: var(--text-dim);
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    transition: color .35s ease, background .35s ease, border-color .35s ease;
}
.sc-tab-icon svg { width: 19px; height: 19px; }
.sc-tab.is-active .sc-tab-icon {
    color: rgb(var(--sc));
    background: rgba(var(--sc), 0.12);
    border-color: rgba(var(--sc), 0.32);
}
.sc-tab-head { display: block; }
.sc-tab-kicker {
    display: block;
    font-size: .68rem; font-weight: 700;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--text-dim);
    transition: color .35s ease;
}
.sc-tab.is-active .sc-tab-kicker { color: rgb(var(--sc)); }
.sc-tab-title {
    display: block;
    margin-top: .18rem;
    font-family: Unbounded, sans-serif;
    font-size: .93rem; font-weight: 600; line-height: 1.3;
    letter-spacing: -0.01em;
    color: var(--text-mute);
    transition: color .35s ease;
}
.sc-tab.is-active .sc-tab-title { color: var(--text); }

.sc-tab-body {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows .45s cubic-bezier(.2,.8,.2,1), opacity .35s ease;
}
.sc-tab-body > * { overflow: hidden; }
.sc-tab.is-active .sc-tab-body { grid-template-rows: 1fr; opacity: 1; }
.sc-tab-desc {
    display: block;
    padding-top: .7rem;
    font-size: .875rem; line-height: 1.55;
    color: var(--text-mute);
}
.sc-tab-metrics { display: flex; flex-wrap: wrap; gap: .4rem; padding-top: .7rem; }
.sc-tab-metrics i {
    font-style: normal;
    font-size: .74rem; font-weight: 600;
    color: var(--text-dim);
    padding: .3rem .65rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
}
.sc-tab-metrics em { font-style: normal; font-weight: 800; color: rgb(var(--sc)); }

.sc-prog {
    position: absolute;
    left: 0; right: 0; bottom: 0;
    height: 2px;
    background: rgba(255,255,255,0.05);
    opacity: 0;
    transition: opacity .3s ease;
}
.sc-tab.is-active .sc-prog { opacity: 1; }
.sc-prog i {
    display: block;
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, rgba(var(--sc), .45), rgb(var(--sc)));
}
.sc-tab.is-active .sc-prog i { animation: scProg var(--sc-dur, 8s) linear forwards; }
.showcase.is-paused .sc-prog i { animation-play-state: paused; }
.showcase.no-auto .sc-prog { display: none; }
@keyframes scProg { from { width: 0; } to { width: 100%; } }

.sc-cta { width: 100%; margin-top: .35rem; }

.sc-proof {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: .9rem;
    margin-top: 1.5rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.sc-proof li { display: flex; flex-direction: column; gap: .3rem; }
.sc-proof svg { width: 20px; height: 20px; color: var(--accent); margin-bottom: .35rem; }
.sc-proof b {
    font-family: Unbounded, sans-serif;
    font-size: .88rem; font-weight: 600;
    letter-spacing: -0.01em;
}
.sc-proof span { font-size: .82rem; color: var(--text-dim); line-height: 1.5; }

/* ---------- Méthode · timeline ---------- */

.tl { position: relative; }
.tl-rail {
    position: absolute;
    left: 27px;
    top: 34px;
    bottom: 34px;
    width: 2px;
    border-radius: 2px;
    background: rgba(255,255,255,0.07);
    overflow: hidden;
}
.tl-rail i {
    display: block;
    width: 100%;
    height: 0;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--accent), #76C2D0 60%, var(--purple));
    box-shadow: 0 0 16px rgba(185,255,43,0.35);
    transition: height .25s linear;
}

.tl-steps { list-style: none; display: flex; flex-direction: column; gap: 1.1rem; }
.tl-step { display: grid; grid-template-columns: 56px 1fr; gap: 1.3rem; align-items: start; }

.tl-node {
    position: relative;
    z-index: 2;
    width: 56px; height: 56px;
    border-radius: 50%;
    display: grid; place-items: center;
    color: var(--text-dim);
    background: #080B1F;
    border: 1px solid rgba(255,255,255,0.1);
    transition: color .45s ease, border-color .45s ease, background .45s ease, box-shadow .45s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
.tl-node svg { width: 22px; height: 22px; }
.tl-step.is-lit .tl-node {
    color: var(--accent);
    background: rgba(185,255,43,0.09);
    border-color: rgba(185,255,43,0.42);
    box-shadow: 0 0 0 6px rgba(185,255,43,0.05), 0 0 26px -6px rgba(185,255,43,0.5);
    transform: scale(1.04);
}

.tl-card {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 260px;
    gap: 1.4rem;
    align-items: center;
    padding: 1.6rem 1.7rem;
    border-radius: 26px;
    background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 55%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 24px 60px -40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: border-color .45s ease, transform .45s cubic-bezier(.2,.8,.2,1);
}
.tl-card::after {
    content: '';
    position: absolute;
    top: 0; left: 8%; right: 8%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185,255,43,0.4), transparent);
    opacity: 0;
    transition: opacity .5s ease;
}
.tl-step.is-lit .tl-card { border-color: rgba(255,255,255,0.15); }
.tl-step.is-lit .tl-card::after { opacity: .8; }

.tl-head { display: grid; grid-template-columns: auto 1fr auto; align-items: baseline; gap: .55rem .7rem; }
.tl-num {
    font-family: Unbounded, sans-serif;
    font-weight: 700;
    font-size: 1.05rem;
    letter-spacing: -0.02em;
    background: linear-gradient(120deg, #B9FF2B, #76C2D0);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.tl-head h3 { min-width: 0; font-size: clamp(1.1rem, 1.7vw, 1.3rem); }
.tl-when {
    justify-self: end;
    font-size: .72rem; font-weight: 700;
    letter-spacing: .1em; text-transform: uppercase;
    color: var(--text-dim);
    padding: .3rem .7rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    white-space: nowrap;
}
.tl-card p { margin-top: .75rem; font-size: .93rem; max-width: 52ch; }

.tl-meta {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: .6rem 1.2rem;
    margin-top: 1.1rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.tl-meta span { display: block; font-size: .84rem; color: var(--text-mute); line-height: 1.45; }
.tl-meta b {
    display: block;
    margin-bottom: .18rem;
    font-size: .66rem; font-weight: 700;
    letter-spacing: .13em; text-transform: uppercase;
    color: var(--accent);
    opacity: .75;
}

.tl-art { position: relative; }
.tl-art svg { display: block; width: 100%; height: auto; }
.tl-art .a { opacity: 0; }
.tl-step.is-lit .tl-art .a { animation: tlPop .7s cubic-bezier(.2,.8,.2,1) both; animation-delay: var(--d, 0s); }
@keyframes tlPop {
    from { opacity: 0; transform: translateY(10px); }
    to   { opacity: 1; transform: none; }
}

.tl-cursor { transform-box: fill-box; transform-origin: center; }
.tl-step.is-lit .tl-cursor { animation: tlPop .7s cubic-bezier(.2,.8,.2,1) both var(--d), tlNudge 3.2s ease-in-out calc(var(--d) + .7s) infinite; }
@keyframes tlNudge {
    0%, 100% { transform: none; }
    45%      { transform: translate(-9px, -7px); }
}

.tl-waves .w { opacity: 0; }
.tl-step.is-lit .tl-waves .w { animation: tlWave 2.6s ease-out infinite; animation-delay: var(--d, 0s); }
@keyframes tlWave {
    0%   { opacity: 0; }
    25%  { opacity: .85; }
    75%  { opacity: 0; }
    100% { opacity: 0; }
}
.tl-live { transform-box: fill-box; transform-origin: center; }
.tl-step.is-lit .tl-live { animation: tlBlink 2.2s ease-in-out infinite; }
@keyframes tlBlink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%      { opacity: .45; transform: scale(.82); }
}

.tl-line { stroke-dasharray: 230; stroke-dashoffset: 230; }
.tl-step.is-lit .tl-line { animation: tlDraw 1.1s cubic-bezier(.3,.7,.3,1) .35s both; }
@keyframes tlDraw { to { stroke-dashoffset: 0; } }

/* ---------- Tarifs ---------- */

.cur {
    display: flex; align-items: center; justify-content: center; gap: .75rem;
    margin: -1rem 0 2.6rem;
}
.cur-label { font-size: .8rem; color: var(--text-dim); }
.cur-switch {
    display: inline-flex;
    padding: 4px;
    border-radius: 999px;
    background: rgba(255,255,255,0.045);
    border: 1px solid rgba(255,255,255,0.09);
}
.cur-switch button {
    font-family: inherit; font-size: .82rem; font-weight: 700;
    letter-spacing: .06em;
    padding: .42rem 1.05rem;
    border: 0; border-radius: 999px;
    background: transparent; color: var(--text-dim);
    cursor: pointer;
    transition: background .3s ease, color .3s ease;
}
.cur-switch button:hover { color: var(--text); }
.cur-switch button.is-on { background: var(--accent); color: #0A0F00; }
.cur-switch button:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }

.pr-head {
    display: flex; align-items: baseline; justify-content: space-between;
    flex-wrap: wrap; gap: .5rem 1.2rem;
    margin: 3.4rem 0 1.2rem;
    padding-bottom: .9rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.pr-head:first-of-type { margin-top: 0; }
.pr-head h3 { font-size: clamp(1.05rem, 1.6vw, 1.25rem); }
.pr-head span { font-size: .84rem; color: var(--text-dim); }

.amt { font-family: Unbounded, sans-serif; font-weight: 700; letter-spacing: -0.02em; }

/* Formules de création */
.pk-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.pk {
    position: relative;
    display: flex; flex-direction: column;
    padding: 1.8rem 1.6rem 1.6rem;
    border-radius: 28px;
    background: linear-gradient(165deg, rgba(255,255,255,0.05) 0%, rgba(255,255,255,0.015) 55%, rgba(255,255,255,0.03) 100%);
    border: 1px solid rgba(255,255,255,0.09);
    box-shadow: 0 24px 60px -40px rgba(0,0,0,0.8), inset 0 1px 0 rgba(255,255,255,0.05);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}
.pk:hover { transform: translateY(-5px); border-color: rgba(255,255,255,0.16); }
.pk-star {
    border-color: rgba(185,255,43,0.34);
    background: linear-gradient(165deg, rgba(185,255,43,0.08) 0%, rgba(255,255,255,0.02) 46%, rgba(255,255,255,0.03) 100%);
    box-shadow: 0 30px 70px -40px rgba(0,0,0,0.85), 0 0 60px -30px rgba(185,255,43,0.4), inset 0 1px 0 rgba(255,255,255,0.07);
}
.pk-badge {
    position: absolute; top: 1.15rem; right: 1.15rem;
    font-size: .64rem; font-weight: 800;
    letter-spacing: .12em; text-transform: uppercase;
    color: #0A0F00; background: var(--accent);
    padding: .28rem .6rem; border-radius: 999px;
}
.pk-top { display: flex; flex-direction: column; gap: .25rem; min-height: 3.5rem; }
.pk-star .pk-top { padding-right: 6.5rem; }
.pk-name { font-family: Unbounded, sans-serif; font-weight: 600; font-size: 1.15rem; letter-spacing: -0.01em; }
.pk-tagline { font-size: .8rem; color: var(--text-dim); }
.pk-price { display: flex; align-items: baseline; gap: .45rem; margin: 1.05rem 0 .2rem; }
.pk-from { font-size: .84rem; color: var(--text-dim); }
.pk-price .amt { font-size: clamp(1.6rem, 2.5vw, 2.05rem); }
.pk-desc { font-size: .9rem; margin-top: .55rem; }
.pk-feat { list-style: none; display: flex; flex-direction: column; gap: .58rem; margin: 1.25rem 0 1.4rem; padding-top: 1.25rem; border-top: 1px solid rgba(255,255,255,0.07); }
.pk-feat li {
    position: relative;
    padding-left: 1.6rem;
    font-size: .875rem; line-height: 1.45;
    color: var(--text-mute);
}
.pk-feat li::before {
    content: '';
    position: absolute; left: 0; top: .32em;
    width: 15px; height: 15px;
    background: currentColor; color: var(--accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M9 16.17 4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/%3E%3C/svg%3E") center/contain no-repeat;
}
.pk-feat em { font-style: normal; font-weight: 700; color: var(--accent-2); }
.pk-foot { margin-top: auto; display: flex; flex-direction: column; gap: .95rem; }
.pk-fit { font-size: .8rem; color: var(--text-dim); line-height: 1.5; }
.pk-fit b {
    display: block; margin-bottom: .15rem;
    font-size: .64rem; font-weight: 800;
    letter-spacing: .13em; text-transform: uppercase;
    color: var(--accent); opacity: .75;
}
.pk-foot .btn { width: 100%; }

/* Abonnements */
.sub-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.1rem; }
.sub {
    position: relative;
    display: flex; flex-direction: column;
    padding: 1.5rem 1.4rem 1.4rem;
    border-radius: 24px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    transition: transform .45s cubic-bezier(.2,.8,.2,1), border-color .35s ease;
}
.sub:hover { transform: translateY(-4px); border-color: rgba(255,255,255,0.15); }
.sub-star { border-color: rgba(185,255,43,0.3); background: linear-gradient(170deg, rgba(185,255,43,0.06), rgba(255,255,255,0.02) 60%); }
.sub-top { display: flex; flex-direction: column; gap: .3rem; }
.sub-star .sub-name { padding-right: 6rem; }
.sub-name { font-size: .74rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--accent); }
.sub-top .amt { font-size: 1.5rem; }
.sub > p { font-size: .86rem; margin-top: .7rem; }
.sub > p em { font-style: normal; font-weight: 700; color: var(--text); }
.sub ul { list-style: none; display: flex; flex-direction: column; gap: .45rem; margin: 1rem 0 1.3rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.07); }
.sub li { font-size: .84rem; color: var(--text-mute); padding-left: .95rem; position: relative; line-height: 1.45; }
.sub li::before { content: ''; position: absolute; left: 0; top: .58em; width: 4px; height: 4px; border-radius: 50%; background: rgba(185,255,43,.55); }
.sub li:first-child { color: var(--text-dim); font-weight: 700; }
.sub .btn { width: 100%; margin-top: auto; padding: .75rem 1rem; font-size: .86rem; }

/* À la carte */
.opt {
    display: grid; grid-template-columns: 1fr 1fr;
    gap: .1rem 3rem;
    padding: 1.7rem 1.8rem 1.5rem;
    border-radius: 26px;
    background: rgba(255,255,255,0.025);
    border: 1px solid rgba(255,255,255,0.08);
}
.opt-list { list-style: none; }
.opt-list li {
    display: flex; align-items: baseline; gap: .5rem;
    padding: .62rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}
.opt-list li:last-child { border-bottom: 0; }
.opt-name { font-size: .89rem; color: var(--text-mute); }
.opt-list i { flex: 1; height: 0; border-bottom: 1px dotted rgba(255,255,255,0.16); }
.opt-list .amt { font-size: .92rem; white-space: nowrap; color: var(--text); }
.opt-note {
    grid-column: 1 / -1;
    margin-top: 1.1rem; padding-top: 1rem;
    border-top: 1px solid rgba(255,255,255,0.07);
    font-size: .84rem; color: var(--text-dim);
}
.opt-note b { color: var(--accent); }

/* Conditions */
.terms {
    display: grid; grid-template-columns: .9fr 1.1fr; gap: 1.1rem;
    margin-top: 1.1rem;
}
.terms-pay {
    display: flex; flex-direction: column;
    padding: 1.6rem 1.5rem;
    border-radius: 26px;
    background: linear-gradient(165deg, rgba(149,106,229,0.12), rgba(62,123,255,0.05));
    border: 1px solid rgba(255,255,255,0.11);
}
.terms-title { font-size: .68rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--text-dim); }
.terms-steps { display: flex; flex-direction: column; gap: .55rem; margin: 1.1rem 0 1.2rem; }
.terms-steps span {
    display: flex; align-items: baseline; gap: .7rem;
    font-size: .86rem; color: var(--text-mute);
}
.terms-steps b {
    font-family: Unbounded, sans-serif; font-weight: 700; font-size: 1.05rem;
    min-width: 3.1rem;
    background: linear-gradient(120deg, #B9FF2B, #76C2D0);
    -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.terms-pay p { margin-top: auto; font-size: .82rem; color: var(--text-dim); padding-top: 1rem; border-top: 1px solid rgba(255,255,255,0.09); }

.terms-list { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }
.terms-list li {
    padding: 1.2rem 1.15rem;
    border-radius: 20px;
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(255,255,255,0.07);
}
.terms-list svg { width: 19px; height: 19px; color: var(--accent); margin-bottom: .5rem; }
.terms-list b { display: block; font-family: Unbounded, sans-serif; font-weight: 600; font-size: .85rem; letter-spacing: -0.01em; margin-bottom: .3rem; }
.terms-list span { font-size: .8rem; color: var(--text-dim); line-height: 1.5; }

.note { text-align: center; margin-top: 1.4rem; font-size: .86rem; color: var(--text-dim); }

.cta-box {
    position: relative;
    background: linear-gradient(160deg, rgba(149,106,229,.12), rgba(62,123,255,.05) 55%, rgba(185,255,43,.04));
    border: 1px solid var(--border-2);
    border-radius: 40px;
    padding: clamp(1.6rem, 4vw, 3.2rem);
    overflow: hidden;
    isolation: isolate;
}
.cta-glow {
    position: absolute;
    z-index: 0;
    top: -45%; left: 55%; right: -20%;
    height: 90%;
    pointer-events: none;
    background: radial-gradient(50% 55% at 50% 50%, rgba(185,255,43,.16), transparent 70%);
    filter: blur(24px);
}
.cta-grid { position: relative; z-index: 2; display: grid; grid-template-columns: .95fr 1.05fr; gap: clamp(1.8rem, 3.5vw, 3rem); }
.cta-left h2 { margin: 1.15rem 0 .9rem; }
.cta-left > p { font-size: .95rem; }

.steps-next { list-style: none; display: flex; flex-direction: column; gap: 1rem; margin: 1.8rem 0; }
.steps-next li { display: flex; align-items: flex-start; gap: .85rem; }
.steps-next b {
    flex: none;
    width: 26px; height: 26px;
    display: grid; place-items: center;
    border-radius: 50%;
    font-family: Unbounded, sans-serif; font-size: .72rem; font-weight: 700;
    color: var(--accent);
    background: rgba(185,255,43,.1);
    border: 1px solid rgba(185,255,43,.3);
}
.steps-next span { display: block; font-size: .85rem; color: var(--text-dim); line-height: 1.5; }
.steps-next strong { display: block; font-weight: 700; font-size: .9rem; color: var(--text); margin-bottom: .1rem; }

.cta-reach { padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.09); }
.contact-line { display: flex; align-items: center; gap: .65rem; margin-top: .9rem; color: var(--text-mute); font-size: .9rem; }
.contact-line svg { width: 18px; height: 18px; color: var(--accent); flex-shrink: 0; }
a.contact-line:hover span { color: var(--accent); }
.cta-privacy { margin-top: 1.5rem; font-size: .78rem; color: var(--text-dim); line-height: 1.5; }

/* Formulaire */
.fld { margin-bottom: 1.25rem; }
.fld-label {
    display: block; margin-bottom: .6rem;
    font-size: .82rem; font-weight: 600; color: var(--text-mute);
}
.fld-label em {
    font-style: normal; font-weight: 500;
    font-size: .74rem; color: var(--text-dim);
    margin-left: .35rem;
}
.chips { display: flex; flex-wrap: wrap; gap: .45rem; }
.chip {
    font-family: inherit;
    font-size: .82rem; font-weight: 600;
    color: var(--text-mute);
    padding: .48rem .85rem;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    cursor: pointer;
    transition: background .25s ease, border-color .25s ease, color .25s ease, transform .25s ease;
}
.chip:hover { background: rgba(255,255,255,0.08); color: var(--text); }
.chip:focus-visible { outline: 2px solid var(--accent); outline-offset: 2px; }
.chip.is-on {
    background: rgba(185,255,43,.14);
    border-color: rgba(185,255,43,.5);
    color: var(--accent-2);
}
.chip.is-on::before { content: '✓'; margin-right: .35rem; font-weight: 800; }

form .field { margin-bottom: 1rem; }
form label { display: block; font-size: .82rem; font-weight: 600; margin-bottom: .4rem; color: var(--text-mute); }
form label i { font-style: normal; color: var(--accent); }
form input, form textarea, form select {
    width: 100%; padding: .88rem 1.05rem; font-family: inherit; font-size: .95rem;
    background: rgba(255,255,255,.04); border: 1px solid var(--border); border-radius: 14px;
    color: var(--text);
    transition: border-color .25s ease, background .25s ease, box-shadow .25s ease;
}
form input::placeholder, form textarea::placeholder { color: rgba(236,239,255,0.3); }
form input:focus, form textarea:focus, form select:focus {
    outline: none; border-color: var(--accent); background: rgba(255,255,255,.06);
    box-shadow: 0 0 0 3px rgba(185,255,43,.12);
}
form input.is-bad, form textarea.is-bad { border-color: rgba(245,130,155,.6); }
form textarea { min-height: 110px; resize: vertical; }
form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.hp { position: absolute; left: -9999px; opacity: 0; }
.submit-btn { width: 100%; margin-top: .5rem; }
.submit-btn:disabled { opacity: .7; cursor: progress; }
.form-foot { margin-top: .8rem; text-align: center; font-size: .76rem; color: var(--text-dim); }
.form-msg { margin-top: 1rem; padding: .85rem 1rem; border-radius: 14px; font-size: .9rem; display: none; }
.form-msg.show { display: block; }
.form-msg.success { background: rgba(185,255,43,.1); border: 1px solid rgba(185,255,43,.3); color: var(--accent-2); }
.form-msg.error { background: rgba(245,130,155,.1); border: 1px solid rgba(245,130,155,.3); color: #F5829B; }

footer {
    position: relative;
    padding: clamp(2.8rem, 5vw, 4rem) 0 2.2rem;
    border-top: 1px solid var(--border);
    background: radial-gradient(70% 100% at 50% 0%, rgba(185,255,43,0.035), transparent 62%);
}
footer::before {
    content: '';
    position: absolute; top: -1px; left: 50%;
    transform: translateX(-50%);
    width: min(680px, 70vw); height: 1px;
    background: linear-gradient(90deg, transparent, rgba(185,255,43,0.5), rgba(118,194,208,0.35), rgba(149,106,229,0.45), transparent);
}

.ft-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.3fr;
    gap: clamp(1.6rem, 3vw, 2.8rem);
    padding-bottom: 2.4rem;
}

.ft-brand .brand { margin-bottom: 1.1rem; }
.ft-brand p { font-size: .88rem; max-width: 34ch; line-height: 1.6; }
.ft-status {
    display: inline-flex; align-items: center; gap: .5rem;
    margin-top: 1.2rem;
    padding: .38rem .8rem;
    border-radius: 999px;
    font-size: .76rem; font-weight: 600;
    color: var(--accent-2);
    background: rgba(185,255,43,0.07);
    border: 1px solid rgba(185,255,43,0.24);
}
.ft-status i {
    position: relative;
    width: 6px; height: 6px; border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 8px rgba(185,255,43,0.7);
}
.ft-status i::after {
    content: '';
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 1px solid rgba(185,255,43,.5);
    animation: heroPing 2.6s cubic-bezier(.2,.7,.3,1) infinite;
}
.ft-mail {
    display: block;
    margin-top: 1.1rem;
    font-family: Unbounded, sans-serif;
    font-size: .92rem; font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text);
    transition: color .25s ease;
}
.ft-mail:hover { color: var(--accent); }

.ft-col { display: flex; flex-direction: column; align-items: flex-start; gap: .55rem; }
.ft-col h3 {
    margin-bottom: .35rem;
    font-family: Manrope, sans-serif;
    font-size: .68rem; font-weight: 800;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--text-dim);
}
.ft-col a {
    font-size: .88rem;
    color: var(--text-mute);
    transition: color .25s ease, transform .25s ease;
}
.ft-col a:hover { color: var(--accent); transform: translateX(3px); }

.ft-zone p { font-size: .84rem; line-height: 1.75; color: var(--text-mute); }
.ft-zone-note { font-size: .78rem; color: var(--text-dim); margin-top: .3rem; }

.ft-bottom {
    display: flex; align-items: center; justify-content: space-between;
    flex-wrap: wrap; gap: .9rem 1.6rem;
    padding-top: 1.6rem;
    border-top: 1px solid rgba(255,255,255,0.07);
}
.ft-left { display: flex; align-items: baseline; flex-wrap: wrap; gap: .55rem; }
.ft-copy { font-size: .8rem; color: var(--text-dim); }
.ft-dot { font-size: .8rem; color: var(--text-dim); }
.ft-legal { display: flex; align-items: center; flex-wrap: wrap; gap: 1.3rem; }
.ft-legal a { font-size: .8rem; color: var(--text-dim); transition: color .25s ease; }
.ft-legal a:hover { color: var(--accent); }
.ft-up span { display: inline-block; transition: transform .25s ease; }

/* Signature — même mécanique que celle livrée aux sites clients :
   « Studio » se transforme en tag exact du logo au survol. */
.cu-sig {
    display: inline-flex; align-items: baseline; flex-wrap: wrap; gap: .32em;
    text-decoration: none; font-size: .8rem; color: var(--text-dim);
}
.cu-sig:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; border-radius: 4px; }
.cu-sig-brand, .cu-sig-studio {
    font-family: Manrope, system-ui, sans-serif;
    font-weight: 800;
    color: var(--text);
}
.cu-sig-studio {
    display: inline-block;
    border-radius: .5em;
    padding: .18em .1em;
    margin: -.18em -.1em;
    transition:
        background-color .38s cubic-bezier(.2,.8,.2,1),
        color .3s ease,
        padding .38s cubic-bezier(.2,.8,.2,1),
        margin .38s cubic-bezier(.2,.8,.2,1),
        transform .38s cubic-bezier(.34,1.56,.64,1);
}
.cu-sig:hover .cu-sig-studio {
    font-family: Unbounded, sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    font-size: .92em;
    color: #0A0F00;
    background: var(--accent);
    padding: .32em .58em;
    margin: -.18em 0;
    transform: translateY(-0.04em) scale(1.015);
    box-shadow: 0 6px 16px -6px rgba(185,255,43,.55);
}
.ft-up:hover span { transform: translateY(-3px); }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .nav-links { display: none; }
    .menu-toggle { display: flex; }
    .nav-cta .btn-ghost { display: none; }
    .offers { grid-template-columns: 1fr; }
    .pk-grid, .sub-grid { grid-template-columns: 1fr; }
    .opt { grid-template-columns: 1fr; gap: 0 3rem; padding: 1.4rem 1.4rem 1.2rem; }
    .terms { grid-template-columns: 1fr; }
    .cta-grid { grid-template-columns: 1fr; }
    .ft-top { grid-template-columns: 1fr 1fr; gap: 2rem 1.6rem; }
    .ft-brand { grid-column: 1 / -1; }
    .tl-card { grid-template-columns: 1fr; gap: 1.1rem; }
    .tl-art { max-width: 300px; }
    .showcase { grid-template-columns: 1fr; gap: 1.1rem; }
    .sc-proof { grid-template-columns: 1fr 1fr; gap: 1.3rem .9rem; }
}
@media (max-width: 620px) {
    .sc-proof, form .row { grid-template-columns: 1fr; }
    .terms-list { grid-template-columns: 1fr; }
    .pr-head { margin-top: 2.6rem; }
    .pk { padding: 1.5rem 1.25rem 1.3rem; border-radius: 24px; }
    .pk-star .pk-top, .sub-star .sub-name { padding-right: 5.5rem; }
    .pk-top { min-height: 0; }
    .cur { margin-bottom: 2rem; }
    .ft-top { grid-template-columns: 1fr; gap: 1.9rem; padding-bottom: 1.9rem; }
    .ft-bottom { flex-direction: column; align-items: flex-start; }
    .ft-legal { gap: 1rem; }
    .opt-name { font-size: .84rem; }
    .opt-list .amt { font-size: .85rem; }
    .opt-list li { padding: .55rem 0; }
    .tl-step { grid-template-columns: 44px 1fr; gap: .9rem; }
    .tl-node { width: 44px; height: 44px; }
    .tl-node svg { width: 18px; height: 18px; }
    .tl-rail { left: 21px; }
    .tl-card { padding: 1.2rem 1.15rem; border-radius: 22px; }
    .tl-meta { grid-template-columns: 1fr; gap: .7rem; }
    .tl-head { grid-template-columns: auto 1fr; }
    .tl-when { grid-column: 1 / -1; justify-self: start; }
    .nav-cta .btn-primary { display: none; }
    .hero { padding-top: 6rem; padding-bottom: 4rem; }
    .hero h1 { font-size: clamp(1.75rem, 8vw, 2.5rem); margin-top: 1.05rem; }
    .hero-sub { margin-top: 1.15rem; font-size: .97rem; }
    .hero-cta { margin-top: 1.7rem; flex-direction: column; align-items: stretch; }
    .hero-cta .btn { width: 100%; }
    .hero-trust { margin-top: 1.7rem; gap: .6rem; flex-direction: column; align-items: center; font-size: .8rem; }
    .scroll-hint { display: none; }
    .sc-stage { border-radius: 24px; padding: .7rem; }
    .sc-url { max-width: 52%; }
    .sc-tab { padding: .85rem .95rem .9rem; border-radius: 18px; }
    .sc-tab-title { font-size: .88rem; }
}

@media (prefers-reduced-motion: reduce) {
    .reveal { opacity: 1; transform: none; }
    html { scroll-behavior: auto; }
    .scroll-hint .mouse::after { animation: none; opacity: 1; }
    .offer { transition: none; }
    .offer:hover { transform: none; }
    .sc-tab, .sc-scene, .sc-tab-body, .sc-glow { transition: none; }
    .sc-scene .p, .sc-scene.is-active .p { opacity: 1; animation: none; }
    .sc-ring, .sc-scene-3.is-active .sc-ring { animation: none; stroke-dashoffset: calc(289 - var(--val)); }
    .sc-scene-3.is-active .sc-uptime,
    .sc-scene-2.is-active .sc-pulse,
    .sc-scene-4.is-active .sc-wire,
    .sc-scene-4.is-active .sc-brainbar,
    .sc-scene-4.is-active .sc-spark { animation: none; }
    .sc-wire { stroke-dashoffset: 0; opacity: 1; }
    .sc-brainbar { transform: scaleX(.7); }
    .sc-pulse { opacity: 0; }
    .sc-prog { display: none; }
    .tl-node, .tl-card, .tl-card::after, .tl-rail i { transition: none; }
    .tl-art .a, .tl-step.is-lit .tl-art .a { opacity: 1; animation: none; }
    .tl-step.is-lit .tl-cursor,
    .tl-step.is-lit .tl-waves .w,
    .tl-step.is-lit .tl-live { animation: none; }
    .tl-waves .w { opacity: .5; }
    .tl-line, .tl-step.is-lit .tl-line { animation: none; stroke-dashoffset: 0; }
    .hero-badge .dot::after, .btn-sheen::after, .hero-grad { animation: none; }
    .btn-sheen::after { display: none; }
    .cu-sig, .cu-sig * { transition: none !important; }
    .cu-sig:hover .cu-sig-studio { transform: none; }
}

/* ---------- Pages légales ---------- */

.legal-nav {
    position: sticky; top: 0; z-index: 100;
    padding: 1rem 0;
    background: rgba(6,8,24,0.82);
    backdrop-filter: blur(22px);
    border-bottom: 1px solid var(--border);
}
.legal-nav .nav-inner { justify-content: space-between; }
.legal-back { display: inline-flex; align-items: center; gap: .45rem; font-size: .87rem; color: var(--text-mute); }
.legal-back:hover { color: var(--accent); }
.legal-back svg { width: 15px; height: 15px; }

.legal {
    position: relative;
    padding: clamp(3rem, 6vw, 5rem) 0 clamp(3rem, 6vw, 4.5rem);
    background: radial-gradient(70% 45% at 50% 0%, rgba(149,106,229,0.09), transparent 58%);
}
.legal .container { max-width: 820px; }
.legal-head { margin-bottom: 2.6rem; }
.legal-head h1 { font-size: clamp(1.9rem, 4vw, 2.9rem); margin: 1.1rem 0 .9rem; }
.legal-head p { font-size: .95rem; }
.legal-meta { margin-top: 1.1rem; font-size: .82rem; color: var(--text-dim); }

.legal-toc {
    margin-bottom: 2.6rem;
    padding: 1.3rem 1.5rem;
    border-radius: 22px;
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(255,255,255,0.08);
}
.legal-toc b {
    display: block; margin-bottom: .8rem;
    font-size: .66rem; font-weight: 800;
    letter-spacing: .14em; text-transform: uppercase;
    color: var(--text-dim);
}
.legal-toc ol { list-style: none; counter-reset: toc; columns: 2; column-gap: 2rem; }
.legal-toc li { counter-increment: toc; break-inside: avoid; margin-bottom: .45rem; }
.legal-toc a { font-size: .86rem; color: var(--text-mute); }
.legal-toc a::before { content: counter(toc) '. '; color: var(--accent); font-weight: 700; }
.legal-toc a:hover { color: var(--accent); }

.legal-art section { padding: 0; margin-bottom: 2.4rem; scroll-margin-top: 90px; }
.legal-art h2 {
    font-size: clamp(1.1rem, 1.9vw, 1.35rem);
    margin-bottom: .9rem;
    padding-bottom: .6rem;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.legal-art h3 { font-size: .98rem; margin: 1.4rem 0 .5rem; color: var(--text); }
.legal-art p { font-size: .92rem; line-height: 1.75; margin-bottom: .85rem; }
.legal-art ul { list-style: none; margin: .3rem 0 1rem; }
.legal-art ul li {
    position: relative;
    padding-left: 1.1rem;
    font-size: .92rem; line-height: 1.7;
    color: var(--text-mute);
    margin-bottom: .4rem;
}
.legal-art ul li::before {
    content: ''; position: absolute; left: 0; top: .72em;
    width: 4px; height: 4px; border-radius: 50%;
    background: rgba(185,255,43,.6);
}
.legal-art strong { color: var(--text); font-weight: 700; }
.legal-art a:not(.btn) { color: var(--accent); text-decoration: underline; text-underline-offset: 3px; }

.legal-facts {
    list-style: none;
    display: grid; grid-template-columns: repeat(2, 1fr);
    gap: .8rem;
    margin: 1.2rem 0 .5rem;
}
.legal-facts li {
    padding: .9rem 1.05rem;
    border-radius: 16px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    padding-left: 1.05rem;
}
.legal-facts li::before { display: none; }
.legal-facts b {
    display: block; margin-bottom: .18rem;
    font-size: .64rem; font-weight: 800;
    letter-spacing: .13em; text-transform: uppercase;
    color: var(--text-dim);
}
.legal-facts span { font-size: .9rem; color: var(--text); }

.todo {
    display: inline-block;
    padding: .1rem .5rem;
    border-radius: 6px;
    font-size: .84em; font-weight: 700;
    color: #FFD166;
    background: rgba(255,209,102,.12);
    border: 1px dashed rgba(255,209,102,.5);
}

.legal-note {
    margin-top: 2.4rem;
    padding: 1.2rem 1.4rem;
    border-radius: 20px;
    font-size: .86rem; line-height: 1.65;
    color: var(--text-dim);
    background: rgba(255,255,255,0.028);
    border: 1px solid rgba(255,255,255,0.08);
}

@media (max-width: 620px) {
    .legal-toc ol { columns: 1; }
    .legal-facts { grid-template-columns: 1fr; }
}
