:root {
    --blue: #1C7FFE;
    --blue-deep: #0B5FE0;
    --blue-soft: #E4EFFF;
    --blue-ghost: #F2F7FF;
    --navy: #081B3F;
    --navy-2: #0D2A5C;
    --ink: #0D224A;
    --ink-soft: #46598C;
    --paper: #F2F7FF;
    --cloud: #E7F0FF;
    --line: #D7E4F8;
    --fomo: #FF6B1A;
    --fomo-soft: #FFF0E6;
    --wa: #1FAF5A;
    --wa-soft: #E4F8EC;
    --ig1: #F58529;
    --ig2: #DD2A7B;
    --ig3: #8134AF;
    --r: 20px;
    --display: 'Inter Tight', sans-serif;
    --body: 'Inter', sans-serif;
    --mono: 'IBM Plex Mono', monospace;
}

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

html {
    scroll-behavior: smooth
}

body {
    font-family: var(--body);
    background: var(--paper);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased
}

img {
    max-width: 100%
}

a {
    color: inherit
}

.wrap {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 24px
}

h1,
h2,
h3 {
    font-family: var(--display);
    line-height: 1.07;
    letter-spacing: -.03em;
    overflow-wrap: break-word;
    max-width: 100%
}

.eyebrow {
    font-family: var(--mono);
    font-size: .74rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .16em;
    color: var(--blue);
    display: inline-flex;
    align-items: center;
    gap: 10px
}

.eyebrow::before {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--blue)
}

.eyebrow::after {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--blue);
    flex-shrink: 0
}

.sec-head.center .eyebrow::after {
    content: "";
    width: 26px;
    height: 2px;
    background: var(--blue)
}

.who .sec-head.center .eyebrow::after {
    background: #7FB5FF
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    font-weight: 600;
    font-size: .96rem;
    padding: 15px 28px;
    border-radius: 14px;
    text-decoration: none;
    transition: transform .16s ease, box-shadow .16s ease;
    cursor: pointer;
    border: none;
    font-family: var(--body)
}

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

.btn .arr {
    display: inline-block;
    transition: transform .16s
}

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

.btn-primary {
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: #fff;
    box-shadow: 0 10px 28px rgba(28, 127, 254, .35), inset 0 1px 0 rgba(255, 255, 255, .25)
}

.btn-primary:hover {
    box-shadow: 0 16px 36px rgba(28, 127, 254, .45), inset 0 1px 0 rgba(255, 255, 255, .25)
}

.btn-ghost-dark {
    background: rgba(255, 255, 255, .07);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, .22);
    backdrop-filter: blur(6px)
}

.btn-ghost-dark:hover {
    background: rgba(255, 255, 255, .12)
}

.btn-ghost {
    background: #fff;
    color: var(--ink);
    border: 1.5px solid var(--line)
}

.btn-ghost:hover {
    border-color: var(--blue);
    color: var(--blue)
}

.btn-light {
    background: #fff;
    color: var(--navy)
}

.btn-fomo {
    background: linear-gradient(135deg, #FF7A2E, #F4520B);
    color: #fff;
    box-shadow: 0 10px 28px rgba(255, 107, 26, .4)
}

/* ===== ANNOUNCE ===== */
.announce {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(90deg, #F4520B, #FF7A2E);
    color: #fff;
    text-align: center;
    font-size: .86rem;
    font-weight: 500;
    padding: 11px 16px;
    text-decoration: none
}

.announce strong {
    font-weight: 700
}

.announce .pill {
    background: rgba(255, 255, 255, .2);
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 600;
    padding: 3px 10px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .06em
}

.announce .arr {
    transition: transform .15s
}

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

/* ===== NAV ===== */
nav {
    position: sticky;
    top: 0;
    z-index: 60;
    background: rgba(8, 27, 63, .78);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.nav-in {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 76px
}

.logo-img {
    display: flex;
    align-items: center;
    text-decoration: none
}

.logo-img img {
    height: 44px;
    width: auto;
    display: block
}

.nav-links {
    display: flex;
    gap: 32px;
    list-style: none
}

.nav-links a {
    text-decoration: none;
    font-size: .93rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    position: relative;
    padding-bottom: 4px
}

.nav-links a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    height: 2px;
    width: 0;
    background: var(--blue);
    transition: width .2s
}

.nav-links a:hover {
    color: #fff
}

.nav-links a:hover::after {
    width: 100%
}

.nav-cta {
    display: flex;
    gap: 14px;
    align-items: center
}

.nav-cta .login {
    text-decoration: none;
    font-size: .92rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .85)
}

.nav-cta .btn {
    padding: 11px 20px;
    font-size: .88rem;
    border-radius: 12px
}

/* ===== HERO ===== */
.hero {
    background: radial-gradient(1100px 600px at 75% -10%, rgba(28, 127, 254, .35), transparent 60%), radial-gradient(800px 500px at -10% 110%, rgba(28, 127, 254, .18), transparent 55%), linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 84px 0 90px;
    position: relative;
    overflow: hidden
}

.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .10) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(700px 500px at 70% 20%, #000 30%, transparent 75%);
    pointer-events: none
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.04fr .96fr;
    gap: 60px;
    align-items: center;
    position: relative
}

.hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    background: rgba(255, 255, 255, .08);
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: 999px;
    padding: 8px 17px;
    font-size: .83rem;
    font-weight: 500;
    margin-bottom: 28px;
    backdrop-filter: blur(6px)
}

.hero .badge .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #34E27A;
    animation: pulse 1.8s infinite
}

@keyframes pulse {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(52, 226, 122, .55)
    }

    55% {
        box-shadow: 0 0 0 8px rgba(52, 226, 122, 0)
    }
}

.hero h1 {
    font-size: clamp(2.1rem, 5.3vw, 4.5rem);
    font-weight: 800;
    margin-bottom: 26px;
    letter-spacing: -.035em
}

.hero h1 .hl {
    background: linear-gradient(120deg, #5FA8FF, #9BC9FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.hero p.lead {
    font-size: 1.2rem;
    color: #B9CBEE;
    max-width: 560px;
    margin-bottom: 36px
}

.hero p.lead strong {
    color: #fff;
    font-weight: 600
}

.hero-ctas {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 34px
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(4, auto);
    gap: 34px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12);
    width: fit-content
}

.hero-stats b {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.8rem;
    display: block;
    color: #fff;
    letter-spacing: -.02em
}

.hero-stats span {
    font-size: .76rem;
    color: #8FA9DE;
    line-height: 1.35;
    display: block;
    max-width: 112px
}

/* Campaign dashboard (signature) */
.dash {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 24px;
    backdrop-filter: blur(14px);
    padding: 24px;
    box-shadow: 0 40px 90px rgba(0, 0, 0, .4)
}

.dash-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px
}

.dash-head h3 {
    font-size: 1.08rem;
    font-weight: 700
}

.dash-head .live {
    font-family: var(--mono);
    font-size: .64rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #34E27A;
    display: flex;
    align-items: center;
    gap: 7px
}

.dash-head .live::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #34E27A;
    animation: pulse 1.8s infinite
}

.camp {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 15px;
    padding: 15px 16px;
    margin-bottom: 11px;
    transition: background .2s, border-color .2s
}

.camp:hover {
    background: rgba(255, 255, 255, .09);
    border-color: rgba(255, 255, 255, .2)
}

.camp:last-child {
    margin-bottom: 0
}

.camp-top {
    display: flex;
    align-items: center;
    gap: 11px;
    margin-bottom: 10px
}

.camp-ic {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem
}

.camp-ic svg {
    width: 17px;
    height: 17px
}

.camp-ic.wa {
    background: rgba(31, 175, 90, .22);
    color: #34E27A
}

.camp-ic.ig {
    background: linear-gradient(135deg, rgba(245, 133, 41, .3), rgba(221, 42, 123, .3));
    color: #FF8FBE
}

.camp-ic.so {
    background: rgba(221, 42, 123, .2);
    color: #FF6BB3
}

.camp-ic.al {
    background: rgba(28, 127, 254, .25);
    color: #6FB1FF
}

.camp-top b {
    font-size: .93rem;
    font-weight: 600;
    display: block;
    line-height: 1.25
}

.camp-top small {
    font-size: .7rem;
    color: #8FA9DE;
    display: block
}

.camp-kpi {
    margin-left: auto;
    text-align: right
}

.camp-kpi b {
    font-family: var(--display);
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff
}

.camp-kpi small {
    font-size: .62rem;
    color: #8FA9DE;
    display: block;
    line-height: 1.2
}

.camp .bar {
    height: 5px;
    background: rgba(255, 255, 255, .1);
    border-radius: 99px;
    overflow: hidden
}

.camp .bar i {
    display: block;
    height: 100%;
    border-radius: 99px;
    width: 0;
    transition: width 1.6s cubic-bezier(.2, .7, .2, 1)
}

.camp .bar .f-wa {
    background: #34E27A
}

.camp .bar .f-ig {
    background: linear-gradient(90deg, var(--ig1), var(--ig2), var(--ig3))
}

.camp .bar .f-so {
    background: #FF6BB3
}

.camp .bar .f-al {
    background: var(--blue)
}

.dash-foot {
    margin-top: 15px;
    text-align: center
}

.dash-foot a {
    font-size: .82rem;
    font-weight: 600;
    color: #9BC9FF;
    text-decoration: none
}

.dash-foot a:hover {
    color: #fff
}

/* ===== PROOF STRIP ===== */
.proof {
    background: #E0ECFF;
    border-bottom: 1px solid var(--line);
    padding: 22px 0
}

.proof-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    font-size: .88rem;
    color: var(--ink-soft)
}

.proof-in b {
    color: var(--ink)
}

.proof-in .stars {
    color: #FFB020;
    letter-spacing: 2px
}

/* ===== SECTIONS ===== */
.section {
    padding: 96px 0
}

.sec-head {
    max-width: 800px;
    margin-bottom: 60px
}

.sec-head.center {
    margin-left: auto;
    margin-right: auto;
    text-align: center
}

.sec-head.center .eyebrow {
    justify-content: center
}

.sec-head h2 {
    font-size: clamp(1.7rem, 4vw, 3.15rem);
    font-weight: 800;
    margin: 18px 0 20px
}

.sec-head p {
    color: var(--ink-soft);
    font-size: 1.13rem
}

/* ===== PILLARS ===== */
.pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px
}

.pillar {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--r);
    padding: 32px;
    position: relative;
    overflow: hidden;
    transition: transform .2s, box-shadow .2s
}

.pillar:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(13, 34, 74, .1)
}

.pillar .k {
    font-family: var(--mono);
    font-size: .68rem;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--ink-soft);
    margin-bottom: 14px
}

.pillar .num {
    font-family: var(--display);
    font-weight: 800;
    font-size: 2.7rem;
    color: var(--blue);
    display: block;
    margin-bottom: 6px;
    letter-spacing: -.03em
}

.pillar h3 {
    font-size: 1.45rem;
    margin-bottom: 10px
}

.pillar p {
    font-size: .96rem;
    color: var(--ink-soft)
}

.chip-groups {
    margin-top: 46px;
    display: flex;
    flex-direction: column;
    gap: 18px
}

.chip-group {
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 14px;
    align-items: start
}

.chip-list {
    display: flex;
    gap: 11px;
    flex-wrap: wrap
}

.cg-label {
    font-family: var(--mono);
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .13em;
    color: var(--ink-soft);
    text-align: left;
    padding-top: 12px;
    min-width: 130px
}

@media(max-width:760px) {
    .chip-group {
        grid-template-columns: 1fr;
        gap: 10px
    }

    .cg-label {
        text-align: left;
        padding-top: 0
    }
}

.chip {
    font-size: .87rem;
    font-weight: 600;
    background: #fff;
    color: var(--ink);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 10px 18px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 14px rgba(13, 34, 74, .06)
}

.chip::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--blue);
    flex-shrink: 0
}

.chip.ia {
    border-color: #FFD9BE;
    background: var(--fomo-soft)
}

.chip.ia::before {
    background: var(--fomo)
}

/* ===== CAMPAGNES ===== */
.campagnes {
    background: linear-gradient(180deg, #DCEAFF, var(--paper));
    border-top: 1px solid var(--line)
}

.camp-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px
}

.camp-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .25s
}

.camp-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(13, 34, 74, .13)
}

.camp-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px
}

.camp-card.c-wa::before {
    background: var(--wa)
}

.camp-card.c-ig::before {
    background: linear-gradient(90deg, var(--ig1), var(--ig2), var(--ig3))
}

.camp-card.c-so::before {
    background: #E84A9B
}

.camp-card.c-al::before {
    background: var(--blue)
}

.cc-top {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-bottom: 20px
}

.cc-ic {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.3rem
}

.cc-ic svg {
    width: 22px;
    height: 22px
}

.c-wa .cc-ic {
    background: var(--wa-soft);
    color: #128a45
}

.c-ig .cc-ic {
    background: linear-gradient(135deg, #FDEEDC, #FCE0EC, #EFE3FA);
    color: #C72670
}

.c-so .cc-ic {
    background: #FCE3EF;
    color: #C9337E
}

.c-al .cc-ic {
    background: var(--blue-soft);
    color: var(--blue)
}

.cc-top .cc-name b {
    font-family: var(--display);
    font-size: 1.34rem;
    font-weight: 700;
    display: block;
    letter-spacing: -.02em
}

.cc-top .cc-name small {
    font-family: var(--mono);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--ink-soft)
}

.cc-live {
    margin-left: auto;
    font-family: var(--mono);
    font-size: .62rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--wa);
    background: var(--wa-soft);
    padding: 6px 12px;
    border-radius: 99px;
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0
}

.cc-live::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--wa);
    animation: pulse 1.8s infinite
}

.cc-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 20px
}

.cc-m {
    background: #EFF6FF;
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 13px 14px
}

.cc-m b {
    font-family: var(--display);
    font-weight: 800;
    font-size: 1.25rem;
    display: block;
    letter-spacing: -.02em
}

.c-wa .cc-m b {
    color: #128a45
}

.c-ig .cc-m b {
    color: #C72670
}

.c-so .cc-m b {
    color: #C9337E
}

.c-al .cc-m b {
    color: var(--blue)
}

.cc-m small {
    font-size: .69rem;
    color: var(--ink-soft);
    line-height: 1.3;
    display: block
}

.camp-card p.desc {
    color: var(--ink-soft);
    font-size: .98rem;
    margin-bottom: 18px
}

.camp-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 24px;
    flex: 1
}

.camp-card li {
    display: flex;
    gap: 10px;
    font-size: .94rem;
    align-items: flex-start
}

.camp-card li::before {
    content: "✓";
    font-weight: 700;
    flex-shrink: 0;
    width: 19px;
    height: 19px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .66rem;
    margin-top: 2px
}

.c-wa li::before {
    background: var(--wa-soft);
    color: #128a45
}

.c-ig li::before {
    background: #FCE0EC;
    color: #C72670
}

.c-so li::before {
    background: #FCE3EF;
    color: #C9337E
}

.c-al li::before {
    background: var(--blue-soft);
    color: var(--blue)
}

.cc-cta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap
}

.cc-cta .btn {
    padding: 12px 22px;
    font-size: .9rem
}

.cc-alert {
    display: flex;
    align-items: center;
    gap: 9px;
    background: var(--fomo-soft);
    color: #C2410C;
    border: 1px solid #FFD9BE;
    font-size: .79rem;
    font-weight: 600;
    padding: 10px 15px;
    border-radius: 12px;
    margin-bottom: 20px
}

.cc-alert .za {
    font-size: .9rem
}

/* ===== FOMO BAND ===== */
.fomo-band {
    margin-top: 34px;
    background: linear-gradient(115deg, var(--navy) 0%, var(--navy-2) 55%, #7A2E0B 130%);
    color: #fff;
    border-radius: 26px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1.2fr .8fr;
    gap: 36px;
    align-items: center;
    position: relative;
    overflow: hidden
}

.fomo-band::before {
    content: "";
    position: absolute;
    width: 520px;
    height: 520px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 107, 26, .4), transparent 65%);
    top: -220px;
    right: -140px
}

.fomo-band h3 {
    font-size: clamp(1.35rem, 2.7vw, 2.15rem);
    margin-bottom: 14px;
    position: relative;
    letter-spacing: -.028em
}

.fomo-band p {
    color: #C6D6F5;
    font-size: .98rem;
    position: relative
}

.fomo-band p b {
    color: #FFB78A
}

.fomo-band .right {
    display: flex;
    flex-direction: column;
    gap: 14px;
    align-items: flex-start;
    position: relative
}

.fomo-band .right .note {
    font-size: .78rem;
    color: #8FA9DE
}

/* ===== ROWS ===== */
.rows {
    display: flex;
    flex-direction: column;
    gap: 22px
}

.row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 52px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 46px;
    transition: box-shadow .25s
}

.row:hover {
    box-shadow: 0 24px 56px rgba(13, 34, 74, .09)
}

.row:nth-child(even) .row-visual {
    order: -1
}

.row h3 {
    font-size: 1.85rem;
    margin-bottom: 14px;
    letter-spacing: -.028em
}

.row p {
    color: var(--ink-soft);
    margin-bottom: 20px
}

.row .mini {
    display: flex;
    flex-wrap: wrap;
    gap: 8px
}

.mini span {
    font-size: .79rem;
    font-weight: 500;
    background: #EFF6FF;
    border: 1px solid var(--line);
    padding: 6px 13px;
    border-radius: 999px
}

.row-visual {
    border-radius: 18px;
    min-height: 250px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px
}

.rv-stock {
    background: linear-gradient(150deg, var(--blue-soft), #fff)
}

.rv-crm {
    background: linear-gradient(150deg, #FFF0E6, #fff)
}

.rv-diff {
    background: linear-gradient(150deg, #FDEFF5, #fff)
}

.fake-ui {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    width: 100%;
    max-width: 390px;
    box-shadow: 0 18px 44px rgba(13, 34, 74, .1);
    padding: 20px;
    font-size: .83rem
}

.fake-ui .fu-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--mono);
    font-size: .66rem;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: var(--ink-soft);
    margin-bottom: 12px
}

.fu-line {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 11px 0;
    border-top: 1px solid var(--line)
}

.fu-line b {
    font-weight: 600
}

.fu-pill {
    font-size: .67rem;
    font-weight: 600;
    padding: 4px 11px;
    border-radius: 99px
}

.fu-pill.g {
    background: var(--wa-soft);
    color: #128a45
}

.fu-pill.o {
    background: var(--fomo-soft);
    color: var(--fomo)
}

.fu-pill.v {
    background: var(--blue-soft);
    color: var(--blue)
}

/* ===== WHO ===== */
.who {
    background: radial-gradient(900px 520px at 82% -15%, rgba(28, 127, 254, .4), transparent 60%), linear-gradient(160deg, var(--navy), var(--navy-2));
    color: #fff;
    border: none
}

.who .sec-head h2 {
    color: #fff
}

.who .eyebrow {
    color: #7FB5FF
}

.who .eyebrow::before {
    background: #7FB5FF
}

.who-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px
}

.who-card {
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: var(--r);
    padding: 28px;
    background: rgba(255, 255, 255, .06);
    backdrop-filter: blur(8px);
    transition: transform .2s, background .2s
}

.who-card:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, .1)
}

.who-ic {
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: rgba(28, 127, 254, .3);
    color: #8FC0FF;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px
}

.who-ic svg {
    width: 22px;
    height: 22px
}

.who-card h3 {
    font-size: 1.16rem;
    margin-bottom: 8px;
    color: #fff
}

.who-card p {
    font-size: .9rem;
    color: #B9CBEE
}

/* ===== PRICING ===== */
.bill-toggle {
    display: inline-flex;
    gap: 4px;
    background: #fff;
    border: 1px solid #C8DCFA;
    border-radius: 999px;
    padding: 5px;
    margin: 0 auto 40px;
    position: relative
}

.toggle-wrap {
    text-align: center
}

.bt-btn {
    font-family: var(--body);
    font-size: .9rem;
    font-weight: 600;
    border: none;
    background: transparent;
    color: var(--ink-soft);
    padding: 11px 24px;
    border-radius: 999px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.bt-btn.active {
    background: var(--navy);
    color: #fff
}

.bt-gift {
    font-size: .64rem;
    font-weight: 700;
    background: var(--fomo-soft);
    color: var(--fomo);
    padding: 3px 9px;
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .04em
}

.bt-btn.active .bt-gift {
    background: var(--fomo);
    color: #fff
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    align-items: stretch
}

.plan {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 24px;
    padding: 36px;
    display: flex;
    flex-direction: column;
    transition: transform .2s, box-shadow .25s
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 24px 50px rgba(13, 34, 74, .1)
}

.plan.featured {
    border: 2px solid var(--blue);
    position: relative;
    box-shadow: 0 30px 64px rgba(28, 127, 254, .18);
    background: linear-gradient(180deg, var(--blue-ghost), #fff 40%)
}

.plan .pop {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #FF7A2E, #F4520B);
    color: #fff;
    font-family: var(--mono);
    font-size: .64rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    padding: 7px 16px;
    border-radius: 99px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(255, 107, 26, .4)
}

.plan h3 {
    font-size: 1.5rem;
    margin-bottom: 6px
}

.plan .pdesc {
    font-size: .88rem;
    color: var(--ink-soft);
    margin-bottom: 20px;
    min-height: 42px
}

.plan .price {
    font-family: var(--display);
    font-weight: 800;
    font-size: 2.75rem;
    letter-spacing: -.03em
}

.plan .price small {
    font-family: var(--body);
    font-weight: 500;
    font-size: .85rem;
    color: var(--ink-soft);
    letter-spacing: 0
}

.plan ul {
    list-style: none;
    margin: 24px 0;
    display: flex;
    flex-direction: column;
    gap: 11px;
    font-size: .89rem;
    flex: 1
}

.plan li {
    display: flex;
    gap: 9px;
    align-items: flex-start
}

.plan li::before {
    content: "✓";
    color: var(--wa);
    font-weight: 700;
    flex-shrink: 0
}

.plan li.hot {
    font-weight: 600
}

.plan li.hot::before {
    color: var(--fomo)
}

.plan .btn {
    width: 100%
}

/* ===== FAQ ===== */
.faq {
    max-width: 780px;
    margin: 0 auto
}

.faq details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: 16px;
    padding: 22px 26px;
    margin-bottom: 12px;
    transition: box-shadow .2s
}

.faq details:hover {
    box-shadow: 0 10px 28px rgba(13, 34, 74, .07)
}

.faq summary {
    font-weight: 600;
    cursor: pointer;
    font-size: 1.08rem;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px
}

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

.faq summary::after {
    content: "+";
    font-family: var(--display);
    font-size: 1.4rem;
    color: var(--blue);
    transition: transform .2s;
    flex-shrink: 0
}

.faq details[open] summary::after {
    transform: rotate(45deg)
}

.faq details p {
    margin-top: 12px;
    font-size: .93rem;
    color: var(--ink-soft)
}

/* ===== FINAL ===== */
.final {
    background: radial-gradient(900px 500px at 80% -20%, rgba(28, 127, 254, .4), transparent 60%), linear-gradient(160deg, var(--navy), var(--navy-2));
    color: #fff;
    border-radius: 30px;
    padding: 78px 50px;
    text-align: center;
    position: relative;
    overflow: hidden
}

.final::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 26px 26px;
    mask-image: radial-gradient(500px 350px at 50% 0%, #000 30%, transparent 75%)
}

.final h2 {
    font-size: clamp(1.8rem, 4.1vw, 3.3rem);
    margin-bottom: 20px;
    position: relative;
    letter-spacing: -.032em
}

.final p {
    color: #B9CBEE;
    max-width: 580px;
    margin: 0 auto 34px;
    position: relative
}

.final .hero-ctas {
    justify-content: center;
    position: relative;
    margin-bottom: 0
}

.final .note {
    font-size: .82rem;
    color: #8FA9DE;
    margin-top: 22px;
    position: relative
}

/* ===== FOOTER ===== */
footer {
    padding: 58px 0 36px;
    font-size: .88rem;
    color: var(--ink-soft);
    background: #fff;
    border-top: 1px solid var(--line)
}

.foot-grid {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 36px
}

.foot-grid ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px
}

.foot-grid a {
    text-decoration: none
}

.foot-grid a:hover {
    color: var(--blue)
}

.foot-grid h4 {
    font-size: .78rem;
    text-transform: uppercase;
    letter-spacing: .1em;
    margin-bottom: 14px;
    color: var(--ink);
    font-family: var(--mono);
    font-weight: 600
}

.foot-bottom {
    border-top: 1px solid var(--line);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
    font-size: .8rem
}

/* reveal */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease
}

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

@media (prefers-reduced-motion:reduce) {

    *,
    *::before,
    *::after {
        animation: none !important;
        transition: none !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }

    .camp .bar i {
        transition: none
    }
}

@media(max-width:980px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 46px
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        width: 100%;
        gap: 20px
    }

    .pillars,
    .camp-grid {
        grid-template-columns: 1fr
    }

    .row {
        grid-template-columns: 1fr;
        padding: 30px
    }

    .row:nth-child(even) .row-visual {
        order: 0
    }

    .who-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .price-grid {
        grid-template-columns: 1fr
    }

    .nav-links {
        display: none
    }

    .fomo-band {
        grid-template-columns: 1fr;
        padding: 36px 28px
    }

    .cc-metrics {
        grid-template-columns: repeat(3, 1fr)
    }
}

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

    .final {
        padding: 54px 24px
    }

    .nav-cta .login {
        display: none
    }

    .nav-cta .create {
        display: none
    }

    .cc-metrics {
        grid-template-columns: 1fr 1fr
    }

    .announce {
        font-size: .78rem
    }
}

/* ===================== MOBILE ===================== */
@media(max-width:980px) {
    .section {
        padding: 64px 0
    }

    .hero {
        padding: 56px 0 64px
    }

    .sec-head {
        margin-bottom: 42px
    }

    .camp-card {
        padding: 28px
    }

    .dash {
        padding: 18px
    }
}

@media(max-width:760px) {
    .wrap {
        padding: 0 18px
    }

    .announce {
        flex-wrap: wrap;
        gap: 6px;
        padding: 9px 12px;
        font-size: .78rem;
        line-height: 1.35
    }

    .announce .pill {
        display: none
    }

    .nav-in {
        height: 66px
    }

    .logo-img img {
        height: 36px
    }

    .nav-cta {
        gap: 10px
    }

    .nav-cta .btn {
        padding: 9px 15px;
        font-size: .82rem
    }

    .hero p.lead {
        font-size: 1.04rem
    }

    .hero-ctas {
        flex-direction: column;
        align-items: stretch
    }

    .hero-ctas .btn {
        width: 100%
    }

    .hero .badge {
        font-size: .76rem;
        padding: 7px 13px
    }

    .hero-stats {
        gap: 16px;
        padding-top: 22px
    }

    .hero-stats b {
        font-size: 1.45rem
    }

    .camp-kpi b {
        font-size: .95rem
    }

    .camp-top small {
        font-size: .66rem
    }

    .proof {
        padding: 16px 0
    }

    .proof-in {
        gap: 10px 22px;
        font-size: .8rem
    }

    .pillar {
        padding: 24px
    }

    .pillar .num {
        font-size: 2.2rem
    }

    .cc-top {
        flex-wrap: wrap;
        row-gap: 8px
    }

    .cc-live {
        margin-left: 0
    }

    .cc-metrics {
        gap: 9px
    }

    .cc-m {
        padding: 11px 12px
    }

    .cc-m b {
        font-size: 1.08rem
    }

    .cc-cta .btn {
        width: 100%
    }

    .cc-alert {
        font-size: .74rem;
        padding: 9px 12px
    }

    .fomo-band {
        padding: 28px 22px;
        border-radius: 20px
    }

    .fomo-band .right .btn {
        width: 100%
    }

    .row {
        padding: 24px;
        gap: 26px;
        border-radius: 20px
    }

    .row h3 {
        font-size: 1.4rem
    }

    .row-visual {
        min-height: 0;
        padding: 18px
    }

    .fake-ui {
        padding: 16px;
        font-size: .8rem
    }

    .who-card {
        padding: 22px
    }

    .plan {
        padding: 26px
    }

    .plan .price {
        font-size: 2.3rem
    }

    .plan .pdesc {
        min-height: 0
    }

    .bt-btn {
        padding: 10px 16px;
        font-size: .84rem
    }

    .faq details {
        padding: 18px 18px
    }

    .faq summary {
        font-size: .98rem
    }

    .final {
        border-radius: 22px
    }

    .final .hero-ctas .btn {
        width: 100%
    }

    .final img {
        height: 50px !important
    }

    .foot-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 26px
    }

    .foot-grid>div:first-child {
        grid-column: 1/-1;
        max-width: none !important
    }
}

@media(max-width:420px) {
    .hero h1 {
        font-size: 1.95rem
    }

    .sec-head h2 {
        font-size: 1.55rem
    }

    .hero-stats {
        grid-template-columns: 1fr 1fr
    }

    .cc-metrics {
        grid-template-columns: 1fr 1fr
    }

    .camp-ic {
        width: 32px;
        height: 32px
    }

    .cc-ic {
        width: 42px;
        height: 42px
    }

    .foot-bottom {
        flex-direction: column;
        gap: 6px
    }
}


.page-hero {
    background: radial-gradient(900px 500px at 75% -10%, rgba(28, 127, 254, .35), transparent 60%), linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    color: #fff;
    padding: 72px 0 80px;
    position: relative;
    overflow: hidden;
    text-align: center
}

.page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .08) 1px, transparent 1px);
    background-size: 28px 28px;
    mask-image: radial-gradient(600px 400px at 50% 0%, #000 20%, transparent 70%);
    pointer-events: none
}

.page-hero .breadcrumb {
    font-family: var(--mono);
    font-size: .68rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .45);
    margin-bottom: 20px;
    position: relative
}

.page-hero .breadcrumb a {
    color: rgba(255, 255, 255, .45);
    text-decoration: none
}

.page-hero .breadcrumb a:hover {
    color: #fff
}

.page-hero h1 {
    font-size: clamp(1.9rem, 4.5vw, 3.5rem);
    font-weight: 800;
    letter-spacing: -.035em;
    margin-bottom: 22px;
    position: relative;
    max-width: 820px;
    margin-left: auto;
    margin-right: auto
}

.page-hero h1 .hl {
    background: linear-gradient(120deg, #5FA8FF, #9BC9FF);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent
}

.page-hero .lead {
    font-size: 1.1rem;
    color: #B9CBEE;
    max-width: 600px;
    margin: 0 auto 32px;
    position: relative
}


/* A-propos layout */
.mission-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center
}

.values-4-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

@media(max-width:980px) {
    .mission-layout {
        grid-template-columns: 1fr;
        gap: 36px
    }

    .values-4-grid {
        grid-template-columns: repeat(2, 1fr)
    }
}

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

.proof {
    background: #E0ECFF;
    border-bottom: 1px solid var(--line);
    padding: 22px 0
}

.proof-in {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 38px;
    flex-wrap: wrap;
    font-size: .88rem;
    color: var(--ink-soft)
}

.proof-in b {
    color: var(--ink)
}

.proof-in .stars {
    color: #FFB020;
    letter-spacing: 2px
}

.pop-soft {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    font-family: var(--mono);
    font-size: .62rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .12em;
    padding: 7px 16px;
    border-radius: 99px;
    background: linear-gradient(135deg, var(--blue), var(--blue-deep));
    color: #fff;
    margin-bottom: 14px;
    box-shadow: 0 6px 18px rgba(28, 127, 254, .35);
    white-space: nowrap;
}

/* ── Qualité générale ── */
html {
    scroll-behavior: smooth
}

.btn {
    transition: background .18s, box-shadow .18s, transform .18s;
    will-change: transform
}

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

.btn-primary:hover {
    box-shadow: 0 8px 24px rgba(28, 127, 254, .35)
}

.btn-fomo:hover {
    box-shadow: 0 8px 24px rgba(255, 107, 26, .35)
}

.plan {
    transition: transform .2s, box-shadow .2s
}

.plan:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 52px rgba(8, 27, 63, .1)
}

.pillar {
    transition: transform .2s, box-shadow .2s
}

.pillar:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 36px rgba(8, 27, 63, .09)
}

.who-card {
    transition: transform .2s, box-shadow .2s
}

.who-card:hover {
    transform: translateY(-3px)
}

img {
    max-width: 100%;
    height: auto
}


/* ── Nav dropdown ── */
.nav-links li.has-dd {
    position: relative
}

.nav-dropdown {
    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    position: fixed;
    background: rgba(8, 27, 63, .96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border: 1px solid rgba(255, 255, 255, .08);
    border-top: none;
    border-radius: 0 0 14px 14px;
    padding: 4px 0 8px;
    min-width: 220px;
    box-shadow: 0 16px 40px rgba(0, 0, 0, .4);
    z-index: 9999;
    list-style: none;
    transition: opacity .15s, visibility .15s;
}

.has-dd.open .nav-dropdown {
    visibility: visible;
    opacity: 1;
    pointer-events: auto
}

.has-dd>a {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    cursor: pointer
}

.has-dd>a::after {
    content: "▾";
    font-size: .65rem;
    opacity: .55;
    margin-top: 1px;
    transition: transform .2s
}

.has-dd.open>a::after {
    transform: rotate(-180deg)
}

.nav-dropdown li a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    font-size: .93rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .75);
    text-decoration: none;
    transition: color .18s, background .15s;
    white-space: nowrap;
    letter-spacing: 0;
}

.nav-dropdown li a:hover {
    color: #fff;
    background: rgba(255, 255, 255, .06)
}

.nav-dropdown li:not(:last-child) a {
    border-bottom: 1px solid rgba(255, 255, 255, .06)
}


.tl {
    font-size: .9rem
}

/* ══ Bandeau logos défilant ══ */
.trust-band {
    background: #f8f9fc;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    padding: 28px 0;
    overflow: hidden
}

.trust-label {
    font-family: var(--mono);
    font-size: .65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .14em;
    color: var(--ink-soft);
    text-align: center;
    margin-bottom: 22px
}

.marquee-wrap {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.marquee {
    overflow: hidden;
    width: 100%;
    position: relative
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    width: 120px;
    height: 100%;
    z-index: 2
}

.marquee::before {
    left: 0;
    background: linear-gradient(to right, #f8f9fc, transparent)
}

.marquee::after {
    right: 0;
    background: linear-gradient(to left, #f8f9fc, transparent)
}

.marquee-track {
    display: flex;
    align-items: center;
    gap: 0;
    white-space: nowrap;
    width: max-content
}

@keyframes scroll-left {
    0% {
        transform: translateX(0)
    }

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

@keyframes scroll-right {
    0% {
        transform: translateX(-50%)
    }

    100% {
        transform: translateX(0)
    }
}

.marquee-1 .marquee-track {
    animation: scroll-left 35s linear infinite
}

.marquee-reverse {
    animation: scroll-right 38s linear infinite
}

.tl-item {
    display: inline-flex;
    align-items: center;
    font-family: var(--display);
    font-size: .92rem;
    font-weight: 700;
    color: #a8b4c8;
    letter-spacing: -.01em;
    padding: 8px 28px;
    border-right: 1px solid #e2e8f0;
    white-space: nowrap;
    transition: color .2s;
}

.tl-item:hover {
    color: var(--navy)
}


/* ══ Menu mobile (hamburger) ══ */
.nav-mobile-only {
    display: none
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: none;
    background: transparent;
    cursor: pointer;
    flex-shrink: 0
}

.nav-toggle span {
    display: block;
    height: 2px;
    width: 100%;
    background: #fff;
    border-radius: 2px;
    transition: transform .25s ease, opacity .2s ease
}

nav.menu-open .nav-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg)
}

nav.menu-open .nav-toggle span:nth-child(2) {
    opacity: 0
}

nav.menu-open .nav-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg)
}

@media(max-width:980px) {
    .nav-toggle {
        display: flex
    }

    .nav-mobile-only {
        display: block
    }

    .nav-in {
        position: relative
    }

    .nav-cta .btn {
        padding: 9px 16px;
        font-size: .85rem
    }

    .nav-links {
        display: flex;
        flex-direction: column;
        gap: 0;
        position: absolute;
        left: 0;
        right: 0;
        top: 100%;
        background: rgba(8, 27, 63, .98);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid rgba(255, 255, 255, .1);
        box-shadow: 0 22px 44px rgba(0, 0, 0, .4);
        padding: 6px 0 12px;
        max-height: 0;
        overflow: hidden;
        opacity: 0;
        pointer-events: none;
        transition: max-height .32s ease, opacity .25s ease;
    }

    nav.menu-open .nav-links {
        max-height: 82vh;
        overflow-y: auto;
        opacity: 1;
        pointer-events: auto
    }

    .nav-links>li {
        width: 100%
    }

    .nav-links>li>a {
        display: flex;
        width: 100%;
        padding: 15px 24px;
        font-size: 1rem;
        color: #fff;
        border-bottom: 1px solid rgba(255, 255, 255, .06)
    }

    .nav-links a::after {
        display: none !important
    }

    .has-dd>a {
        justify-content: space-between
    }

    /* sous-menu en accordéon (au lieu du popover fixe) */
    .has-dd .nav-dropdown {
        position: static !important;
        top: auto !important;
        left: auto !important;
        width: 100%;
        min-width: 0;
        background: rgba(255, 255, 255, .04);
        border: none;
        border-radius: 0;
        box-shadow: none;
        padding: 0;
        visibility: visible;
        opacity: 1;
        pointer-events: auto;
        max-height: 0;
        overflow: hidden;
        transition: max-height .3s ease;
    }

    .has-dd.open .nav-dropdown {
        max-height: 560px
    }

    .nav-dropdown li a {
        padding: 12px 24px 12px 42px;
        font-size: .92rem
    }

    .nav-dropdown li:not(:last-child) a {
        border-bottom: 1px solid rgba(255, 255, 255, .05)
    }
}