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

:root {
    --bg: #0C0C0C;
    --bg1: #111;
    --bg2: #161616;
    --card: #1C1C1C;
    --card2: #222;
    --card3: #282828;
    --b: rgba(255, 255, 255, .06);
    --b2: rgba(255, 255, 255, .11);
    --b3: rgba(255, 255, 255, .18);
    --lime: #DEFE65;
    --la: rgba(222, 254, 101, .08);
    --la2: rgba(222, 254, 101, .15);
    --la4: rgba(222, 254, 101, .35);
    --green: #6CD4A0;
    --ga: rgba(108, 212, 160, .08);
    --rose: #FF6B8A;
    --ra: rgba(255, 107, 138, .08);
    --indigo: #B8A5FF;
    --ia: rgba(184, 165, 255, .08);
    --warm: #E8C96A;
    --wa: rgba(232, 201, 106, .08);
    --text: #F0EDEA;
    --t2: #C0BBB5;
    --mu: #787068;
    --mu2: #484340;
    --F: 'Outfit', sans-serif;
    --S: 'Fraunces', serif;
    --ease: cubic-bezier(.4, 0, .2, 1);
}

html {
    scroll-behavior: smooth
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: var(--F);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
    padding-bottom: 90px
}

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

button,
input,
select {
    font-family: var(--F);
    cursor: none
}

@media(hover:none) {
    body {
        cursor: auto
    }

    button,
    input,
    select {
        cursor: pointer
    }
}

/* CURSOR */
#cur {
    position: fixed;
    width: 9px;
    height: 9px;
    background: var(--lime);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transform: translate(-50%, -50%);
    transition: width .2s, height .2s;
    mix-blend-mode: difference
}

#aura {
    position: fixed;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 254, 101, .025), transparent 70%);
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: transform .08s linear
}

#prg {
    position: fixed;
    top: 0;
    left: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--lime), var(--green));
    z-index: 10001;
    width: 0%;
    transition: width .1s
}

@media(hover:none) {

    #cur,
    #aura {
        display: none
    }
}

/* NAV */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 22px 56px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all .4s var(--ease)
}

nav.sc {
    background: rgba(12, 12, 12, .94);
    backdrop-filter: blur(28px);
    border-bottom: 1px solid var(--b);
    padding: 14px 56px
}

.logo {
    font-size: 21px;
    font-weight: 900;
    letter-spacing: -1px
}

.logo span {
    color: var(--lime)
}

.nav-wl {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: rgba(222, 254, 101, .06);
    border: 1px solid rgba(222, 254, 101, .18);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11.5px;
    font-weight: 700;
    color: var(--lime)
}

.nav-wl-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulse 1.8s ease-in-out infinite
}

.nr {
    display: flex;
    gap: 10px;
    align-items: center
}

.btn-ghost {
    padding: 9px 20px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    color: var(--t2);
    border: 1px solid var(--b);
    background: transparent;
    transition: all .2s
}

.btn-ghost:hover {
    border-color: var(--b2);
    background: rgba(255, 255, 255, .04);
    color: var(--text)
}

.btn-cta-sm {
    padding: 9px 22px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    background: var(--lime);
    color: #0C0C0C;
    border: none;
    transition: all .25s
}

.btn-cta-sm:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px var(--la4)
}

@media(max-width:860px) {
    nav {
        padding: 16px 20px
    }

    nav.sc {
        padding: 12px 20px
    }

    .nav-wl {
        display: none
    }
}

/* REVEAL */
.rv {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.rv.vis {
    opacity: 1;
    transform: none
}

.d1 {
    transition-delay: .1s
}

.d2 {
    transition-delay: .18s
}

.d3 {
    transition-delay: .26s
}

.d4 {
    transition-delay: .36s
}

.d5 {
    transition-delay: .46s
}

/* SHARED */
.cnt {
    max-width: 1120px;
    margin: 0 auto
}

.ey {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--lime)
}

.ey::before {
    content: '';
    width: 16px;
    height: 1px;
    background: var(--lime);
    flex-shrink: 0
}

.ey-rose {
    color: var(--rose)
}

.ey-rose::before {
    background: var(--rose)
}

.ey-green {
    color: var(--green)
}

.ey-green::before {
    background: var(--green)
}

.ey-indigo {
    color: var(--indigo)
}

.ey-indigo::before {
    background: var(--indigo)
}

.h2 {
    font-size: clamp(34px, 5vw, 58px);
    font-weight: 900;
    letter-spacing: -2px;
    line-height: 1.05
}

.h2 em {
    font-style: italic;
    font-family: var(--S);
    font-weight: 700;
    background: linear-gradient(135deg, var(--lime), #9de820);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.h2 em.r {
    background: linear-gradient(135deg, #FF6B8A, #ff3060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.sub {
    font-size: 15.5px;
    color: var(--mu);
    line-height: 1.78;
    max-width: 500px
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .4;
        transform: scale(.7)
    }
}

@keyframes float {
    0% {
        transform: translate(0, 0) scale(1)
    }

    50% {
        transform: translate(40px, -30px) scale(1.05)
    }

    100% {
        transform: translate(-20px, 20px) scale(.97)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

@keyframes tickIn {
    from {
        transform: scale(0) rotate(-20deg);
        opacity: 0
    }

    to {
        transform: scale(1) rotate(0);
        opacity: 1
    }
}

@keyframes barGrow {
    from {
        width: 0
    }

    to {
        width: var(--w)
    }
}

@keyframes shake {

    0%,
    100% {
        transform: none
    }

    20% {
        transform: translateX(-6px)
    }

    40% {
        transform: translateX(6px)
    }

    60% {
        transform: translateX(-4px)
    }

    80% {
        transform: translateX(4px)
    }
}

/* ════════════════════════════════════════
   STICKY BOTTOM CTA BAR
════════════════════════════════════════ */
#sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 999;
    background: rgba(12, 12, 12, .96);
    backdrop-filter: blur(24px);
    border-top: 1px solid rgba(222, 254, 101, .12);
    padding: 14px 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    transform: translateY(100%);
    transition: transform .5s var(--ease);
    flex-wrap: wrap
}

#sticky-bar.show {
    transform: none
}

.sb-left {
    display: flex;
    align-items: center;
    gap: 16px
}

.sb-counter {
    display: flex;
    align-items: center;
    gap: 8px
}

.sb-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulse 1.8s infinite
}

.sb-n {
    font-size: 14px;
    font-weight: 800;
    color: var(--lime)
}

.sb-txt {
    font-size: 13px;
    color: var(--mu)
}

.sb-progress {
    width: 180px;
    height: 5px;
    background: rgba(255, 255, 255, .06);
    border-radius: 5px;
    overflow: hidden
}

.sb-bar {
    height: 100%;
    background: linear-gradient(90deg, var(--lime), var(--green));
    border-radius: 5px;
    width: 74%;
    transition: width 1s var(--ease)
}

.sb-btn {
    padding: 11px 28px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    background: var(--lime);
    color: #0C0C0C;
    border: none;
    transition: all .25s;
    white-space: nowrap;
    flex-shrink: 0
}

.sb-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 22px var(--la4)
}

@media(max-width:680px) {
    .sb-progress {
        display: none
    }

    #sticky-bar {
        padding: 12px 20px
    }
}

/* ════════════════════════════════════════
   HERO
════════════════════════════════════════ */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 160px 24px 100px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.hgrid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .016) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .016) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black, transparent 80%);
    pointer-events: none
}

.ao {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    animation: float 20s ease-in-out infinite alternate;
    pointer-events: none
}

.ao1 {
    width: 800px;
    height: 500px;
    top: -200px;
    left: -200px;
    background: radial-gradient(circle, rgba(255, 107, 138, .05), transparent 70%)
}

.ao2 {
    width: 600px;
    height: 600px;
    top: -100px;
    right: -200px;
    background: radial-gradient(circle, rgba(222, 254, 101, .04), transparent 70%);
    animation-delay: -8s
}

.ao3 {
    width: 500px;
    height: 400px;
    bottom: 50px;
    left: 30%;
    background: radial-gradient(circle, rgba(184, 165, 255, .03), transparent 70%);
    animation-delay: -14s
}

.urgency-bar {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 138, .06);
    border: 1px solid rgba(255, 107, 138, .22);
    border-radius: 50px;
    padding: 9px 20px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--rose);
    margin-bottom: 24px;
    animation: fadeUp .7s ease both
}

.urgency-bar .up {
    background: var(--rose);
    color: #0C0C0C;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: 50px;
    letter-spacing: .5px;
    text-transform: uppercase
}

.founding-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, rgba(222, 254, 101, .07), rgba(108, 212, 160, .05));
    border: 1px solid rgba(222, 254, 101, .2);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 12.5px;
    font-weight: 700;
    color: var(--lime);
    margin-bottom: 32px;
    animation: fadeUp .7s ease both
}

.founding-badge .fb-star {
    font-size: 14px
}

.founding-badge .fb-count {
    background: var(--lime);
    color: #0C0C0C;
    font-size: 10px;
    font-weight: 900;
    padding: 3px 9px;
    border-radius: 50px;
    letter-spacing: .3px
}

.hero h1 {
    font-size: clamp(44px, 7vw, 92px);
    font-weight: 900;
    line-height: .98;
    letter-spacing: -3.5px;
    max-width: 1000px;
    animation: fadeUp .8s .08s ease both
}

.hero h1 em {
    font-style: italic;
    font-family: var(--S);
    font-weight: 700;
    background: linear-gradient(135deg, #DEFE65 20%, #a8d820 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hero h1 .warn {
    background: linear-gradient(135deg, #FF6B8A, #ff3060);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text
}

.hsub {
    font-size: clamp(16px, 2vw, 19px);
    color: var(--mu);
    max-width: 680px;
    margin: 24px auto 0;
    line-height: 1.8;
    animation: fadeUp .7s .16s ease both
}

.hsub strong {
    color: var(--t2);
    font-weight: 600
}

/* ── Inline Hero Form ── */
.hero-form-wrap {
    margin: 0 auto;
    max-width: 560px;
    width: 100%;
    animation: fadeUp .7s .28s ease both
}

/* hero-form replaced by wf-card */
/* ─── WOW HERO FORM ─────────────────────────────── */
.wf-wrap {
    max-width: 560px;
    margin: 0 auto;
    width: 100%
}

.wf-card {
    background: transparent;
    border: none;
    border-radius: 0;
    padding: 0;
    position: relative;
    overflow: visible;
    box-shadow: none
}

.wf-card::before {
    display: none
}

.wf-card::after {
    display: none
}

.wf-header {
    text-align: center;
    margin-bottom: 32px;
    position: relative;
    z-index: 1
}

.wf-header-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--la);
    border: 1px solid rgba(222, 254, 101, .2);
    border-radius: 50px;
    padding: 5px 14px;
    font-size: 11px;
    font-weight: 800;
    color: var(--lime);
    letter-spacing: .5px;
    margin-bottom: 10px
}

.wf-header-title {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -.5px;
    color: var(--text)
}

.wf-header-sub {
    font-size: 12.5px;
    color: var(--mu);
    margin-top: 4px
}

.wf-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1
}

/* Floating label field */
.wf-field {
    position: relative;
    opacity: 0;
    transform: translateY(10px);
    animation: fadeUp .5s ease forwards
}

.wf-field:nth-child(1) {
    animation-delay: .05s
}

.wf-field:nth-child(2) {
    animation-delay: .12s
}

.wf-field:nth-child(3) {
    animation-delay: .19s
}

.wf-field:nth-child(4) {
    animation-delay: .26s
}

.wf-field-inner {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    transition: border-color .25s, box-shadow .25s, background .25s;
    overflow: hidden;
    backdrop-filter: blur(16px)
}

.wf-field-inner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(222, 254, 101, .03), transparent);
    opacity: 0;
    transition: opacity .3s
}

.wf-field-inner:focus-within {
    border-color: rgba(222, 254, 101, .5);
    box-shadow: 0 0 0 5px rgba(222, 254, 101, .1), 0 8px 32px rgba(222, 254, 101, .08), inset 0 1px 0 rgba(222, 254, 101, .12);
    background: rgba(222, 254, 101, .04)
}

.wf-field-inner:focus-within::before {
    opacity: 1
}

.wf-field-inner.filled {
    border-color: rgba(108, 212, 160, .3);
    background: rgba(108, 212, 160, .025)
}

.wf-field-icon {
    width: 50px;
    height: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17px;
    flex-shrink: 0;
    opacity: .4;
    transition: opacity .3s
}

.wf-field-inner:focus-within .wf-field-icon {
    opacity: 1
}

.wf-field-body {
    flex: 1;
    position: relative;
    padding: 18px 16px 7px 0
}

.wf-label {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
    font-size: 13.5px;
    color: var(--mu);
    font-weight: 500;
    pointer-events: none;
    transition: all .22s var(--ease);
    transform-origin: left center
}

.wf-field-inner:focus-within .wf-label,
.wf-input:not(:placeholder-shown)~.wf-label {
    top: 10px;
    transform: translateY(0) scale(.78);
    color: var(--lime);
    font-weight: 700;
    letter-spacing: .3px
}

.wf-field-inner.filled .wf-input:not(:placeholder-shown)~.wf-label {
    color: var(--green)
}

.wf-input {
    width: 100%;
    background: transparent;
    border: none;
    outline: none;
    font-size: 14.5px;
    color: var(--text);
    padding: 10px 0 0;
    font-family: var(--F);
    line-height: 1
}

.wf-input::placeholder {
    color: transparent
}

.wf-check-mark {
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: var(--green);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    margin-right: 14px;
    flex-shrink: 0;
    opacity: 0;
    transform: scale(0);
    transition: all .3s var(--ease)
}

.wf-field-inner.filled .wf-check-mark {
    opacity: 1;
    transform: scale(1)
}

/* Optional badge */

/* Submit button */
.wf-phone-pre {
    font-size: 14.5px;
    font-weight: 700;
    color: var(--t2);
    white-space: nowrap;
    padding-top: 12px;
    opacity: 0;
    transition: opacity .2s;
    flex-shrink: 0;
    pointer-events: none
}

.wf-field-inner.phone-active .wf-phone-pre {
    opacity: 1
}

.wf-submit {
    width: 100%;
    padding: 19px;
    border-radius: 16px;
    font-size: 16px;
    font-weight: 900;
    background: linear-gradient(135deg, var(--lime), #c8f040);
    color: #0A0A0A;
    border: none;
    transition: all .3s;
    letter-spacing: -.3px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden;
    margin-top: 10px;
    box-shadow: 0 8px 36px rgba(222, 254, 101, .25)
}

.wf-submit::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .22), transparent);
    transform: skewX(-20deg);
    transition: left .6s ease
}

.wf-submit:hover::after {
    left: 140%
}

.wf-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 48px rgba(222, 254, 101, .3)
}

.wf-submit:active {
    transform: translateY(0)
}

.wf-submit-icon {
    font-size: 17px
}

.wf-foot {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 18px;
    flex-wrap: wrap;
    position: relative;
    z-index: 1
}

.wf-foot-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11.5px;
    color: var(--mu)
}

.wf-foot-check {
    color: var(--green);
    font-size: 13px;
    font-weight: 700
}

@media(max-width:560px) {
    .wf-card {
        padding: 24px 20px
    }

    .wf-header-title {
        font-size: 16px
    }
}

/* hero-form inputs replaced */
.hero-form-note {
    font-size: 12px;
    color: var(--mu);
    margin-top: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap
}

.hero-form-note span {
    display: flex;
    align-items: center;
    gap: 5px
}

.hero-form-note .ok {
    color: var(--green)
}

/* Countdown inline */
.countdown-wrap {
    display: flex;
    gap: 14px;
    justify-content: center;
    margin-top: 52px;
    animation: fadeUp .7s .38s ease both
}

.cd-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px
}

.cd-num {
    font-size: clamp(28px, 4.5vw, 52px);
    font-weight: 900;
    letter-spacing: -2.5px;
    line-height: 1.2;
    color: #F0EDEA;
    font-variant-numeric: tabular-nums;
    text-shadow: 0 2px 20px rgba(255, 255, 255, .08)
}

.cd-lbl {
    font-size: 10px;
    font-weight: 700;
    color: var(--mu);
    letter-spacing: 1.5px;
    text-transform: uppercase
}

.cd-sep {
    font-size: clamp(22px, 3.5vw, 44px);
    font-weight: 900;
    color: var(--mu2);
    align-self: flex-start;
    margin-top: 6px
}

.cd-label {
    font-size: 12px;
    color: var(--mu);
    text-align: center;
    margin-top: 10px;
    margin-bottom: 52px;
    animation: fadeUp .7s .44s ease both
}

.cd-label strong {
    color: var(--rose)
}

/* ── Hero success state ── */
.hero-success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    animation: fadeUp .5s ease both
}

.hs-icon {
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--lime), var(--green));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
    animation: tickIn .4s var(--ease) both
}

.hs-title {
    font-size: clamp(22px, 3vw, 32px);
    font-weight: 900;
    letter-spacing: -1px
}

.hs-sub {
    font-size: 14.5px;
    color: var(--mu);
    line-height: 1.7;
    max-width: 400px;
    text-align: center
}

.hs-rank {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--la);
    border: 1px solid rgba(222, 254, 101, .2);
    border-radius: 50px;
    padding: 8px 20px;
    font-size: 13px;
    font-weight: 700;
    color: var(--lime);
    margin-top: 4px
}

/* ════════════════════════════════════════
   MARQUEE
════════════════════════════════════════ */
.mbar {
    border-top: 1px solid var(--b);
    border-bottom: 1px solid var(--b);
    background: var(--bg1);
    overflow: hidden;
    position: relative
}

.mbar::before,
.mbar::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100px;
    z-index: 2;
    pointer-events: none
}

.mbar::before {
    left: 0;
    background: linear-gradient(90deg, var(--bg1), transparent)
}

.mbar::after {
    right: 0;
    background: linear-gradient(-90deg, var(--bg1), transparent)
}

.mtrk {
    display: flex;
    animation: mq 28s linear infinite;
    width: max-content
}

@keyframes mq {
    from {
        transform: translateX(0)
    }

    to {
        transform: translateX(-50%)
    }
}

.mi {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 15px 32px;
    border-right: 1px solid var(--b);
    white-space: nowrap;
    font-size: 13px;
    font-weight: 600;
    color: var(--mu2)
}

.md-rose {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--rose)
}

.md-lime {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime)
}

.md-green {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--green)
}

/* ════════════════════════════════════════
   SOCIAL PROOF STRIP
════════════════════════════════════════ */
.sp-strip {
    padding: 52px 24px;
    background: var(--bg)
}

.sp-strip-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap
}

.sp-stat {
    text-align: center
}

.sp-stat-n {
    font-size: 36px;
    font-weight: 900;
    letter-spacing: -1.5px;
    color: var(--lime);
    line-height: 1;
    display: block
}

.sp-stat-l {
    font-size: 12px;
    color: var(--mu);
    margin-top: 4px;
    font-weight: 500
}

.sp-divider {
    width: 1px;
    height: 44px;
    background: var(--b2)
}

.sp-avatars {
    display: flex;
    align-items: center;
    gap: -8px
}

.sp-av {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2.5px solid var(--bg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    font-weight: 800;
    margin-left: -9px;
    flex-shrink: 0
}

.sp-av:first-child {
    margin-left: 0
}

.sp-av-info {
    margin-left: 8px
}

.sp-av-count {
    font-size: 15px;
    font-weight: 800;
    color: var(--text)
}

.sp-av-lbl {
    font-size: 11.5px;
    color: var(--mu)
}

/* ════════════════════════════════════════
   LOI SECTION
════════════════════════════════════════ */
.loi {
    padding: 120px 24px;
    background: var(--bg)
}

.loi-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: start
}

.loi-txt .h2 {
    margin: 14px 0 18px
}

.loi-txt .sub {
    margin-bottom: 28px
}

.loi-warn {
    background: rgba(255, 107, 138, .04);
    border: 1px solid rgba(255, 107, 138, .15);
    border-radius: 18px;
    padding: 22px;
    margin-bottom: 28px
}

.loi-warn-h {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 800;
    color: var(--rose);
    margin-bottom: 8px
}

.loi-warn-ico {
    width: 30px;
    height: 30px;
    border-radius: 10px;
    background: rgba(255, 107, 138, .1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    flex-shrink: 0
}

.loi-warn p {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.7
}

.timeline {
    position: relative;
    padding-left: 32px
}

.timeline::before {
    content: '';
    position: absolute;
    left: 10px;
    top: 8px;
    bottom: 8px;
    width: 1px;
    background: linear-gradient(to bottom, var(--rose), var(--lime), var(--green))
}

.tl-item {
    position: relative;
    margin-bottom: 28px
}

.tl-item:last-child {
    margin-bottom: 0
}

.tl-dot {
    position: absolute;
    left: -26px;
    top: 6px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid
}

.tl-dot.past {
    background: var(--card2);
    border-color: var(--mu2)
}

.tl-dot.soon {
    background: var(--rose);
    border-color: var(--rose);
    box-shadow: 0 0 12px rgba(255, 107, 138, .4)
}

.tl-dot.later {
    background: var(--lime);
    border-color: var(--lime);
    box-shadow: 0 0 12px rgba(222, 254, 101, .4)
}

.tl-date {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--mu);
    margin-bottom: 4px
}

.tl-date.soon {
    color: var(--rose)
}

.tl-date.later {
    color: var(--lime)
}

.tl-h {
    font-size: 15px;
    font-weight: 800;
    letter-spacing: -.2px;
    margin-bottom: 4px
}

.tl-p {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.6
}

.tl-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 10px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    margin-top: 6px
}

.tl-badge.soon {
    background: rgba(255, 107, 138, .1);
    color: var(--rose);
    border: 1px solid rgba(255, 107, 138, .2)
}

.tl-badge.later {
    background: var(--la);
    color: var(--lime);
    border: 1px solid rgba(222, 254, 101, .15)
}

.tl-badge.ok {
    background: var(--ga);
    color: var(--green);
    border: 1px solid rgba(108, 212, 160, .2)
}

.loi-right {
    position: sticky;
    top: 120px
}

.concern-card {
    background: var(--card);
    border: 1px solid var(--b);
    border-radius: 24px;
    padding: 32px;
    overflow: hidden;
    position: relative
}

.concern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--rose), transparent)
}

.concern-h {
    font-size: 17px;
    font-weight: 900;
    letter-spacing: -.4px;
    margin-bottom: 6px
}

.concern-sub {
    font-size: 13px;
    color: var(--mu);
    margin-bottom: 22px
}

.concern-list {
    display: flex;
    flex-direction: column;
    gap: 9px
}

.ci {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 13px 16px;
    border-radius: 14px;
    border: 1px solid var(--b);
    background: var(--bg1);
    transition: all .3s;
    position: relative;
    overflow: hidden
}

.ci::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 2px;
    border-radius: 2px
}

.ci.active::before {
    background: var(--lime)
}

.ci:hover {
    border-color: var(--b2);
    transform: translateX(3px)
}

.ci-ico {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0
}

.ci-info {
    flex: 1
}

.ci-name {
    font-size: 13px;
    font-weight: 800
}

.ci-desc {
    font-size: 11px;
    color: var(--mu);
    margin-top: 1px
}

.ci-count {
    font-size: 11px;
    font-weight: 700;
    color: var(--lime);
    background: var(--la);
    padding: 2px 9px;
    border-radius: 50px;
    white-space: nowrap
}

.amende-box {
    margin-top: 18px;
    background: rgba(255, 107, 138, .04);
    border: 1px solid rgba(255, 107, 138, .12);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 12px
}

.amende-ico {
    font-size: 26px;
    flex-shrink: 0
}

.amende-txt {
    font-size: 13px;
    color: var(--t2);
    line-height: 1.6
}

.amende-txt strong {
    color: var(--rose);
    font-weight: 800
}

@media(max-width:860px) {
    .loi-inner {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .loi-right {
        position: static
    }
}

/* ════════════════════════════════════════
   FEATURES SECTION
════════════════════════════════════════ */
.feats {
    padding: 120px 24px;
    background: var(--bg2)
}

.feats-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px
}

.feats-head .h2 {
    margin: 14px 0 18px
}

.feats-head .sub {
    margin: 0 auto
}

.feats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px
}

.feat-card {
    background: var(--card);
    border: 1px solid var(--b);
    border-radius: 20px;
    padding: 28px;
    position: relative;
    overflow: hidden;
    transition: all .35s var(--ease);
    cursor: none
}

.feat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px
}

.feat-card.lime::before {
    background: linear-gradient(90deg, transparent, rgba(222, 254, 101, .5), transparent)
}

.feat-card.lime:hover {
    border-color: rgba(222, 254, 101, .15);
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .4)
}

.feat-card.green::before {
    background: linear-gradient(90deg, transparent, rgba(108, 212, 160, .5), transparent)
}

.feat-card.green:hover {
    border-color: rgba(108, 212, 160, .15);
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .4)
}

.feat-card.rose::before {
    background: linear-gradient(90deg, transparent, rgba(255, 107, 138, .5), transparent)
}

.feat-card.rose:hover {
    border-color: rgba(255, 107, 138, .15);
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .4)
}

.feat-card.indigo::before {
    background: linear-gradient(90deg, transparent, rgba(184, 165, 255, .5), transparent)
}

.feat-card.indigo:hover {
    border-color: rgba(184, 165, 255, .15);
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .4)
}

.feat-card.warm::before {
    background: linear-gradient(90deg, transparent, rgba(232, 201, 106, .5), transparent)
}

.feat-card.warm:hover {
    border-color: rgba(232, 201, 106, .15);
    transform: translateY(-4px);
    box-shadow: 0 22px 56px rgba(0, 0, 0, .4)
}

.feat-card.span2 {
    grid-column: span 2
}

.feat-ico {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 18px;
    transition: transform .3s
}

.feat-card:hover .feat-ico {
    transform: scale(1.1) rotate(-4deg)
}

.feat-ico.lime {
    background: var(--la)
}

.feat-ico.green {
    background: var(--ga)
}

.feat-ico.rose {
    background: var(--ra)
}

.feat-ico.indigo {
    background: var(--ia)
}

.feat-ico.warm {
    background: var(--wa)
}

.feat-h {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: -.3px;
    margin-bottom: 8px
}

.feat-d {
    font-size: 13.5px;
    color: var(--mu);
    line-height: 1.65
}

.feat-chip {
    position: absolute;
    top: 20px;
    right: 20px;
    font-size: 9.5px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px
}

.feat-chip.new {
    background: var(--la);
    color: var(--lime)
}

.feat-chip.unique {
    background: rgba(184, 165, 255, .1);
    color: var(--indigo);
    border: 1px solid rgba(184, 165, 255, .15)
}

.feat-chip.conf {
    background: var(--ga);
    color: var(--green)
}

.feat-demo {
    margin-top: 20px;
    background: var(--bg1);
    border: 1px solid var(--b);
    border-radius: 14px;
    padding: 18px
}

.feat-demo-hdr {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px
}

.feat-demo-title {
    font-size: 11px;
    font-weight: 700;
    color: var(--mu);
    letter-spacing: .5px
}

.feat-demo-status {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 10.5px;
    font-weight: 700
}

.status-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%
}

.status-dot.viewed {
    background: var(--green)
}

.status-dot.open {
    background: var(--warm);
    animation: pulse 2s infinite
}

.inv-row-mini {
    display: flex;
    align-items: center;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 11px;
    gap: 10px;
    transition: all .3s
}

.inv-row-mini:nth-child(odd) {
    background: rgba(255, 255, 255, .025)
}

.irm-name {
    flex: 1;
    font-weight: 600;
    color: var(--t2)
}

.irm-client {
    font-size: 10px;
    color: var(--mu);
    width: 90px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis
}

.irm-amount {
    font-weight: 800;
    width: 70px;
    text-align: right
}

.irm-st {
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 9px;
    border-radius: 50px;
    white-space: nowrap
}

.irm-st.paid {
    background: var(--ga);
    color: var(--green)
}

.irm-st.sent {
    background: var(--wa);
    color: var(--warm)
}

.irm-st.overdue {
    background: var(--ra);
    color: var(--rose)
}

.irm-st.draft {
    background: rgba(255, 255, 255, .05);
    color: var(--mu)
}

.track-demo {
    margin-top: 16px
}

.track-event {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    border: 1px solid var(--b);
    margin-bottom: 6px;
    font-size: 12px;
    transition: background .3s
}

.track-ico {
    width: 28px;
    height: 28px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0
}

.track-txt {
    flex: 1;
    color: var(--t2);
    font-weight: 500
}

.track-txt strong {
    color: var(--text);
    font-weight: 700
}

.track-time {
    font-size: 10.5px;
    color: var(--mu);
    white-space: nowrap
}

.relance-demo {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 16px
}

.rd-step {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 10px;
    background: var(--bg1);
    border: 1px solid var(--b)
}

.rd-num {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0
}

.rd-txt {
    flex: 1;
    font-size: 12.5px;
    font-weight: 600;
    color: var(--t2)
}

.rd-txt span {
    color: var(--mu);
    font-weight: 400;
    font-size: 11px
}

.rd-active {
    border-color: rgba(222, 254, 101, .2);
    background: rgba(222, 254, 101, .03)
}

.rd-active .rd-num {
    background: var(--lime);
    color: #0C0C0C
}

.num-card-hdr {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 14px
}

.num-card-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: var(--la);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.num-badge {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 10px;
    font-weight: 700;
    padding: 3px 9px;
    border-radius: 50px;
    background: var(--ga);
    color: var(--green);
    border: 1px solid rgba(108, 212, 160, .2)
}

.num-seq {
    display: flex;
    flex-direction: column;
    gap: 6px;
    margin-bottom: 10px
}

.num-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    background: var(--bg1);
    border: 1px solid var(--b);
    font-size: 12px
}

.num-item.done {
    opacity: .65
}

.num-item.current {
    background: rgba(222, 254, 101, .04);
    border-color: rgba(222, 254, 101, .22)
}

.num-ref {
    font-weight: 800;
    color: var(--text);
    flex: 1;
    letter-spacing: -.2px
}

.num-item.current .num-ref {
    color: var(--lime)
}

.num-date {
    font-size: 10.5px;
    color: var(--mu);
    white-space: nowrap
}

.num-ok {
    font-size: 12px;
    color: var(--green);
    flex-shrink: 0
}

.num-live {
    font-size: 10px;
    font-weight: 800;
    padding: 2px 9px;
    border-radius: 50px;
    background: var(--lime);
    color: #0C0C0C;
    white-space: nowrap;
    flex-shrink: 0
}

.num-rule {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 9px 12px;
    border-radius: 10px;
    background: rgba(222, 254, 101, .03);
    border: 1px solid rgba(222, 254, 101, .1);
    font-size: 11px;
    color: var(--t2);
    line-height: 1.45
}

/* Reception demo */
.recv-demo {
    margin-top: 16px;
    display: flex;
    flex-direction: column;
    gap: 7px
}

.recv-item {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 12px;
    border-radius: 10px;
    background: var(--bg1);
    border: 1px solid var(--b);
    font-size: 12px;
    transition: all .25s
}

.recv-item.recv-new {
    border-color: rgba(184, 165, 255, .25);
    background: rgba(184, 165, 255, .04)
}

.recv-badge {
    font-size: 9.5px;
    font-weight: 800;
    padding: 2px 8px;
    border-radius: 50px;
    background: rgba(184, 165, 255, .15);
    color: var(--indigo);
    white-space: nowrap;
    flex-shrink: 0
}

.recv-badge.recv-ok {
    background: var(--ga);
    color: var(--green)
}

.recv-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1px;
    min-width: 0
}

.recv-from {
    font-weight: 700;
    color: var(--text);
    font-size: 12px
}

.recv-ref {
    font-size: 10px;
    color: var(--mu)
}

.recv-amt {
    font-weight: 800;
    color: var(--t2);
    font-size: 12px;
    white-space: nowrap;
    flex-shrink: 0
}

/* Template demo */
.tmpl-demo {
    margin-top: 16px
}

.tmpl-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px
}

.tmpl-card {
    cursor: none;
    transition: all .25s
}

.tmpl-card:hover {
    transform: translateY(-2px)
}

.tmpl-preview {
    height: 52px;
    border-radius: 8px;
    background: var(--bg1);
    border: 1px solid var(--b);
    padding: 10px;
    margin-bottom: 6px;
    transition: border-color .25s
}

.tmpl-card.active .tmpl-preview {
    border-color: rgba(222, 254, 101, .3)
}

.tmpl-name {
    font-size: 10px;
    font-weight: 600;
    color: var(--mu);
    text-align: center
}

.tmpl-card.active .tmpl-name {
    color: var(--lime);
    font-weight: 800
}

.tmpl-add .tmpl-preview {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px
}

@media(max-width:860px) {
    .feats-grid {
        grid-template-columns: 1fr 1fr
    }

    .feat-card.span2 {
        grid-column: auto
    }
}

@media(max-width:560px) {
    .feats-grid {
        grid-template-columns: 1fr
    }
}

/* ════════════════════════════════════════
   VITESSE SECTION — "47 secondes"
════════════════════════════════════════ */
.speed {
    padding: 120px 24px;
    background: var(--bg);
    overflow: hidden
}

.speed-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.speed-txt .ey {
    margin-bottom: 20px
}

.speed-txt .h2 {
    margin-bottom: 18px
}

.speed-txt .sub {
    margin-bottom: 36px
}

.speed-steps {
    display: flex;
    flex-direction: column;
    gap: 0
}

.ss {
    display: flex;
    gap: 18px;
    padding: 20px 0;
    border-bottom: 1px solid var(--b);
    position: relative;
    transition: all .3s
}

.ss:last-child {
    border-bottom: none
}

.ss-num {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 900;
    flex-shrink: 0;
    transition: all .3s;
    margin-top: 2px;
    border: 1.5px solid var(--b2);
    color: var(--mu)
}

.ss.done .ss-num {
    background: var(--lime);
    color: #0C0C0C;
    border-color: var(--lime)
}

.ss.active .ss-num {
    background: rgba(222, 254, 101, .1);
    color: var(--lime);
    border-color: rgba(222, 254, 101, .3);
    box-shadow: 0 0 14px rgba(222, 254, 101, .15)
}

.ss-body {
    flex: 1
}

.ss-h {
    font-size: 14.5px;
    font-weight: 800;
    letter-spacing: -.2px;
    margin-bottom: 4px;
    transition: color .3s
}

.ss.done .ss-h,
.ss.active .ss-h {
    color: var(--text)
}

.ss-h {
    color: var(--mu)
}

.ss-p {
    font-size: 13px;
    color: var(--mu);
    line-height: 1.6
}

.ss-time {
    font-size: 10.5px;
    font-weight: 800;
    padding: 3px 10px;
    border-radius: 50px;
    background: var(--la);
    color: var(--lime);
    display: inline-flex;
    align-items: center;
    gap: 5px;
    margin-top: 8px
}

.ss-time.done {
    background: var(--ga);
    color: var(--green)
}

.speed-total {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 20px 24px;
    background: linear-gradient(135deg, rgba(222, 254, 101, .06), rgba(108, 212, 160, .04));
    border: 1px solid rgba(222, 254, 101, .15);
    border-radius: 16px;
    margin-top: 24px
}

.st-ico {
    font-size: 28px
}

.st-n {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--lime)
}

.st-l {
    font-size: 13px;
    color: var(--t2);
    font-weight: 500;
    line-height: 1.4
}

/* Speed visual — animated invoice builder */
.speed-visual {
    position: relative
}

.sv-card {
    background: var(--card);
    border: 1px solid var(--b);
    border-radius: 24px;
    padding: 28px;
    position: relative;
    overflow: hidden
}

.sv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), transparent)
}

.sv-toolbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    padding-bottom: 18px;
    border-bottom: 1px solid var(--b)
}

.sv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%
}

.sv-title {
    font-size: 12px;
    font-weight: 700;
    color: var(--mu);
    margin-left: 6px
}

.sv-field {
    display: flex;
    flex-direction: column;
    gap: 5px;
    margin-bottom: 14px
}

.sv-label {
    font-size: 10px;
    font-weight: 700;
    color: var(--mu);
    letter-spacing: .5px;
    text-transform: uppercase
}

.sv-input {
    background: var(--bg1);
    border: 1px solid var(--b);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 13px;
    color: var(--t2);
    position: relative;
    overflow: hidden;
    min-height: 38px;
    display: flex;
    align-items: center
}

.sv-input.typing::after {
    content: '|';
    color: var(--lime);
    animation: pulse .8s infinite
}

.sv-cursor {
    display: inline-block;
    width: 2px;
    height: 14px;
    background: var(--lime);
    animation: pulse .8s infinite;
    margin-left: 2px;
    vertical-align: middle
}

.sv-row-items {
    display: flex;
    gap: 8px;
    margin-bottom: 14px
}

.sv-item-col {
    flex: 1;
    background: var(--bg1);
    border: 1px solid var(--b);
    border-radius: 10px;
    padding: 10px;
    font-size: 11px
}

.sv-item-lbl {
    color: var(--mu);
    font-size: 9.5px;
    margin-bottom: 4px;
    font-weight: 600;
    letter-spacing: .3px;
    text-transform: uppercase
}

.sv-item-val {
    font-weight: 700;
    color: var(--text)
}

.sv-total-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 14px;
    background: var(--bg1);
    border: 1px solid var(--b);
    border-radius: 10px;
    margin-bottom: 14px
}

.sv-total-lbl {
    font-size: 12px;
    color: var(--mu)
}

.sv-total-val {
    font-size: 18px;
    font-weight: 900;
    color: var(--lime)
}

.sv-actions {
    display: flex;
    gap: 8px
}

.sv-btn {
    flex: 1;
    padding: 11px;
    border-radius: 10px;
    font-size: 12px;
    font-weight: 800;
    border: none;
    transition: all .3s;
    text-align: center
}

.sv-btn.send {
    background: var(--lime);
    color: #0C0C0C
}

.sv-btn.pdf {
    background: var(--bg1);
    color: var(--t2);
    border: 1px solid var(--b)
}

.sv-time-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(222, 254, 101, .08);
    border: 1px solid rgba(222, 254, 101, .15);
    border-radius: 50px;
    padding: 5px 12px;
    font-size: 11px;
    font-weight: 800;
    color: var(--lime)
}

.sv-timer-dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--lime);
    animation: pulse 1s infinite
}

@media(max-width:860px) {
    .speed-inner {
        grid-template-columns: 1fr;
        gap: 56px
    }
}

/* ════════════════════════════════════════
   IA 24/7 SECTION
════════════════════════════════════════ */
.ia24 {
    padding: 120px 24px;
    background: var(--bg2);
    overflow: hidden
}

.ia24-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center
}

.ia24-visual {
    order: -1
}

/* Chat UI */
.chat-card {
    background: var(--card);
    border: 1px solid var(--b);
    border-radius: 24px;
    overflow: hidden;
    position: relative
}

.chat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--indigo), transparent)
}

.chat-topbar {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    border-bottom: 1px solid var(--b)
}

.chat-ai-av {
    width: 36px;
    height: 36px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--indigo), rgba(184, 165, 255, .5));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0
}

.chat-ai-info {
    flex: 1
}

.chat-ai-name {
    font-size: 13px;
    font-weight: 800
}

.chat-ai-status {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 11px;
    color: var(--mu)
}

.chat-ai-online {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--green);
    animation: pulse 2s infinite
}

.chat-msgs {
    padding: 20px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    max-height: 320px;
    overflow: hidden
}

.chat-msg {
    max-width: 85%;
    font-size: 12.5px;
    line-height: 1.65;
    padding: 11px 14px;
    border-radius: 16px
}

.chat-msg.ai {
    background: rgba(184, 165, 255, .07);
    border: 1px solid rgba(184, 165, 255, .12);
    color: var(--t2);
    align-self: flex-start;
    border-radius: 4px 16px 16px 16px
}

.chat-msg.user {
    background: rgba(222, 254, 101, .07);
    border: 1px solid rgba(222, 254, 101, .12);
    color: var(--text);
    align-self: flex-end;
    border-radius: 16px 4px 16px 16px
}

.chat-msg.ai strong {
    color: var(--indigo)
}

.chat-msg.user strong {
    color: var(--lime)
}

.chat-typing {
    display: flex;
    align-items: center;
    gap: 4px;
    padding: 11px 14px;
    border-radius: 4px 16px 16px 16px;
    background: rgba(184, 165, 255, .07);
    border: 1px solid rgba(184, 165, 255, .12);
    align-self: flex-start;
    width: fit-content
}

.ct-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--indigo);
    animation: pulse .9s ease-in-out infinite
}

.ct-dot:nth-child(2) {
    animation-delay: .15s
}

.ct-dot:nth-child(3) {
    animation-delay: .3s
}

.chat-input-bar {
    padding: 14px 16px;
    border-top: 1px solid var(--b);
    display: flex;
    align-items: center;
    gap: 10px
}

.chat-input-mock {
    flex: 1;
    background: var(--bg1);
    border: 1px solid var(--b);
    border-radius: 10px;
    padding: 10px 14px;
    font-size: 12px;
    color: var(--mu)
}

.chat-send-btn {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    background: var(--indigo);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0
}

/* IA features right */
.ia24-txt .ey {
    margin-bottom: 20px
}

.ia24-txt .h2 {
    margin-bottom: 18px
}

.ia24-txt .sub {
    margin-bottom: 36px
}

.ia-feats {
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ia-feat {
    display: flex;
    gap: 16px;
    padding: 18px;
    background: var(--card);
    border: 1px solid var(--b);
    border-radius: 16px;
    transition: all .3s
}

.ia-feat:hover {
    border-color: var(--b2);
    transform: translateX(4px)
}

.ia-ico {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.ia-body {
    flex: 1
}

.ia-h {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px
}

.ia-p {
    font-size: 12.5px;
    color: var(--mu);
    line-height: 1.6
}

.ia-badge {
    display: inline-block;
    font-size: 9.5px;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 50px;
    margin-top: 6px
}

.ia-badge.h24 {
    background: var(--ia);
    color: var(--indigo)
}

.ia-badge.instant {
    background: var(--ga);
    color: var(--green)
}

.ia-badge.smart {
    background: var(--wa);
    color: var(--warm)
}

@media(max-width:860px) {
    .ia24-inner {
        grid-template-columns: 1fr;
        gap: 56px
    }

    .ia24-visual {
        order: 0
    }
}

/* ════════════════════════════════════════
   CONFORMITÉ SECTION
════════════════════════════════════════ */
.conf {
    padding: 120px 24px;
    background: var(--bg);
    overflow: hidden;
    position: relative
}

.conf::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(ellipse, rgba(108, 212, 160, .04), transparent 65%);
    pointer-events: none;
    border-radius: 50%
}

.conf-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center
}

.conf-txt .ey {
    margin-bottom: 20px
}

.conf-txt .h2 {
    margin-bottom: 18px
}

.conf-txt .sub {
    margin-bottom: 36px
}

.conf-points {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-bottom: 36px
}

.cp {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--card);
    border: 1px solid var(--b);
    border-radius: 16px;
    transition: all .3s
}

.cp:hover {
    border-color: var(--b2);
    transform: translateX(4px)
}

.cp-ico {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.cp-h {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px
}

.cp-p {
    font-size: 12.5px;
    color: var(--mu);
    line-height: 1.6
}

.cp-check {
    font-size: 16px;
    color: var(--green);
    flex-shrink: 0;
    margin-top: 2px
}

.cert-card {
    background: var(--card);
    border: 1px solid var(--b);
    border-radius: 24px;
    padding: 32px;
    position: relative;
    overflow: hidden
}

.cert-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--green), transparent)
}

.cert-inner {
    background: var(--bg1);
    border: 1px solid var(--b2);
    border-radius: 16px;
    padding: 24px;
    position: relative;
    overflow: hidden;
    margin-bottom: 20px
}

.cert-inner::before {
    content: 'CONFORME';
    position: absolute;
    top: 50%;
    right: -20px;
    transform: translateY(-50%) rotate(-35deg);
    font-size: 60px;
    font-weight: 900;
    color: rgba(108, 212, 160, .04);
    letter-spacing: 2px;
    pointer-events: none
}

.cert-logo {
    font-size: 22px;
    font-weight: 900;
    letter-spacing: -1px;
    color: var(--lime);
    margin-bottom: 20px
}

.cert-row {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    padding: 8px 0;
    border-bottom: 1px solid var(--b)
}

.cert-row:last-child {
    border-bottom: none
}

.cert-lbl {
    font-size: 11px;
    color: var(--mu)
}

.cert-val {
    font-size: 12.5px;
    font-weight: 700;
    color: var(--text)
}

.cert-val.green {
    color: var(--green)
}

.cert-val.lime {
    color: var(--lime)
}

.cert-stamp {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px;
    background: var(--ga);
    border: 1px solid rgba(108, 212, 160, .15);
    border-radius: 10px;
    font-size: 12px;
    font-weight: 700;
    color: var(--green)
}

.cert-formats {
    display: flex;
    gap: 8px;
    margin-top: 16px;
    flex-wrap: wrap
}

.cert-fmt {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 10px;
    background: var(--bg1);
    border: 1px solid var(--b);
    font-size: 12px;
    font-weight: 600;
    color: var(--t2)
}

@media(max-width:860px) {
    .conf-inner {
        grid-template-columns: 1fr;
        gap: 56px
    }
}

/* ════════════════════════════════════════
   COMPARATIF
════════════════════════════════════════ */
.stack {
    padding: 120px 24px;
    background: var(--bg2)
}

.stack-head {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 64px
}

.stack-head .h2 {
    margin: 14px 0 18px
}

.vs-table {
    border: 1px solid var(--b);
    border-radius: 24px;
    overflow: hidden
}

.vs-hdr {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    background: var(--card);
    border-bottom: 1px solid var(--b)
}

.vs-hdr-cell {
    padding: 18px 24px;
    font-size: 12.5px;
    font-weight: 800;
    letter-spacing: .3px;
    text-transform: uppercase;
    color: var(--mu)
}

.vs-hdr-cell.lbos {
    color: var(--lime);
    display: flex;
    align-items: center;
    gap: 8px
}

.vs-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    border-bottom: 1px solid var(--b);
    transition: background .2s
}

.vs-row:last-child {
    border-bottom: none
}

.vs-row:hover {
    background: rgba(255, 255, 255, .015)
}

.vs-cell {
    padding: 16px 24px;
    font-size: 13.5px;
    display: flex;
    align-items: center;
    gap: 8px
}

.vs-cell.feature {
    color: var(--t2);
    font-weight: 500
}

.vs-cell.no {
    color: var(--mu2)
}

.vs-cell.yes {
    color: var(--green);
    font-weight: 700
}

.vs-cell.yes-lbos {
    color: var(--lime);
    font-weight: 800
}

/* ════════════════════════════════════════
   FOUNDING MEMBER BENEFITS
════════════════════════════════════════ */
.founding {
    padding: 100px 24px;
    background: var(--bg);
    position: relative;
    overflow: hidden
}

.founding::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 50%, rgba(222, 254, 101, .04), transparent 70%);
    pointer-events: none
}

.founding-inner {
    max-width: 900px;
    margin: 0 auto
}

.founding-head {
    text-align: center;
    margin-bottom: 52px
}

.founding-head .ey {
    justify-content: center;
    margin-bottom: 16px
}

.founding-head .h2 {
    margin-bottom: 16px
}

.founding-card {
    background: var(--card);
    border: 1px solid rgba(222, 254, 101, .18);
    border-radius: 28px;
    padding: 52px;
    position: relative;
    overflow: hidden
}

.founding-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), var(--green), transparent)
}

.fc-glow {
    position: absolute;
    top: -60px;
    right: -60px;
    width: 350px;
    height: 350px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(222, 254, 101, .05), transparent 70%);
    pointer-events: none
}

.founding-benefits {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 40px;
    position: relative;
    z-index: 1
}

.fb {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 20px;
    background: var(--bg1);
    border: 1px solid var(--b);
    border-radius: 16px;
    transition: all .3s
}

.fb:hover {
    border-color: rgba(222, 254, 101, .15);
    transform: translateY(-2px)
}

.fb-ico {
    width: 44px;
    height: 44px;
    border-radius: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0
}

.fb-h {
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 4px
}

.fb-p {
    font-size: 12.5px;
    color: var(--mu);
    line-height: 1.6
}

.founding-urgency {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    background: rgba(222, 254, 101, .04);
    border: 1px solid rgba(222, 254, 101, .12);
    border-radius: 16px;
    position: relative;
    z-index: 1;
    flex-wrap: wrap
}

.fu-ico {
    font-size: 24px;
    flex-shrink: 0
}

.fu-txt {
    flex: 1;
    font-size: 13px;
    color: var(--t2);
    line-height: 1.6
}

.fu-txt strong {
    color: var(--lime);
    font-weight: 800
}

.fu-cta {
    padding: 12px 24px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 800;
    background: var(--lime);
    color: #0C0C0C;
    border: none;
    transition: all .25s;
    white-space: nowrap;
    flex-shrink: 0
}

.fu-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 8px 26px rgba(222, 254, 101, .28)
}

/* Progress bar */
.founding-progress {
    margin-bottom: 32px;
    position: relative;
    z-index: 1
}

.fp-top {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 10px
}

.fp-label {
    font-size: 13px;
    color: var(--t2);
    font-weight: 600
}

.fp-count {
    font-size: 13px;
    font-weight: 800;
    color: var(--lime)
}

.fp-track {
    height: 8px;
    background: rgba(255, 255, 255, .06);
    border-radius: 8px;
    overflow: hidden
}

.fp-fill {
    height: 100%;
    border-radius: 8px;
    background: linear-gradient(90deg, var(--lime), var(--green));
    width: 0%;
    transition: width 1.5s var(--ease)
}

@media(max-width:680px) {
    .founding-benefits {
        grid-template-columns: 1fr
    }

    .founding-card {
        padding: 32px 24px
    }
}

/* ════════════════════════════════════════
   WAITLIST FORM — CENTRAL
════════════════════════════════════════ */
.wl-form-sec {
    padding: 120px 24px;
    background: var(--bg2);
    position: relative;
    overflow: hidden
}

.wl-form-sec::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(222, 254, 101, .04), transparent 70%);
    pointer-events: none
}

.wl-form-wrap {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    z-index: 1
}

.wl-form-head {
    text-align: center;
    margin-bottom: 44px
}

.wl-form-head .ey {
    justify-content: center;
    margin-bottom: 16px
}

.wl-form-head .h2 {
    margin-bottom: 16px
}

.wl-form-head .sub {
    margin: 0 auto
}

.wl-card {
    background: var(--card);
    border: 1px solid rgba(222, 254, 101, .15);
    border-radius: 28px;
    padding: 44px;
    position: relative;
    overflow: hidden
}

.wl-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--lime), var(--green), transparent)
}

.wl-glow {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 400px;
    height: 300px;
    background: radial-gradient(circle, rgba(222, 254, 101, .06), transparent 70%);
    pointer-events: none;
    border-radius: 50%
}

.wl-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
    position: relative;
    z-index: 1
}

.wl-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px
}

.wl-field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.wl-label {
    font-size: 11.5px;
    font-weight: 700;
    color: var(--t2);
    letter-spacing: .3px
}

.wl-input {
    background: var(--bg1);
    border: 1.5px solid var(--b2);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: all .25s;
    width: 100%
}

.wl-input::placeholder {
    color: var(--mu)
}

.wl-input:focus {
    border-color: rgba(222, 254, 101, .3);
    box-shadow: 0 0 0 3px rgba(222, 254, 101, .06)
}

.wl-select {
    background: var(--bg1);
    border: 1.5px solid var(--b2);
    border-radius: 12px;
    padding: 13px 16px;
    font-size: 14px;
    color: var(--text);
    outline: none;
    transition: all .25s;
    width: 100%;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23787068' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center
}

.wl-select option {
    background: var(--card)
}

.wl-submit {
    padding: 18px;
    border-radius: 14px;
    font-size: 16px;
    font-weight: 900;
    background: var(--lime);
    color: #0C0C0C;
    border: none;
    transition: all .3s;
    letter-spacing: -.2px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    position: relative;
    overflow: hidden
}

.wl-submit::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, .15), transparent);
    transform: translateX(-100%);
    transition: transform .6s
}

.wl-submit:hover::before {
    transform: translateX(100%)
}

.wl-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 48px rgba(222, 254, 101, .32)
}

.wl-reassure {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap
}

.wr-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    color: var(--mu)
}

.wr-check {
    color: var(--green);
    font-weight: 700
}

/* Success state */
.wl-success {
    display: none;
    text-align: center;
    padding: 20px 0;
    animation: fadeUp .5s ease both
}

.ws-icon {
    font-size: 52px;
    margin-bottom: 16px;
    display: block;
    animation: tickIn .4s var(--ease) both
}

.ws-title {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -.8px;
    margin-bottom: 10px
}

.ws-sub {
    font-size: 14px;
    color: var(--mu);
    line-height: 1.7;
    margin-bottom: 20px
}

.ws-rank {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--la);
    border: 1px solid rgba(222, 254, 101, .2);
    border-radius: 50px;
    padding: 10px 22px;
    font-size: 14px;
    font-weight: 800;
    color: var(--lime)
}

@media(max-width:560px) {
    .wl-row {
        grid-template-columns: 1fr
    }

    .wl-card {
        padding: 28px 22px
    }
}


/* ════════════════════════════════════════
   FAQ
════════════════════════════════════════ */
.faq {
    padding: 100px 24px;
    background: var(--bg2)
}

.faq-head {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 52px
}

.faq-head .h2 {
    margin: 14px 0 18px
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 4px
}

.fq {
    background: var(--card);
    border: 1px solid var(--b);
    border-radius: 16px;
    overflow: hidden;
    transition: all .3s
}

.fq.open {
    border-color: var(--b2)
}

.fq-q {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 20px 24px;
    cursor: none;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: -.2px;
    transition: color .2s
}

.fq-q:hover {
    color: var(--lime)
}

.fq-icon {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--b);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    flex-shrink: 0;
    transition: all .3s;
    color: var(--mu)
}

.fq.open .fq-icon {
    background: var(--la);
    border-color: rgba(222, 254, 101, .2);
    color: var(--lime);
    transform: rotate(45deg)
}

.fq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height .45s var(--ease)
}

.fq.open .fq-a {
    max-height: 300px
}

.fq-a-inner {
    padding: 0 24px 22px;
    font-size: 14px;
    color: var(--mu);
    line-height: 1.78;
    border-top: 1px solid var(--b)
}

.fq-a-inner strong {
    color: var(--t2);
    font-weight: 600
}

/* ════════════════════════════════════════
   FOOTER
════════════════════════════════════════ */
footer {
    padding: 48px 24px;
    border-top: 1px solid var(--b);
    background: var(--bg)
}

.foot-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px
}

.foot-logo {
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -1px
}

.foot-logo span {
    color: var(--lime)
}

.foot-links {
    display: flex;
    gap: 20px
}

.foot-links a {
    font-size: 12.5px;
    color: var(--mu);
    transition: color .2s;
    font-weight: 500
}

.foot-links a:hover {
    color: var(--text)
}

.foot-copy {
    font-size: 12px;
    color: var(--mu2)
}

/* COMPLIANCE BAR */
.compliance-bar {
    padding: 28px 24px;
    background: rgba(108, 212, 160, .03);
    border-top: 1px solid rgba(108, 212, 160, .08);
    border-bottom: 1px solid rgba(108, 212, 160, .08)
}

.cbar-inner {
    display: flex;
    align-items: stretch;
    gap: 24px;
    justify-content: center;
    flex-wrap: wrap
}

.cbar-item {
    display: flex;
    align-items: center;
    gap: 12px;
    max-width: 300px;
    flex: 1;
    min-width: 200px
}

.cbar-ico {
    font-size: 18px;
    flex-shrink: 0
}

.cbar-txt {
    font-size: 12.5px;
    color: var(--mu);
    line-height: 1.6
}

.cbar-txt strong {
    color: var(--t2);
    font-weight: 700
}

.cbar-sep {
    width: 1px;
    align-self: stretch;
    background: rgba(108, 212, 160, .15);
    flex-shrink: 0;
    min-height: 40px
}

@media(max-width:860px) {
    .cbar-sep {
        display: none
    }

    .cbar-item {
        min-width: 80%
    }
}