/* ============================================================
   Web_Scale — styles.css · v2 «Creative Agency»
   Noir profond teinté violet, glow #8C52FF → #FE5757,
   League Spartan, containers 1400px + bandes full-width.
   ============================================================ */

@font-face
{
    font-family: 'League Spartan';
    src: url('../fonts/LeagueSpartan-Variable.woff2') format('woff2-variations');
    font-weight: 100 900;
    font-style: normal;
    font-display: swap;
}

:root
{
    --bg:       #08060F;
    --bg-2:     #0D0A1A;
    --panel:    #120E22;
    --panel-2:  #18132C;
    --violet:   #8C52FF;
    --coral:    #FE5757;
    --magenta:  #C95CC1;
    --grad:     linear-gradient(100deg, #8C52FF 0%, #C95CC1 50%, #FE5757 100%);
    --text:     #F2EFFA;
    --muted:    #9A93B8;
    --line:     rgba(242, 239, 250, 0.08);
    --line-2:   rgba(140, 82, 255, 0.25);
    --ok:       #4ADE80;

    --font-display: 'League Spartan', 'Segoe UI', system-ui, sans-serif;
    --font-body: system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, sans-serif;

    --container: 1400px;
    --radius: 20px;
    --radius-sm: 14px;
}

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

html
{
    scroll-padding-top: 110px;
}

html.lenis
{
    height: auto;
}

.lenis.lenis-smooth
{
    scroll-behavior: auto !important;
}

body
{
    background: var(--bg);
    color: var(--text);
    font-family: var(--font-body);
    font-size: 1.0625rem;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    overflow-x: clip;
}

img
{
    max-width: 100%;
    display: block;
}

a
{
    color: inherit;
    text-decoration: none;
}

ul
{
    list-style: none;
}

::selection
{
    background: var(--violet);
    color: #fff;
}

/* ---------- Grain ---------- */

body::after
{
    content: '';
    position: fixed;
    inset: -50%;
    width: 200%;
    height: 200%;
    pointer-events: none;
    z-index: 9998;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    animation: grain 9s steps(10) infinite;
}

@keyframes grain
{
    0%, 100% { transform: translate(0, 0); }
    10% { transform: translate(-5%, -8%); }
    30% { transform: translate(4%, -3%); }
    50% { transform: translate(-7%, 6%); }
    70% { transform: translate(6%, 4%); }
    90% { transform: translate(-3%, 7%); }
}

/* ---------- Typo ---------- */

h1, h2, h3, h4
{
    font-family: var(--font-display);
    font-weight: 740;
    line-height: 1.05;
    letter-spacing: -0.025em;
    text-wrap: balance;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.4vw, 3.4rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

.grad-text
{
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.eyebrow
{
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.82rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 0.5rem 1.1rem;
    margin-bottom: 1.4rem;
    background: rgba(18, 14, 34, 0.55);
    backdrop-filter: blur(6px);
}

.eyebrow::before
{
    content: '';
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--grad);
    box-shadow: 0 0 12px var(--coral);
}

.lead
{
    color: var(--muted);
    font-size: clamp(1.08rem, 1.5vw, 1.25rem);
    max-width: 62ch;
}

/* ---------- Structure ---------- */

.container
{
    width: min(var(--container), 92vw);
    margin-inline: auto;
}

section
{
    padding: clamp(5rem, 9vw, 8.5rem) 0;
    position: relative;
}

.section-head
{
    max-width: 820px;
    margin-bottom: clamp(2.5rem, 5vw, 4.5rem);
}

.section-head.center
{
    margin-inline: auto;
    text-align: center;
}

.section-head .lead
{
    margin-top: 1.2rem;
}

.section-head.center .lead
{
    margin-inline: auto;
}

/* ---------- Boutons ---------- */

.btn
{
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-weight: 650;
    font-size: 1.02rem;
    padding: 1.05rem 2rem;
    border-radius: 999px;
    border: 0;
    cursor: pointer;
    overflow: hidden;
    transition: transform 0.22s cubic-bezier(0.34, 1.56, 0.64, 1), box-shadow 0.22s ease, border-color 0.22s ease, background-color 0.22s ease;
}

.btn-primary
{
    background: var(--grad);
    color: #fff;
    box-shadow: 0 14px 38px -14px rgba(254, 87, 87, 0.55), 0 4px 18px -6px rgba(140, 82, 255, 0.5);
}

.btn-primary::after
{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(105deg, transparent 35%, rgba(255, 255, 255, 0.45) 50%, transparent 65%);
    transform: translateX(-110%);
    transition: transform 0.55s ease;
}

.btn-primary:hover
{
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 22px 48px -14px rgba(254, 87, 87, 0.7), 0 6px 24px -6px rgba(140, 82, 255, 0.6);
}

.btn-primary:hover::after
{
    transform: translateX(110%);
}

.btn-ghost
{
    background: rgba(18, 14, 34, 0.5);
    color: var(--text);
    border: 1px solid var(--line);
    backdrop-filter: blur(6px);
}

.btn-ghost:hover
{
    transform: translateY(-3px);
    border-color: var(--line-2);
    background: rgba(140, 82, 255, 0.1);
}

.btn:focus-visible,
a:focus-visible
{
    outline: 3px solid var(--coral);
    outline-offset: 3px;
}

.btn .arr
{
    transition: transform 0.22s ease;
}

.btn:hover .arr
{
    transform: translateX(4px);
}

/* ---------- Curseur custom ---------- */

@media (pointer: fine)
{
    .cursor-dot,
    .cursor-ring
    {
        position: fixed;
        top: 0;
        left: 0;
        pointer-events: none;
        z-index: 9999;
        border-radius: 50%;
        transform: translate(-50%, -50%);
    }

    .cursor-dot
    {
        width: 8px;
        height: 8px;
        background: var(--grad);
    }

    .cursor-ring
    {
        width: 38px;
        height: 38px;
        border: 1.5px solid rgba(140, 82, 255, 0.6);
        transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, opacity 0.25s ease;
    }

    .cursor-ring.is-hover
    {
        width: 64px;
        height: 64px;
        border-color: rgba(254, 87, 87, 0.8);
    }
}

/* ---------- Header ---------- */

.site-header
{
    position: fixed;
    inset: 0 0 auto 0;
    z-index: 100;
    transition: padding 0.3s ease;
}

.header-inner
{
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 84px;
    width: min(var(--container), 94vw);
    margin-inline: auto;
    padding-inline: 0;
    transition: all 0.35s ease;
}

.site-header.is-stuck .header-inner
{
    margin-top: 12px;
    height: 66px;
    width: min(1080px, 94vw);
    padding-inline: 1.4rem;
    background: rgba(13, 10, 26, 0.72);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid var(--line);
    border-radius: 999px;
    box-shadow: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
}

.logo
{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 1.5rem;
    letter-spacing: -0.02em;
}

.logo .dot
{
    color: var(--coral);
}

.main-nav
{
    display: flex;
    align-items: center;
    gap: 2rem;
}

.main-nav > a:not(.btn)
{
    font-family: var(--font-display);
    font-weight: 550;
    font-size: 0.98rem;
    color: var(--muted);
    position: relative;
    transition: color 0.18s ease;
}

.main-nav > a:not(.btn)::after
{
    content: '';
    position: absolute;
    left: 0;
    bottom: -5px;
    height: 2px;
    width: 100%;
    background: var(--grad);
    border-radius: 99px;
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-nav > a:not(.btn):hover::after,
.main-nav > a[aria-current="page"]:not(.btn)::after
{
    transform: scaleX(1);
}

.main-nav > a:not(.btn):hover,
.main-nav > a[aria-current="page"]
{
    color: var(--text);
}

.main-nav .btn
{
    padding: 0.7rem 1.5rem;
    font-size: 0.95rem;
}

.nav-toggle
{
    display: none;
    background: none;
    border: 0;
    cursor: pointer;
    width: 44px;
    height: 44px;
    z-index: 102;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after
{
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text);
    position: relative;
    margin-inline: auto;
    content: '';
}

.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after  { position: absolute; top: 7px; }

/* ---------- Hero ---------- */

.hero
{
    min-height: 100svh;
    display: flex;
    align-items: center;
    padding: 9rem 0 6rem;
    overflow: clip;
}

.hero-canvas
{
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-canvas canvas
{
    width: 100%;
    height: 100%;
    display: block;
}

.hero::before
{
    content: '';
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(60% 50% at 50% 42%, transparent 30%, rgba(8, 6, 15, 0.55) 100%),
        linear-gradient(180deg, rgba(8, 6, 15, 0.5) 0%, transparent 25%, transparent 60%, var(--bg) 98%);
    pointer-events: none;
}

.hero-inner
{
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    margin-inline: auto;
}

.hero h1
{
    margin: 0.4rem 0 1.8rem;
}

.hero h1 .no-sell
{
    display: block;
    color: var(--muted);
    font-weight: 600;
    font-size: 0.46em;
    letter-spacing: -0.01em;
    margin-bottom: 1rem;
}

.strike
{
    position: relative;
    white-space: nowrap;
    color: var(--text);
}

.strike::after
{
    content: '';
    position: absolute;
    left: -3%;
    right: -3%;
    top: 52%;
    height: 0.14em;
    background: var(--coral);
    border-radius: 99px;
    transform: scaleX(0) rotate(-1.5deg);
    transform-origin: left center;
    box-shadow: 0 0 18px rgba(254, 87, 87, 0.7);
}

.underlined
{
    position: relative;
    display: inline-block;
}

.underlined svg
{
    position: absolute;
    left: 0;
    bottom: -0.3em;
    width: 100%;
    height: 0.4em;
    overflow: visible;
}

.underlined svg path
{
    stroke: var(--coral);
    stroke-width: 7;
    fill: none;
    stroke-linecap: round;
    filter: drop-shadow(0 0 8px rgba(254, 87, 87, 0.7));
}

.hero .lead
{
    margin-inline: auto;
}

.hero-ctas
{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.1rem;
    margin-top: 2.6rem;
}

.hero-meta
{
    margin-top: 3rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.8rem 2rem;
    color: var(--muted);
    font-size: 0.96rem;
}

.hero-meta li
{
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-meta .tick
{
    color: var(--ok);
    font-weight: 700;
}

.scroll-hint
{
    position: absolute;
    bottom: 2.2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    width: 26px;
    height: 42px;
    border: 1.5px solid var(--line-2);
    border-radius: 99px;
}

.scroll-hint::after
{
    content: '';
    position: absolute;
    top: 7px;
    left: 50%;
    width: 4px;
    height: 8px;
    margin-left: -2px;
    border-radius: 99px;
    background: var(--grad);
    animation: scrollHint 1.8s ease-in-out infinite;
}

@keyframes scrollHint
{
    0%   { transform: translateY(0); opacity: 1; }
    70%  { transform: translateY(14px); opacity: 0; }
    100% { transform: translateY(0); opacity: 0; }
}

/* ---------- Marquee full-width ---------- */

.marquee
{
    padding: 1.6rem 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    overflow: clip;
    background: var(--bg-2);
    position: relative;
}

.marquee-track
{
    display: flex;
    gap: 3.5rem;
    width: max-content;
    will-change: transform;
    animation: marquee 26s linear infinite;
}

.marquee-track span
{
    font-family: var(--font-display);
    font-weight: 780;
    font-size: clamp(1.6rem, 3.4vw, 2.6rem);
    letter-spacing: -0.02em;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 3.5rem;
}

.marquee-track .hollow
{
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(242, 239, 250, 0.4);
}

.marquee-track .hex-sep
{
    width: 0.7em;
    flex: 0 0 auto;
    opacity: 0.9;
}

@keyframes marquee
{
    to { transform: translateX(-50%); }
}

/* ---------- Manifeste ---------- */

.versus
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
}

.versus-card
{
    border-radius: var(--radius);
    padding: 2.6rem 2.4rem;
    border: 1px solid var(--line);
    background: var(--panel);
    position: relative;
    overflow: hidden;
}

.versus-card.them
{
    border-color: rgba(254, 87, 87, 0.22);
}

.versus-card.us
{
    background:
        radial-gradient(120% 120% at 0% 0%, rgba(140, 82, 255, 0.22), transparent 55%),
        radial-gradient(120% 120% at 100% 100%, rgba(254, 87, 87, 0.16), transparent 55%),
        var(--panel);
    border-color: var(--line-2);
}

.versus-card h3
{
    margin-bottom: 1.3rem;
}

.versus-card li
{
    padding: 0.55rem 0;
    color: var(--muted);
    display: flex;
    gap: 0.7rem;
    font-size: 1.02rem;
}

.versus-card.us li
{
    color: var(--text);
}

.versus-card .mark
{
    flex: 0 0 auto;
    font-weight: 700;
}

.them .mark { color: var(--coral); }
.us .mark   { color: var(--ok); }

/* ---------- Services bento ---------- */

.bento
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.bento-card
{
    --mx: 50%;
    --my: 50%;
    position: relative;
    border-radius: var(--radius);
    border: 1px solid var(--line);
    background: var(--panel);
    padding: 2.2rem 2rem;
    overflow: hidden;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.bento-card::before
{
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(420px circle at var(--mx) var(--my), rgba(140, 82, 255, 0.16), transparent 65%);
    opacity: 0;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.bento-card:hover
{
    border-color: var(--line-2);
    transform: translateY(-4px);
}

.bento-card:hover::before
{
    opacity: 1;
}

.bento-card.wide
{
    grid-column: span 2;
    background:
        radial-gradient(110% 140% at 100% 0%, rgba(140, 82, 255, 0.16), transparent 55%),
        var(--panel);
}

.bento-icon
{
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: grid;
    place-items: center;
    background: linear-gradient(140deg, rgba(140, 82, 255, 0.22), rgba(254, 87, 87, 0.18));
    border: 1px solid var(--line-2);
    margin-bottom: 1.3rem;
    font-size: 1.4rem;
}

.bento-card h3
{
    margin-bottom: 0.6rem;
}

.bento-card p
{
    color: var(--muted);
    font-size: 0.99rem;
}

/* ---------- Showcase devices (pinné) ---------- */

.showcase
{
    background:
        radial-gradient(900px 600px at 70% 30%, rgba(140, 82, 255, 0.14), transparent 60%),
        radial-gradient(700px 500px at 20% 80%, rgba(254, 87, 87, 0.1), transparent 60%),
        var(--bg-2);
    overflow: clip;
}

.showcase-stage
{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(2rem, 5vw, 5rem);
    perspective: 1800px;
    min-height: 70vh;
}

.device-wrap-laptop,
.device-wrap-phone
{
    transform-style: preserve-3d;
    will-change: transform;
}

.device-wrap-laptop { transform: scale(var(--dscale, 1)); }
.device-wrap-phone  { transform: scale(var(--pscale, 0.62)); }

/* surcouches devices.css : écran défilant */

.device .device-screen
{
    overflow: hidden;
    position: relative;
    background: #fff;
}

.device .device-screen img
{
    width: 100%;
    height: auto;
    will-change: transform;
}

.device-glow
{
    position: absolute;
    inset: 10%;
    background: var(--grad);
    filter: blur(90px);
    opacity: 0.25;
    z-index: -1;
    border-radius: 50%;
}

.showcase-caption
{
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    padding-bottom: 1rem;
}

/* ---------- ADN ---------- */

.adn-grid
{
    display: grid;
    grid-template-columns: 420px 1fr;
    gap: clamp(2.5rem, 5vw, 6rem);
    align-items: center;
}

.adn-scene
{
    height: 560px;
    perspective: 1100px;
    display: flex;
    justify-content: center;
    position: relative;
}

.adn-scene::before
{
    content: '';
    position: absolute;
    inset: 15% 20%;
    background: var(--grad);
    filter: blur(110px);
    opacity: 0.18;
    border-radius: 50%;
}

.adn-helix
{
    position: relative;
    width: 230px;
    height: 100%;
    transform-style: preserve-3d;
    will-change: transform;
}

.adn-rung
{
    position: absolute;
    left: 50%;
    width: 180px;
    height: 3px;
    margin-left: -90px;
    transform-style: preserve-3d;
}

.adn-bar
{
    position: absolute;
    inset: 0 16px;
    background: linear-gradient(90deg, rgba(140, 82, 255, 0.6), rgba(254, 87, 87, 0.6));
    border-radius: 99px;
}

.adn-dot
{
    position: absolute;
    top: 50%;
    width: 15px;
    height: 15px;
    border-radius: 50%;
    transform: translateY(-50%);
}

.adn-dot.a { left: 0; background: var(--violet); box-shadow: 0 0 18px rgba(140, 82, 255, 1); }
.adn-dot.b { right: 0; background: var(--coral); box-shadow: 0 0 18px rgba(254, 87, 87, 1); }

.def-card
{
    border-left: 3px solid;
    border-image: var(--grad) 1;
    padding: 0.5rem 0 0.5rem 1.5rem;
    margin: 1.8rem 0 2rem;
}

.def-card .word
{
    font-family: var(--font-display);
    font-weight: 750;
    font-size: 1.7rem;
}

.def-card .nature
{
    color: var(--muted);
    font-style: italic;
    margin-left: 0.6rem;
}

.def-card p
{
    color: var(--muted);
    margin-top: 0.3rem;
}

.adn-points li
{
    display: flex;
    gap: 0.9rem;
    padding: 0.65rem 0;
}

.adn-points .mark
{
    color: var(--coral);
    font-weight: 800;
    font-family: var(--font-display);
}

/* ---------- Process ---------- */

.process-rows
{
    border-top: 1px solid var(--line);
}

.process-row
{
    display: grid;
    grid-template-columns: 180px 1fr 1.4fr;
    gap: 2rem;
    align-items: center;
    padding: 2.6rem 0.5rem;
    border-bottom: 1px solid var(--line);
    position: relative;
    transition: background-color 0.3s ease;
}

.process-row:hover
{
    background: rgba(140, 82, 255, 0.04);
}

.process-num
{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 5vw, 4.2rem);
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(242, 239, 250, 0.35);
    transition: all 0.3s ease;
}

.process-row:hover .process-num
{
    -webkit-text-stroke: 0;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
}

.process-row h3
{
    font-size: clamp(1.4rem, 2.4vw, 2rem);
}

.process-row p
{
    color: var(--muted);
}

/* ---------- Chiffres ---------- */

.numbers
{
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.4rem;
    text-align: center;
}

.number
{
    padding: 2.4rem 1rem;
    border-radius: var(--radius);
    background: var(--panel);
    border: 1px solid var(--line);
}

.number strong
{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(2.6rem, 4.6vw, 3.8rem);
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    display: block;
    line-height: 1;
}

.number span
{
    color: var(--muted);
    font-size: 0.94rem;
    display: block;
    margin-top: 0.8rem;
}

/* ---------- Offres ---------- */

.pricing
{
    display: grid;
    grid-template-columns: 1fr 1.18fr;
    gap: 1.8rem;
    align-items: stretch;
    max-width: 1080px;
    margin-inline: auto;
}

.price-card
{
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.6rem 2.4rem;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: transform 0.25s ease, border-color 0.25s ease;
}

.price-card:hover
{
    transform: translateY(-5px);
    border-color: var(--line-2);
}

.price-card.featured
{
    background:
        radial-gradient(130% 110% at 50% 0%, rgba(140, 82, 255, 0.2), transparent 55%),
        var(--panel-2);
    border: 0;
    z-index: 0;
}

.price-card.featured::before
{
    content: '';
    position: absolute;
    inset: -1.5px;
    border-radius: calc(var(--radius) + 1.5px);
    background: conic-gradient(from var(--bdeg, 0deg), #8C52FF, #C95CC1, #FE5757, #C95CC1, #8C52FF);
    z-index: -1;
    animation: borderSpin 5s linear infinite;
}

@property --bdeg
{
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
}

@keyframes borderSpin
{
    to { --bdeg: 360deg; }
}

.price-card.featured::after
{
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: var(--panel-2);
    z-index: -1;
}

.price-badge
{
    position: absolute;
    top: -15px;
    right: 24px;
    background: var(--grad);
    color: #fff;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 0.8rem;
    letter-spacing: 0.06em;
    padding: 0.4rem 1rem;
    border-radius: 99px;
    box-shadow: 0 8px 20px -8px rgba(254, 87, 87, 0.6);
    z-index: 1;
}

.price-card h3
{
    font-size: 1.4rem;
}

.price-card .tagline
{
    color: var(--muted);
    font-size: 0.98rem;
    margin: 0.5rem 0 1.5rem;
}

.price
{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: 2.7rem;
    line-height: 1.1;
}

.price .per
{
    font-size: 1.05rem;
    font-weight: 550;
    color: var(--muted);
}

.price-alt
{
    margin-top: 0.6rem;
    color: var(--muted);
    font-size: 0.94rem;
}

.price-card ul
{
    margin: 1.6rem 0 2rem;
    flex: 1;
}

.price-card li
{
    padding: 0.45rem 0;
    display: flex;
    gap: 0.65rem;
    font-size: 0.99rem;
}

.price-card li .tick
{
    color: var(--ok);
    font-weight: 700;
}

.forfaits
{
    margin-top: 1.8rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
    max-width: 1080px;
    margin-inline: auto;
}

.note-propriete
{
    max-width: 1080px;
    margin: 2.2rem auto 0;
    padding: 1.5rem 1.8rem;
    border-radius: var(--radius-sm);
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.25);
    font-size: 0.99rem;
}

/* ---------- Audit full-width ---------- */

.audit-band
{
    padding: 0;
}

.audit
{
    background:
        radial-gradient(800px 420px at 88% 50%, rgba(254, 87, 87, 0.18), transparent 65%),
        radial-gradient(700px 420px at 10% 20%, rgba(140, 82, 255, 0.16), transparent 60%),
        var(--bg-2);
    border-block: 1px solid var(--line);
    padding: clamp(3.5rem, 7vw, 6rem) 0;
}

.audit-inner
{
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 2.5rem;
    align-items: center;
}

.audit-inner .btn
{
    justify-self: start;
}

/* ---------- RGPD ---------- */

.rgpd-grid
{
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.rgpd-card
{
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2rem 1.8rem;
    transition: border-color 0.25s ease, transform 0.25s ease;
}

.rgpd-card:hover
{
    border-color: var(--line-2);
    transform: translateY(-4px);
}

.rgpd-card h3
{
    font-size: 1.12rem;
    margin-bottom: 0.6rem;
}

.rgpd-card p
{
    color: var(--muted);
    font-size: 0.96rem;
}

/* ---------- FAQ ---------- */

.faq
{
    max-width: 860px;
    margin-inline: auto;
}

.faq details
{
    border: 1px solid var(--line);
    border-radius: var(--radius-sm);
    margin-bottom: 0.9rem;
    background: var(--panel);
    transition: border-color 0.25s ease;
}

.faq details[open]
{
    border-color: var(--line-2);
}

.faq summary
{
    font-family: var(--font-display);
    font-weight: 650;
    font-size: 1.1rem;
    padding: 1.3rem 3.2rem 1.3rem 1.5rem;
    cursor: pointer;
    list-style: none;
    position: relative;
}

.faq summary::-webkit-details-marker
{
    display: none;
}

.faq summary::after
{
    content: '+';
    position: absolute;
    right: 1.4rem;
    top: 50%;
    transform: translateY(-50%);
    font-size: 1.6rem;
    color: var(--coral);
    transition: transform 0.25s ease;
}

.faq details[open] summary::after
{
    transform: translateY(-50%) rotate(45deg);
}

.faq details p
{
    color: var(--muted);
    padding: 0 1.5rem 1.4rem;
}

/* ---------- Contact ---------- */

.contact-grid
{
    display: grid;
    grid-template-columns: 1fr 1.25fr;
    gap: clamp(2.5rem, 5vw, 5rem);
}

.contact-info li
{
    padding: 0.55rem 0;
    color: var(--muted);
}

.contact-info a
{
    color: var(--text);
    border-bottom: 1px solid var(--coral);
}

.form
{
    display: grid;
    gap: 1.1rem;
    background: var(--panel);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 2.2rem;
}

.form-row
{
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.1rem;
}

.form label
{
    display: grid;
    gap: 0.45rem;
    font-family: var(--font-display);
    font-weight: 550;
    font-size: 0.92rem;
}

.form input,
.form select,
.form textarea
{
    background: var(--bg-2);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 0.9rem 1.05rem;
    color: var(--text);
    font: inherit;
    font-size: 1rem;
    width: 100%;
    transition: border-color 0.2s ease;
}

.form input:focus,
.form select:focus,
.form textarea:focus
{
    outline: 2px solid var(--violet);
    outline-offset: 1px;
    border-color: transparent;
}

.form-status
{
    font-size: 0.95rem;
    min-height: 1.4em;
}

.form-status.ok    { color: var(--ok); }
.form-status.error { color: var(--coral); }

.hp-field
{
    position: absolute;
    left: -9999px;
    opacity: 0;
}

/* ---------- CTA final ---------- */

.final-cta
{
    text-align: center;
    overflow: clip;
}

.final-cta::before
{
    content: '';
    position: absolute;
    left: 50%;
    bottom: -40%;
    width: 1100px;
    height: 700px;
    transform: translateX(-50%);
    background: radial-gradient(closest-side, rgba(140, 82, 255, 0.28), rgba(254, 87, 87, 0.12) 55%, transparent 75%);
    filter: blur(40px);
    pointer-events: none;
}

.final-cta .container
{
    position: relative;
}

.final-cta .btn
{
    margin-top: 2.2rem;
}

/* ---------- Footer ---------- */

.site-footer
{
    background: #060410;
    border-top: 1px solid var(--line);
    padding: 4.5rem 0 0;
    color: var(--muted);
    font-size: 0.96rem;
    overflow: clip;
}

.footer-grid
{
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: 2.2rem;
    margin-bottom: 3rem;
}

.footer-grid h4
{
    color: var(--text);
    font-size: 0.95rem;
    margin-bottom: 1rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.footer-grid li
{
    padding: 0.3rem 0;
}

.footer-grid a
{
    transition: color 0.15s ease;
}

.footer-grid a:hover
{
    color: var(--text);
}

.footer-bottom
{
    border-top: 1px solid var(--line);
    padding: 1.6rem 0;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: space-between;
    font-size: 0.85rem;
}

.footer-giant
{
    font-family: var(--font-display);
    font-weight: 800;
    font-size: clamp(4rem, 13.5vw, 13.5rem);
    line-height: 0.9;
    letter-spacing: -0.03em;
    text-align: center;
    color: transparent;
    -webkit-text-stroke: 1.5px rgba(242, 239, 250, 0.18);
    user-select: none;
    margin-bottom: -0.12em;
    transition: all 0.5s ease;
    cursor: default;
}

.footer-giant:hover
{
    -webkit-text-stroke: 0;
    background: var(--grad);
    -webkit-background-clip: text;
    background-clip: text;
}

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

.page-content
{
    padding-top: 10rem;
    max-width: 840px;
}

.page-content h1
{
    margin-bottom: 1.6rem;
    font-size: clamp(2.2rem, 4.5vw, 3.4rem);
}

.page-content h2
{
    font-size: 1.5rem;
    margin: 2.4rem 0 0.9rem;
}

.page-content p,
.page-content li
{
    color: var(--muted);
    margin-bottom: 0.85rem;
}

.page-content ul
{
    list-style: disc;
    padding-left: 1.4rem;
}

.page-content a
{
    color: var(--text);
    border-bottom: 1px solid var(--coral);
}

/* ---------- Reveal (état initial appliqué seulement si JS actif) ---------- */

html.js [data-reveal]
{
    opacity: 0.001;
}

/* ---------- Animations CSS autonomes : barré + soulignement ---------- */

.strike::after
{
    animation: strikeIn 0.65s cubic-bezier(0.7, 0, 0.3, 1) 1.4s forwards;
}

@keyframes strikeIn
{
    to { transform: scaleX(1) rotate(-1.5deg); }
}

.underlined svg path
{
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: drawLine 0.9s ease 1.9s forwards;
}

@keyframes drawLine
{
    to { stroke-dashoffset: 0; }
}

/* ---------- Responsive ---------- */

@media (max-width: 1080px)
{
    .bento
    {
        grid-template-columns: 1fr 1fr;
    }

    .bento-card.wide
    {
        grid-column: span 2;
    }
}

@media (max-width: 920px)
{
    .versus,
    .pricing,
    .forfaits,
    .audit-inner,
    .contact-grid,
    .adn-grid
    {
        grid-template-columns: 1fr;
    }

    .numbers
    {
        grid-template-columns: 1fr 1fr;
    }

    .rgpd-grid
    {
        grid-template-columns: 1fr;
    }

    .footer-grid
    {
        grid-template-columns: 1fr 1fr;
    }

    .adn-scene
    {
        height: 400px;
        order: 2;
    }

    .process-row
    {
        grid-template-columns: 90px 1fr;
    }

    .process-row p
    {
        grid-column: 2;
    }

    .showcase-stage
    {
        flex-direction: column;
        min-height: auto;
        gap: 3rem;
    }
}

@media (max-width: 680px)
{
    .main-nav
    {
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 1.4rem;
        background: rgba(8, 6, 15, 0.97);
        display: none;
        z-index: 101;
    }

    .main-nav.open
    {
        display: flex;
    }

    .main-nav > a:not(.btn)
    {
        font-size: 1.5rem;
    }

    .nav-toggle
    {
        display: block;
    }

    .numbers,
    .form-row
    {
        grid-template-columns: 1fr;
    }

    .bento
    {
        grid-template-columns: 1fr;
    }

    .bento-card.wide
    {
        grid-column: auto;
    }

    .hero
    {
        padding-top: 7.5rem;
    }

    .site-header.is-stuck .header-inner
    {
        width: 94vw;
    }
}

/* ---------- Mouvement réduit ---------- */

@media (prefers-reduced-motion: reduce)
{
    *,
    *::before,
    *::after
    {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    body::after
    {
        animation: none;
    }

    [data-reveal]
    {
        opacity: 1 !important;
        transform: none !important;
    }

    .strike::after
    {
        transform: scaleX(1) rotate(-1.5deg);
    }

    .underlined svg path
    {
        stroke-dashoffset: 0;
    }
}
