/* =====================================================
   TANAWORKER PREMIUM V2
   Version reformattée pour la lisibilité
   Aucune modification fonctionnelle
===================================================== */

:root {
    --cyan:#06b6d4;
    --teal:#0f766e;
    --ink:#0f172a;
    --muted:#64748b;
    --soft:#f5fbfc;
    --line:#d7ecef;
    --navy:#041126;
    --white:#fff;
    --ease:cubic-bezier(.2, .8, .2, 1)
}
* {
    box-sizing:border-box
}

html {
    scroll-behavior:auto
}

body {
    margin:0;
    font-family:Inter, sans-serif;
    color:var(--ink);
    background:#fff;
    overflow-x:clip
}

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

.noise {
    position:fixed;
    inset:0;
    z-index:20;
    pointer-events:none;
    opacity:.025;
    background-image:url("data:image/svg+xml, %3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.8'/%3E%3C/svg%3E")
}

.cursor-glow {
    position:fixed;
    width:420px;
    height:420px;
    border-radius:50%;
    background:rgba(6, 182, 212, .08);
    filter:blur(70px);
    pointer-events:none;
    z-index:0;
    transform:translate(-50%, -50%)
}
.site-header{
    position:fixed;
    z-index:50;

    left:50%;
    top:10px;

    transform:translateX(-50%);

    width:min(1280px, calc(100% - 40px));

    height:56px;

    padding:0 12px 0 18px;

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:rgba(255,255,255,.72);

    backdrop-filter:blur(30px);

    border:1px solid rgba(6,182,212,.08);

    border-radius:16px;

    box-shadow:
        0 8px 20px rgba(15,23,42,.04);

    transition:.35s ease;
}

.site-header:hover{
    box-shadow:
        0 12px 28px rgba(6,182,212,.08);
}

.site-header:hover{
    box-shadow:
        0 18px 55px rgba(6,182,212,.10),
        inset 0 1px rgba(255,255,255,.95);
}

.logo{
    position:relative;

    display:flex;
    align-items:center;

    transition:.35s ease;
}

.logo-image{
    height:15px;
    width:auto;

    display:block;

    transition:
        transform .35s ease,
        filter .35s ease;

    filter:
        drop-shadow(0 6px 15px rgba(6,182,212,.12));
}

.logo:hover .logo-image{
    transform:
        translateY(-2px)
        scale(1.04);

    filter:
        drop-shadow(0 12px 30px rgba(6,182,212,.25));
}

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

.desktop-nav {
    display:flex;
    gap:34px;
    color:var(--muted);
    font-size:14px;
    font-weight:600
}

.desktop-nav a:hover {
    color:var(--teal)
}
.button {
    display:inline-flex;
    align-items:center;
    justify-content:center;

    padding:0 22px;

    height:46px;

    border-radius:16px;

    font-size:14px;
    font-weight:700;

    transition:.4s var(--ease);
}

.button:hover {
    transform:translateY(-3px);
    box-shadow:0 15px 40px rgba(15, 118, 110, .2)
}

.button-small {
    height:48px;
    border-radius:14px
}

.button-dark{
    position:relative;

    overflow:hidden;

    padding:0 22px;

    height:46px;

    border-radius:16px;

    background:
        linear-gradient(
            135deg,
            #2ec8e8 0%,
            #1fb7d8 50%,
            #12a9cb 100%
        );

    color:#ffffff;

    border:none;

    box-shadow:
        0 10px 30px rgba(34,211,238,.22);

    transition:
        transform .35s ease,
        box-shadow .35s ease;
}

.button-dark::before{
    content:"";

    position:absolute;

    top:0;
    left:-150%;

    width:60%;
    height:100%;

    background:
        linear-gradient(
            90deg,
            transparent,
            rgba(255,255,255,.35),
            transparent
        );

    transform:skewX(-25deg);

    animation:glassSweep 3.5s linear infinite;
}

.button-dark::after{
    content:"";

    position:absolute;

    inset:0;

    background:
        radial-gradient(
            circle at 50% 50%,
            rgba(34,211,238,.15),
            transparent 70%
        );

    pointer-events:none;
}

.button-dark:hover{
    transform:
        translateY(-2px);

    box-shadow:
        0 18px 45px rgba(34,211,238,.35);
}

.button-primary {
    background:var(--teal);
    color:#fff
}

.button-ghost {
    border:1px solid var(--line);
    background:rgba(255, 255, 255, .7)
}

.button-light {
    background:#fff;
    color:var(--ink);
    height:64px
}
.hero {
    height:100vh;
    min-height:760px;
    position:relative;
    display:grid;
    grid-template-columns:1fr 1fr;
    align-items:center;
    padding:120px max(5vw, 40px) 50px;
    overflow:hidden
}

.aurora {
    position:absolute;
    border-radius:50%;
    filter:blur(90px);
    pointer-events:none
}

.aurora-one {
    width:800px;
    height:650px;
    right:-130px;
    top:-150px;
    background:rgba(6, 182, 212, .18)
}

.aurora-two {
    width:580px;
    height:500px;
    left:-200px;
    bottom:-180px;
    background:rgba(15, 118, 110, .1)
}

.tech-grid {
    position:absolute;
    inset:0;
    opacity:.16;
    background-image:linear-gradient(rgba(6, 182, 212, .12) 1px, transparent 1px), linear-gradient(90deg, rgba(6, 182, 212, .12) 1px, transparent 1px);
    background-size:80px 80px;
    mask-image:linear-gradient(to bottom, transparent, #000 25%, transparent)
}

.particles{
    position:fixed;

    inset:0;

    pointer-events:none;

    overflow:hidden;

    z-index:0;
}

.particle{
    position:absolute;

    width:var(--size);
    height:var(--size);

    border-radius:50%;

    opacity:0;

    animation:
        fireParticle var(--duration) linear infinite;

    filter:blur(.3px);
}

.hero-copy, .hero-visual {
    position:relative;
    z-index:2
}

.eyebrow{
    text-transform:uppercase;

    letter-spacing:.18em;

    font-size:12px;

    font-weight:800;

    margin:0 0 24px;

    background:
        linear-gradient(
            135deg,
            #2EC8E8 0%,
            #22D3EE 50%,
            #12A9CB 100%
        );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    color:transparent;
}

.hero h1 {
    font-size:clamp(58px, 6vw, 86px);
    line-height:1;
    letter-spacing:-.075em;
    margin:0 0 30px
}

.hero h1 span {
    color:var(--teal)
}

.hero-lead {
    max-width:610px;
    font-size:18px;
    line-height:1.65;
    color:var(--muted)
}

.hero-actions {
    display:flex;
    gap:14px;
    margin-top:35px
}

.hero-trust {
    margin-top:28px;
    font-size:12px;
    color:var(--muted)
}

.hero-trust span {
    display:inline-block;
    width:7px;
    height:7px;
    background:var(--cyan);
    border-radius:50%;
    box-shadow:0 0 10px var(--cyan);
    margin-right:8px
}

.hero-visual {
    height:650px;
    perspective:1300px
}

.dashboard-wrap {
    position:absolute;
    width:min(500px, 85%);
    height:510px;
    left:14%;
    top:55px;
    transform:rotateY(-10deg) rotateX(5deg) rotateZ(-4deg);
    transform-style:preserve-3d
}

.dashboard {
    height:100%;
    border:1px solid rgba(6, 182, 212, .22);
    border-radius:30px;
    padding:28px;
    background:rgba(255, 255, 255, .74);
    backdrop-filter:blur(22px);
    box-shadow:0 50px 100px rgba(15, 23, 42, .18), inset 0 1px #fff
}

.dashboard-head {
    display:flex;
    justify-content:space-between;
    align-items:center
}

.dashboard-head div {
    display:grid;
    gap:5px
}

.dashboard-head small, .dashboard-metrics small {
    color:var(--muted)
}

.live {
    font-size:11px;
    color:var(--teal);
    font-weight:700
}

.live i {
    display:inline-block;
    width:7px;
    height:7px;
    border-radius:50%;
    background:#10b981;
    margin-right:4px
}

.dashboard-metrics {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:14px;
    margin:30px 0
}

.dashboard-metrics article {
    padding:18px;
    border:1px solid var(--line);
    border-radius:18px;
    background:rgba(255, 255, 255, .7);
    display:grid;
    gap:7px
}

.dashboard-metrics strong {
    font-size:27px
}

.dashboard-metrics em {
    font-size:11px;
    color:#10b981;
    font-style:normal
}

.chart {
    height:260px;
    padding:20px;
    background:rgba(245, 251, 252, .8);
    border-radius:20px;
    border:1px solid var(--line)
}

.chart-title {
    display:flex;
    justify-content:space-between;
    font-size:11px
}

.chart-title span {
    color:var(--muted)
}

.bars {
    height:190px;
    display:flex;
    align-items:flex-end;
    justify-content:space-around;
    gap:12px
}

.bars i {
    width:30px;
    height:var(--h);
    background:linear-gradient(var(--cyan), var(--teal));
    border-radius:8px;
    display:block
}

.orbit-card {
    position:absolute;
    padding:18px 20px;
    border:1px solid var(--line);
    border-radius:18px;
    background:rgba(255, 255, 255, .86);
    backdrop-filter:blur(15px);
    font-size:12px;
    font-weight:800;
    box-shadow:0 20px 50px rgba(15, 23, 42, .12)
}

.orbit-card span {
    color:var(--cyan);
    margin-left:12px
}

.orbit-seo {
    left:4%;
    top:7%
}

.orbit-ai {
    right:1%;
    top:20%
}

.orbit-crm {
    right:0;
    bottom:19%
}

.orbit-acq {
    left:2%;
    bottom:20%
}

.orbit-out {
    left:42%;
    bottom:0
}

.scroll-hint {
    position:absolute;
    bottom:25px;
    left:50%;
    transform:translateX(-50%);
    font-size:10px;
    letter-spacing:.12em;
    text-transform:uppercase;
    color:var(--muted)
}

.scroll-hint span {
    display:inline-block;
    width:6px;
    height:6px;
    background:var(--cyan);
    border-radius:50%;
    margin-right:8px
}
.section {
    padding:120px max(5vw, 40px);
    position:relative
}

#madagascar.section {
    padding:60px max(5vw, 40px);
}

#process.section {
    padding-top:40px;
}

.section-dark {
    position:relative;
    background:var(--navy);
    color:#fff
}

.section-heading {
    max-width:780px;
    margin-bottom:64px
}

.section-heading.centered {
    text-align:center;
    margin-left:auto;
    margin-right:auto
}

.section-heading h2, .madagascar h2, .story h2, .final-cta h2 {
    font-size:clamp(40px, 5vw, 64px);
    line-height:1.08;
    letter-spacing:-.06em;
    margin:0 0 22px
}
.madagascar h2 {
    font-size:clamp(26px,2.8vw,38px);
    max-width:580px;
    letter-spacing:-.03em;
    margin:0 0 12px;
}   
.story h2 {
    background:linear-gradient(
        135deg,
        #19b5cf 0%,
        #1597b5 35%,
        #138c9e 70%,
        #127d76 100%
    );

    -webkit-background-clip:text;
    -webkit-text-fill-color:transparent;
    background-clip:text;

    color:transparent;
}

.section-heading>p:last-child, .madagascar-copy>p {
    color:var(--muted);
    line-height:1.6;
    font-size:13px;
}

.stats {
    background:var(--soft)
}

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

.stat-card, .service-card, .testimonial, .process-card {
    background:#fff;
    border:1px solid var(--line);
    border-radius:25px;
    box-shadow:0 20px 60px rgba(15, 23, 42, .06)
}

.stat-card {
    padding:30px;
    display:grid;
    gap:12px
}

.stat-card strong {
    font-size:43px;
    letter-spacing:-.05em
}

.stat-card span {
    font-size:13px;
    color:var(--muted)
}
.services-grid {
    display:grid;
    grid-template-columns:repeat(3, 1fr);
    gap:20px;
    perspective:1200px
}

.service-card {
    position:relative;
    padding:26px;
    min-height:280px;
    transition:.45s var(--ease);
    overflow:hidden
}

.service-card:after {
    content:"";
    position:absolute;
    width:180px;
    height:180px;
    border-radius:50%;
    background:rgba(6, 182, 212, .08);
    filter:blur(40px);
    right:-80px;
    top:-80px
}

.service-card:hover {
    border-color:rgba(6, 182, 212, .45);
    box-shadow:0 30px 80px rgba(6, 182, 212, .13)
}

.service-card>span {
    position:absolute;
    right:25px;
    top:25px;
    color:var(--muted);
    font-size:11px
}

.service-icon{
    width:68px;
    height:68px;

    border-radius:20px;

    background:
        linear-gradient(
            135deg,
            rgba(46,200,232,.12),
            rgba(46,200,232,.04)
        );

    display:flex;
    align-items:center;
    justify-content:center;

    margin-bottom:35px;

    border:1px solid rgba(46,200,232,.15);

    overflow:hidden;
}

.service-icon i{
    font-size:28px;
    color:#2EC8E8;

    transition:
        transform .45s cubic-bezier(.22,1,.36,1),
        color .35s ease;
}
.service-card:nth-child(1):hover .service-icon i{
    transform:
        translateY(-4px)
        scale(1.15);
}

.service-card:nth-child(2):hover .service-icon i{
    transform:
        rotate(-15deg)
        scale(1.15);
}

.service-card:nth-child(3):hover .service-icon i{
    transform:
        scale(1.20);
}

.service-card:nth-child(4):hover .service-icon i{
    transform:
        rotate(360deg);
}

.service-card:nth-child(5):hover .service-icon i{
    transform:
        translateY(-4px)
        scale(1.15);
}

.service-card:nth-child(6):hover .service-icon i{
    transform:
        rotate(20deg)
        scale(1.15);
}

.service-card h3 {
    font-size:21px;
    margin:0 0 12px
}

.service-card p {
    color:var(--muted);
    font-size:13px;
    line-height:1.6
}

.service-card strong {
    position:absolute;
    bottom:26px;
    font-size:12px;
    color:var(--teal)
}

.service-card b {
    margin-left:5px
}
.story {
    min-height:auto;
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:100px;
    padding:80px max(6vw,50px) 60px;

    background:
        radial-gradient(
            circle at 15% 20%,
            rgba(34,211,238,.18),
            transparent 35%
        ),

        radial-gradient(
            circle at 85% 75%,
            rgba(16,185,129,.10),
            transparent 40%
        ),

        linear-gradient(
            135deg,
            #eaf8fa 0%,
            #f4fbfc 35%,
            #edf9fb 70%,
            #e5f6f8 100%
        );
}

.story-sticky {
    position:sticky;
    top:0;          /* valeur initiale — écrasée par JS au chargement */
    height:max-content
}

.story-sticky>p:nth-of-type(2) {
    color:#9db1bd;
    max-width:480px;
    line-height:1.7
}

.story-progress {
    height:3px;
    width:100%;
    background:rgba(255, 255, 255, .12);
    margin-top:35px;
    border-radius:4px;
    overflow:hidden
}

.story-progress i {
    display:block;
    width:0;
    height:100%;
    background:var(--cyan)
}

.story-steps {
    display:grid;
    gap:80px;
    padding-top:60px
}

.story-step {
    min-height:150px;

    padding:26px 30px;

    display:flex;
    gap:24px;

    border:none;

    background:
        linear-gradient(
            135deg,
            #19b5cf 0%,
            #1597b5 35%,
            #138c9e 70%,
            #127d76 100%
        );

    border-radius:24px;

    backdrop-filter:blur(20px);

    box-shadow:
        0 18px 45px rgba(6,182,212,.14);
}

.story-step > span {
    color:rgba(255,255,255,.55);
    font-size:12px;
    font-weight:700
}

.story-step h3 {
    font-size:27px;
    margin:0 0 14px;
    color:#ffffff;
}

.story-step p {
    color:rgba(255,255,255,.88);
    line-height:1.7;
    font-size:15px;
}
.madagascar {
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:50px;
    align-items:center;

    background:transparent;

    position:relative;
    z-index:2;
}

.advantage-grid {
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:8px;
    margin-top:16px
}

.advantage-grid div{
    position:relative;

    padding:14px 16px;

    background:rgba(255,255,255,.92);

    border:1px solid rgba(6,182,212,.12);

    border-radius:24px;

    display:grid;
    gap:10px;

    overflow:hidden;

    transition:.35s ease;

    backdrop-filter:blur(20px);
}

.advantage-grid div::before{
    content:"";

    position:absolute;

    inset:0;

    background:
        linear-gradient(
            135deg,
            rgba(6,182,212,.06),
            transparent 50%
        );

    opacity:0;

    transition:.35s ease;
}

.advantage-grid div:hover{
    transform:
        translateY(-8px);

    box-shadow:
        0 25px 50px rgba(6,182,212,.12);
}

.advantage-grid div:hover::before{
    opacity:1;
}

.advantage-grid strong{
    font-size:22px;

    color:var(--teal);

    font-weight:800;

    animation:
        kpiFloat 5s ease-in-out infinite;
}

.advantage-grid span {
    color:var(--muted);
    font-size:11px
}

.world-card{
    position:relative;
    height:520px;
    border-radius:32px;
    overflow:hidden;

    border:1px solid rgba(25,181,207,.15);

    background:
        linear-gradient(
            135deg,
            #edf9fb 0%,
            #f8fcfd 35%,
            #edf9fb 70%,
            #e5f6f8 100%
        );

    display:flex;
    align-items:center;
    justify-content:center;
}

.madagascar-visual-link{
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
}

.madagascar-visual{
    position:relative;

    width:100%;
    height:100%;

    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;

    gap:25px;
}

.madagascar-glow{
    position:absolute;

    width:600px;
    height:600px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(0,220,255,.35) 0%,
            rgba(0,200,255,.18) 35%,
            rgba(0,180,220,.08) 55%,
            transparent 75%
        );

    filter:blur(70px);

    animation:glowFloat 8s ease-in-out infinite;
}

.madagascar-island{
    position:relative;

    width:340px;
    max-width:70%;
    height:auto;

    display:block;
    object-fit:contain;

    z-index:2;

    animation:islandFloat 5s ease-in-out infinite;

    filter:
        drop-shadow(0 30px 60px rgba(15,23,42,.18));
}
.madagascar-badge{
    position:absolute;

    top:50%;
left:50%;

transform:translate(-50%, -50%) translateX(100px) translateY(10px);

    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 20px;

    background:rgba(255,255,255,.85);

    backdrop-filter:blur(20px);

    border:1px solid rgba(6,182,212,.15);

    border-radius:18px;

    font-size:15px;
    font-weight:700;

    color:var(--ink);

    box-shadow:
        0 15px 40px rgba(15,23,42,.08);

    z-index:10;
}

@keyframes oceanRipple{

    from{
        transform:
            rotate(0deg)
            scale(1);
    }

    to{
        transform:
            rotate(360deg)
            scale(1.1);
    }
}

@keyframes oceanLight{

    0%{
        opacity:.2;
        transform:translateX(-30px);
    }

    50%{
        opacity:.6;
        transform:translateX(30px);
    }

    100%{
        opacity:.2;
        transform:translateX(-30px);
    }
}

@keyframes waterWave{

    from{
        transform:
            translateX(-80px)
            translateY(-20px);
    }

    to{
        transform:
            translateX(80px)
            translateY(20px);
    }

}

.world-card:hover .madagascar-island{
    transform:
        scale(1.05)
        translateY(-12px);
}

@keyframes islandFloat{

    0%{
        transform:translateY(0px);
    }

    50%{
        transform:translateY(-14px);
    }

    100%{
        transform:translateY(0px);
    }
}

.map-badge {
    display:flex;
    align-items:center;
    gap:12px;

    padding:14px 18px;

    border-radius:18px;

    background:rgba(255,255,255,.92);

    backdrop-filter:blur(20px);

    border:1px solid rgba(6,182,212,.15);

    color:var(--ink);

    font-size:13px;
    font-weight:700;

    box-shadow:
        0 10px 40px rgba(15,23,42,.08);
}

.pulse {
    width:12px;
    height:12px;

    border-radius:50%;

    background:var(--cyan);

    animation:pulseMarker 2s infinite;
}

@keyframes pulseMarker {

    0% {
        box-shadow:
            0 0 0 0 rgba(6,182,212,.5);
    }

    70% {
        box-shadow:
            0 0 0 18px rgba(6,182,212,0);
    }

    100% {
        box-shadow:
            0 0 0 0 rgba(6,182,212,0);
    }

}

@keyframes kpiFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-4px);
    }

    100%{
        transform:translateY(0);
    }

}
.process {
    overflow:hidden
}

.process-viewport {
    width:100%;
    overflow:hidden
}

.process-track {
    display:flex;
    gap:24px;
    width:max-content;
    padding:30px 5vw 60px
}

.process-card {
    width:330px;
    min-height:220px;
    padding:20px 24px
}

.process-card>span {
    font-size:11px;
    color:var(--cyan);
    font-weight:800
}

.process-icon {
    width:56px;
    height:56px;
    border-radius:16px;
    display:grid;
    place-items:center;
    font-size:26px;
    margin:20px 0 18px
}

.process-card h3 {
    font-size:17px;
    line-height:1.25;
    margin-bottom:8px
}

.process-card p {
    color:var(--muted);
    font-size:13px;
    line-height:1.65
}

#process .section-heading h2 {
    font-size:clamp(26px,2.8vw,38px);
    letter-spacing:-.03em;
}
/* ── Process cards — couleurs individuelles + icône animé ── */
.process-card-1 .process-icon { background: rgba(8,145,178,.1); color: #0891b2; }
.process-card-2 .process-icon { background: rgba(15,118,110,.1); color: #0f766e; }
.process-card-3 .process-icon { background: rgba(234,179,8,.12);  color: #b45309; }
.process-card-4 .process-icon { background: rgba(124,58,237,.1);  color: #7c3aed; }
.process-card-5 .process-icon { background: rgba(16,185,129,.1);  color: #059669; }

.process-card-1 .process-icon i { animation: pcIconPulse 2.4s ease-in-out infinite; }
.process-card-2 .process-icon i { animation: pcIconSpin  3.2s ease-in-out infinite; }
.process-card-3 .process-icon i { animation: pcIconFlash 1.8s ease-in-out infinite; }
.process-card-4 .process-icon i { animation: pcIconRotate 3s linear infinite; }
.process-card-5 .process-icon i { animation: pcIconRise  2.6s ease-in-out infinite; }

@keyframes pcIconPulse  { 0%,100%{ transform:scale(1); } 50%{ transform:scale(1.18); } }
@keyframes pcIconSpin   { 0%,100%{ transform:rotate(0deg) scale(1); } 50%{ transform:rotate(8deg) scale(1.12); } }
@keyframes pcIconFlash  { 0%,100%{ opacity:1; transform:scale(1); } 40%{ opacity:.7; transform:scale(1.22); } 60%{ opacity:1; transform:scale(.95); } }
@keyframes pcIconRotate { 0%{ transform:rotate(0deg); } 100%{ transform:rotate(360deg); } }
@keyframes pcIconRise   { 0%,100%{ transform:translateY(0); } 50%{ transform:translateY(-5px); } }
.social {
    background:var(--soft)
}

.testimonial-wall {
    display:grid;
    grid-template-columns:repeat(6, 1fr);
    gap:20px;
    perspective:1200px
}

.testimonial {
    grid-column:span 2;
    min-height:210px;
    padding:27px;
    transform:rotate(var(--r))
}

.testimonial:nth-child(4) {
    grid-column:2/span 2
}

.stars {
    color:var(--teal);
    font-size:12px;
    letter-spacing:2px
}

.testimonial blockquote {
    font-weight:700;
    font-size:18px;
    line-height:1.5;
    margin:28px 0
}

.testimonial p {
    color:var(--muted);
    font-size:12px
}

.final-cta {
    height:680px;
    display:grid;
    place-items:center;
    text-align:center;
    overflow:hidden
}

.final-cta>div:last-child {
    position:relative;
    z-index:2
}

.final-cta p:not(.eyebrow) {
    color:#9db1bd;
    margin-bottom:34px
}

.cta-halo {
    position:absolute;
    width:900px;
    height:700px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(6, 182, 212, .4), rgba(6, 182, 212, .08) 45%, transparent 70%);
    filter:blur(20px)
}
.footer{
    position:relative;

    padding:40px max(5vw,40px);

    display:flex;
    align-items:center;
    justify-content:space-between;

    background:
        linear-gradient(
            135deg,
            #061324 0%,
            #08192c 100%
        );

    color:#b7c6d2;

    border-top:
        1px solid rgba(255,255,255,.08);

    font-size:12px;

    overflow:hidden;
}

.footer::before{
    content:"";

    position:absolute;

    width:420px;
    height:420px;

    right:-120px;
    top:-220px;

    border-radius:50%;

    background:
        radial-gradient(
            circle,
            rgba(6,182,212,.18),
            transparent 70%
        );

    filter:blur(50px);

    pointer-events:none;
}

.footer .logo {
    color:#fff
}

.footer-links {
    display:flex;
    gap:25px
}
.footer-links a{
    transition:
        color .3s ease,
        transform .3s ease;
}

.footer-links a:hover{
    color:#ffffff;

    transform:
        translateY(-2px);
}

.footer .logo-image{
    height:15px;
    width:auto;

    display:block;

    transition:
        transform .35s ease,
        filter .35s ease;

    filter:
        drop-shadow(0 6px 15px rgba(6,182,212,.12));
}

.reveal {
    will-change:transform, opacity
}
.simple-page {
    min-height:80vh;
    padding:180px max(5vw, 40px);
    background:var(--soft)
}

.simple-page div {
    max-width:800px
}

.simple-page h1 {
    font-size:clamp(45px, 7vw, 80px);
    letter-spacing:-.06em;
    margin:0 0 25px
}

.simple-page p {
    font-size:18px;
    line-height:1.7;
    color:var(--muted);
    margin-bottom:30px
}
@keyframes fireParticle{

    0%{
        opacity:0;
        transform:
            translateY(0)
            translateX(0)
            scale(.5);
    }

    10%{
        opacity:1;
    }

    80%{
        opacity:.9;
    }

    100%{
        opacity:0;
        transform:
            translateY(-600px)
            translateX(var(--drift))
            scale(.2);
    }

}
@media(max-width:1000px) {

    .desktop-nav {
    display:none
}

.hero {
    grid-template-columns:1fr;
    height:auto;
    min-height:1100px;
    padding-top:150px
}

.hero-visual {
    margin-top:20px
}

.stats-grid, .services-grid {
    grid-template-columns:repeat(2, 1fr)
}
.story, .madagascar {
    grid-template-columns:1fr
}

.story-sticky {
    position:relative;
    top:auto
}

.story {
    gap:30px
}

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

.testimonial, .testimonial:nth-child(4) {
    grid-column:span 1
}

.world-card {
    height:500px
}
}
@media(max-width:640px) {

    .site-header {
        top:10px;
        height:62px;
        width:calc(100% - 20px);
        padding-left:17px;
    }

    .site-header .button {
        display:none;
    }

    .logo {
        font-size:17px;
    }

    .section {
        padding:85px 20px;
    }

    .hero {
        padding:120px 20px 50px;
        min-height:1030px;
    }

    .hero h1 {
        font-size:51px;
    }

    .hero-lead {
        font-size:15px;
    }

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

    .hero-visual {
        height:500px;
        margin-top:35px;
    }

    .dashboard-wrap {
        width:94%;
        height:440px;
        left:3%;
        top:25px;
        transform:rotateZ(-2deg);
    }

    .dashboard {
        padding:18px;
    }

    .dashboard-metrics {
        margin:18px 0;
    }

    .chart {
        height:210px;
    }

    .bars {
        height:145px;
    }

    .orbit-card{
    display:block;
}

    .stats-grid,
    .services-grid,
    .advantage-grid,
    .testimonial-wall {
        grid-template-columns:1fr;
    }

    .services-grid {
        gap:14px;
    }

    .service-card {
        min-height:250px;
    }

    .story {
        padding:100px 20px;
        min-height:auto;
    }

    .story-steps {
        gap:35px;
        padding-top:20px;
    }

    .story-step {
        min-height:180px;
    }

    .madagascar {
        padding:85px 20px;
        gap:50px;
    }

    .world-card {
        height:420px;
    }

    /* ========================== */

    .testimonial,
    .testimonial:nth-child(4) {
        grid-column:auto;
        transform:none;
    }

    .footer {
        flex-direction:column;
        gap:22px;
        text-align:center;
    }

    .footer-links {
        flex-wrap:wrap;
        justify-content:center;
    }

    .cursor-glow {
        display:none;
    }

}
@keyframes glassSweep{

    0%{
        left:-150%;
    }

    100%{
        left:250%;
    }

}
/* =========================
   ABOUT STORY
========================= */

.about-story{
    min-height:300vh;
}

.about-desktop{
    position:sticky;

    top:120px;

    height:calc(100vh - 120px);

    display:grid;

    grid-template-columns:1fr 1fr;

    gap:120px;

    align-items:center;

    max-width:1600px;

    margin:auto;

    padding:0 60px;
}

.about-texts,
.about-images{
    position:relative;

    height:100%;

    display:flex;

    align-items:center;

    justify-content:center;

    padding-right:80px;
}

.about-step{
    position:absolute;

    top:50%;

    transform:
        translateY(-50%) translateX(-32px);

    opacity:0;

    transition:
        opacity .65s cubic-bezier(0.25,0.46,0.45,0.94),
        transform .65s cubic-bezier(0.25,0.46,0.45,0.94);

    max-width:620px;
}

.about-step.active{
    opacity:1;
    transform:
        translateY(-50%) translateX(0);
}

.about-step h2{
    font-size:clamp(36px,3vw,64px);

    line-height:1.05;

    letter-spacing:-1.5px;

    margin:12px 0 20px;

    max-width:700px;
}

.about-step p{
    font-size:clamp(16px,1vw,18px);

    line-height:1.9;

    max-width:620px;

    color:var(--muted);
}

.about-image{
    position:absolute;

    width:100%;

    height:auto;

    max-width:850px;

    border-radius:32px;

    opacity:0;

    transform:scale(1.04) translateY(8px);

    transition:
        opacity .75s cubic-bezier(0.4,0,0.2,1),
        transform .75s cubic-bezier(0.4,0,0.2,1);

    box-shadow:
        0 40px 80px rgba(15,23,42,.12);
}

.about-image.active{
    opacity:1;
    transform:scale(1) translateY(0);
    animation:
        aboutFloat 6s ease-in-out infinite;
    animation-delay:.75s;
}

@keyframes aboutFloat{

    0%{
        transform:
            scale(1)
            translateY(0);
    }

    50%{
        transform:
            scale(1)
            translateY(-12px);
    }

    100%{
        transform:
            scale(1)
            translateY(0);
    }
}
.about-mobile{
    display:none;
}

/* =========================
   MOBILE
========================= */

@media(max-width:1000px){

    .about-story{
        min-height:auto;
        height:auto;
        padding:40px 24px;
    }

    .about-desktop{
        display:none;
    }

    .about-mobile{
    display:flex;
    flex-direction:column;
    align-items:stretch;

    width:100%;
    max-width:none;

    margin:0;

    padding:0;

    position:relative;
}

    .about-mobile img{
    display:block;

    width:100%;

    min-width:100%;

    max-width:100%;

    height:auto;

    border-radius:24px;

    margin:0 0 28px 0;

    box-shadow:
        0 20px 50px rgba(15,23,42,.10);
}

    .about-mobile .eyebrow{
        text-align:center;
        margin-bottom:12px;
    }

    .about-mobile h2{
    font-size:clamp(32px,8vw,42px);

    line-height:1.1;

    letter-spacing:-1px;

    text-align:center;

    max-width:100%;

    margin:0 auto 24px;
}

.about-mobile p{
    font-size:17px;

    line-height:1.8;

    text-align:left;

    width:100%;

    max-width:100%;

    margin:0;

    color:var(--muted);
}

    .about-mobile p + p{
        margin-top:16px;
    }
}
@media(max-width:1000px){

    .about-texts,
    .about-images{
        width:100% !important;
        max-width:none !important;
        padding:0 !important;
        margin:0 !important;
    }

}
@media(max-width:999px){

    .process-viewport{
        overflow:visible;
    }

    .process-track{
        display:flex;
        flex-direction:column;
        width:100%;
        gap:20px;
        padding:30px 20px 60px;
    }

    .process-card{
        width:100%;
        min-height:auto;
        flex-shrink:1;
    }

}

@media (max-width:999px){

    .particles,
    .particle{
        display:none !important;
        content-visibility:hidden;
    }

}
/* popup hidden until tw-footer.css loads */
.tw-popup-overlay{opacity:0;pointer-events:none}
@media(min-width:768px){
  .hero-copy>*{opacity:0}
  .dashboard-wrap{opacity:0}
  .orbit-card{opacity:0}
}
