/* ========== SCENE 2 ONLY (sv2) ========== */
.sv2{
    background: #070A12;
}

.sv2-wrap{
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    padding: 0; /* on veut full-bleed */
}

/* steps */
.sv2-step{
    position: absolute;
    inset: 0;
    opacity: 0;
    pointer-events: none;
}

/* =======================
   STEP 1 : 3 BANDS (stair)
   ======================= */
/* ===== SCENE 2 / STEP 1 : 3 bandes FULL SCREEN ===== */
.sv2-step--stair{
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
}

/* IMPORTANT: on casse l'ancien "stair absolute" */
.sv2-step--stair .sv2-rect{
    position: relative !important;
    top: auto !important;
    left: auto !important;
    right: auto !important;
    bottom: auto !important;

    width: 100%;
    height: 33.333%;
    margin: 0;
    padding: 0;

    border: 0;
    border-radius: 0;
    box-shadow: none;
    backdrop-filter: none;

    display: flex;
    align-items: center;
    overflow: hidden;
}

/* 3 teintes nettes (tu peux changer les valeurs) */
.sv2-step--stair .sv2-rect--top{ background: rgba(76,195,189,.16); }
.sv2-step--stair .sv2-rect--mid{ background: rgba(255,152,106,.16); }
.sv2-step--stair .sv2-rect--bot{ background: rgba(146,72,122,.16); }

/* Contenu texte */
.sv2-rect__inner{
    width: min(720px, calc(100% - 48px));
    padding: clamp(18px, 4vw, 56px);
    display: flex;
    flex-direction: column;
    justify-content:  center;
}
.t1{
    align-items: start;
}
.t2{
    align-items: center;
}
.t3{
    align-items: end;
}

/* Align texte : gauche / centre / droite + léger décalage */
.sv2-rect--top{ justify-content: flex-start; }
.sv2-rect--top .sv2-rect__inner{ text-align: left; transform: translateX(14px); }

.sv2-rect--mid{ justify-content: center; }
.sv2-rect--mid .sv2-rect__inner{ text-align: center; transform: translateY(-6px); }

.sv2-rect--bot{ justify-content: flex-end; }
.sv2-rect--bot .sv2-rect__inner{ text-align: right; transform: translateX(-14px); }

/* Typo */
/* =========================
   TEXT ONLY OVERRIDES (SAFE)
   ========================= */

/* Base */
.sv2-rect__kicker{
    font-size: 12px;
    letter-spacing: .18em;          /* + premium */
    text-transform: uppercase;
    opacity: .72;
    margin-bottom: 10px;
    font-weight: 700;

    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.sv2-rect__kicker::before{
    content:"";
    width: 9px;
    height: 9px;
    border-radius: 999px;
    background: rgba(255,255,255,.85);
    opacity: .55;
}

.sv2-rect__title{
    font-weight: 950;
    letter-spacing: -0.035em;
    margin: 0 0 12px;

    /* plus “hero” */
    font-size: clamp(28px, 3.8vw, 56px);

    /* dégradé par défaut (fallback) */
    background: linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.70));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* micro relief */
    text-shadow: 0 18px 70px rgba(0,0,0,.45);
}

.sv2-rect__sub{
    opacity: .80;
    line-height: 1.65;
    font-size: clamp(14px, 1.15vw, 16px);
    max-width: 62ch;
}

/* Dégradés TITRE par bande (sans toucher aux carrés) */
.sv2-rect--top .sv2-rect__title{
    background: linear-gradient(90deg, rgba(76,195,189,.98), rgba(255,255,255,.92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.sv2-rect--mid .sv2-rect__title{
    background: linear-gradient(90deg, rgba(255,152,106,.98), rgba(255,255,255,.92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}
.sv2-rect--bot .sv2-rect__title{
    background: linear-gradient(90deg, rgba(146,72,122,.98), rgba(255,255,255,.92));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

/* Dot kicker par bande */
.sv2-rect--top .sv2-rect__kicker::before{ background: rgba(76,195,189,.95); opacity:.85; }
.sv2-rect--mid .sv2-rect__kicker::before{ background: rgba(255,152,106,.95); opacity:.85; }
.sv2-rect--bot .sv2-rect__kicker::before{ background: rgba(146,72,122,.95); opacity:.85; }

/* Mobile: garder lisible sans changer le layout */
@media (max-width: 720px){
    .sv2-rect__title{ font-size: clamp(24px, 7.2vw, 42px); }
    .sv2-rect__sub{ max-width: 44ch; }
}


/* =======================
   STEP 2 : DROP (si tu gardes)
   ======================= */
/*bull*/
.sv2-blob{
    position: absolute;
    top: -18vmax;
    right: -18vmax;
    width: 34vmax;
    height: 34vmax;
    border-radius: 999px;
    transform: scale(0);
    opacity: 0;
    pointer-events: none;
    z-index: 50; /* au-dessus des steps */

    background: radial-gradient(circle at 30% 30%,
    rgba(255,255,255,.18),
    rgba(255,152,106,.22) 35%,
    rgba(76,195,189,.18) 70%,
    rgba(146,72,122,.14) 100%
    );
    filter: blur(0px);
}

.sv2-drop{
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: min(1200px, calc(100vw - 28px));
    height: clamp(220px, 34vh, 420px); /* grosse carte/bande */
    border-radius: 26px;
    padding: 28px 26px;
    border: none;
    background: rgba(255,255,255,.06);
    box-shadow: 0 45px 140px rgba(0,0,0,.65);
    backdrop-filter: blur(10px);
    color: rgba(255,255,255,.92);
    overflow: hidden;
}

.sv2-drop::before{
    content:"";
    position:absolute;
    inset:0;
    background:
            radial-gradient(900px 420px at 20% 30%, rgba(255,255,255,.10), transparent 55%),
            radial-gradient(700px 360px at 85% 60%, rgba(0,0,0,.25), transparent 60%);
    opacity:.85;
    pointer-events:none;
}

.sv2-drop > *{ position: relative; z-index: 1; }

.sv2-drop__kicker{
    display: inline-flex;
    gap: 10px;
    padding: 8px 12px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.14);
    background: rgba(255,255,255,.06);
    font-size: 12px;
    opacity: .9;
    margin-bottom: 12px;
}

.sv2-drop__title{
    font-size: clamp(30px, 4.2vw, 56px);
    line-height: 1.03;
    letter-spacing: -0.03em;
    font-weight: 950;
    margin: 0 0 12px;
}

.sv2-grad{
    background: linear-gradient(90deg, rgba(255,255,255,.95), rgba(76,195,189,.95));
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.sv2-drop__sub{
    opacity: .75;
    font-size: 14px;
    line-height: 1.55;
}

/* TEXTE */

.sv2-topNote{
    position: absolute;                /* garde absolute */
    left: 50%;
    transform: translateX(-50%);       /* ✅ centre horizontal */
    top: min(220px, 28vh);

    width: min(1100px, calc(100vw - 112px));
    padding-left: 18px;

    z-index: 300;
    pointer-events: none;
    opacity: 0;
}


.sv2-topNote::before{
    content:"";
    position:absolute;
    left: 0;
    top: 8px;
    bottom: 10px;
    width: 2px;
    border-radius: 2px;
    background: linear-gradient(
            180deg,
            rgba(255,152,106,.85),
            rgba(76,195,189,.75),
            rgba(146,72,122,.45)
    );
    opacity: .9;
}

.sv2-topNote__kicker{
    font-size: clamp(34px, 3.2vw, 56px);
    font-weight: 980;
    letter-spacing: -0.03em;
    margin-bottom: 18px;
    line-height: 1.02;

    /* ✅ gradient premium */
    background: linear-gradient(90deg,
    rgba(255,255,255,.98) 0%,
    rgba(255,152,106,.92) 35%,
    rgba(76,195,189,.92) 70%,
    rgba(255,255,255,.92) 100%
    );
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;

    /* ✅ glow discret (pas néon) */
    filter: drop-shadow(0 18px 50px rgba(0,0,0,.35));
}



.sv2-topNote__lines{
    display: flex;
    flex-direction: column;
    gap: 10px;
}

/* ✅ toutes les phrases = même taille */
.sv2-topLine{
    font-weight: 450;
    letter-spacing: -0.01em;
    line-height: 1.22;                    /* ✅ plus lisible */
    font-size: clamp(22px, 2.4vw, 38px);  /* ✅ gros mais pas “pavé” */
    color: rgba(255,255,255,.92);
    margin: 0;
    padding: 8px 0 16px;
    text-shadow: 0 18px 60px rgba(0,0,0,.35);
}

.sv2-topLine + .sv2-topLine{
    border-top: 1px solid rgba(255,255,255,.10); /* ✅ séparation fine */
    padding-top: 18px;
}

.sv2-topLine{
    text-shadow: 0 20px 60px rgba(0,0,0,.35);
}


@media (max-width: 720px){
    .sv2-topNote{
        left: 50%;
        transform: translateX(-50%);
        top: min(160px, 22vh);
        width: calc(100vw - 36px);
        padding-left: 14px;
    }
}


/* =======================
   STEP 3 : RIDEAUX + LINE
   ======================= */

