:root{
    --bg:#020817;
    --bg2:#061124;
    --panel:#08172c;
    --line:rgba(133,188,255,.16);
    --text:#f7fbff;
    --muted:#9fb4ca;
    --blue:#176cff;
    --cyan:#19d9ff;
    --cyan2:#00a9ff;
    --green:#31e6ba;
    --danger:#ff6278;
    --shadow:0 30px 90px rgba(0,0,0,.42);
    --radius:28px;
    --header:86px
}
*{
    box-sizing:border-box
}
html{
    scroll-behavior:smooth;
    background:var(--bg)
}
body{
    margin:0;
    background:var(--bg);
    color:var(--text);
    
    overflow-x:hidden
}
body.en{
    }
a{
    color:inherit;
    text-decoration:none
}
button,input,select{
    font:inherit
}
.noise{
    position:fixed;
    inset:0;
    pointer-events:none;
    z-index:1000;
    opacity:.022;
    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='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E")
}
.site-header{
    position:fixed;
    z-index:100;
    top:0;
    left:0;
    right:0;
    height:var(--header);
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 clamp(24px,4vw,72px);
    border-bottom:1px solid transparent;
    transition:.35s;
    background:linear-gradient(180deg,rgba(2,8,23,.86),rgba(2,8,23,.24));
    backdrop-filter:blur(16px)
}
.site-header.scrolled{
    height:72px;
    border-color:var(--line);
    background:rgba(2,8,23,.86)
}
.brand{
    display:flex;
    align-items:center;
    gap:13px;
    min-width:max-content
}
.brand-mark{
    width:46px;
    height:50px;
    position:relative;
    display:grid;
    place-items:center;
    filter:drop-shadow(0 0 18px rgba(25,217,255,.24))
}
.brand-mark:before{
    content:"";
    position:absolute;
    inset:2px;
    border:2px solid #eaf6ff;
    clip-path:polygon(50% 0,95% 17%,87% 73%,50% 100%,13% 73%,5% 17%)
}
.brand-mark:after{
    content:"";
    width:24px;
    height:21px;
    border:2px solid var(--cyan);
    border-top:0;
    border-radius:0 0 50% 50%;
    transform:translateY(5px)
}
.brand-mark span{
    width:19px;
    height:3px;
    background:var(--cyan);
    position:absolute;
    top:12px;
    box-shadow:0 -6px 0 -1px #fff,0 6px 0 1px var(--blue);
    border-radius:20px
}
.brand-copy{
    display:flex;
    flex-direction:column;
    direction:ltr;
    line-height:1
}
.brand-copy strong{
    font-weight:700;font-size:24px;line-height:1;
    letter-spacing:-1.2px
}
.brand-copy strong>span:last-child{
    color:var(--cyan)
}
.brand-copy strong>span:first-child{
    color:#fff;
    font-size:.8em
}
.brand-copy small{
    font-weight:600;font-size:7px;line-height:1;
    letter-spacing:2.1px;
    color:#a7b9cc;
    margin-top:7px
}
.nav{
    display:flex;
    align-items:center;
    gap:clamp(18px,2vw,34px);
    font-size:14px;
    font-weight:500;
    color:#bdcada
}
.nav a{
    position:relative;
    padding:10px 0;
    transition:.25s
}
.nav a:hover,.nav a.active{
    color:white
}
.nav a.active:after{
    content:"";
    position:absolute;
    height:2px;
    background:linear-gradient(90deg,var(--cyan),var(--blue));
    bottom:-5px;
    left:10%;
    right:10%;
    box-shadow:0 0 12px var(--cyan)
}
.header-actions{
    display:flex;
    align-items:center;
    gap:12px
}
.lang-switch{
    height:44px;
    padding:0 15px;
    border:1px solid var(--line);
    background:rgba(255,255,255,.025);
    color:#d9e4ef;
    border-radius:13px;
    cursor:pointer
}
.lang-switch span{
    opacity:.4;
    margin:0 5px
}
.btn{
    min-height:52px;
    border-radius:15px;
    border:1px solid transparent;
    padding:0 21px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    font-weight:600;
    transition:.3s;
    cursor:pointer
}
.btn b{
    font-weight:400;font-size:18px;line-height:1
}
.btn-primary{
    background:linear-gradient(135deg,#0c63f4,#2547c9);
    color:#fff;
    box-shadow:0 10px 35px rgba(23,108,255,.25),inset 0 1px rgba(255,255,255,.3);
    border-color:rgba(88,164,255,.45)
}
.btn-primary:hover{
    transform:translateY(-2px);
    box-shadow:0 15px 45px rgba(23,108,255,.38)
}
.btn-ghost{
    background:rgba(6,18,41,.58);
    border-color:rgba(127,182,244,.24);
    backdrop-filter:blur(12px)
}
.btn-ghost:hover{
    border-color:rgba(25,217,255,.55);
    background:rgba(8,28,58,.7)
}
.btn-sm{
    min-height:44px;
    border-radius:12px;
    padding:0 17px;
    gap:14px;
    font-size:14px
}
.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:1px solid var(--line);
    background:none;
    border-radius:12px
}
.menu-toggle span{
    display:block;
    width:18px;
    height:1px;
    background:#fff;
    margin:5px auto
}
.hero{
    height:max(760px,100svh);
    min-height:760px;
    position:relative;
    display:flex;
    align-items:center;
    padding:120px clamp(28px,7vw,130px) 90px;
    isolation:isolate;
    overflow:hidden
}
.hero-bg{
    position:absolute;
    inset:0;
    z-index:-5;
    background-image:linear-gradient(90deg,rgba(2,8,23,.98) 0%,rgba(2,8,23,.82) 30%,rgba(2,8,23,.24) 58%,rgba(2,8,23,.12) 100%),linear-gradient(0deg,rgba(2,8,23,.92),transparent 45%),url('assets/hero-building.webp');
    background-size:cover;
    background-position:center
}
.hero-grid{
    position:absolute;
    inset:0;
    z-index:-3;
    opacity:.17;
    background-image:linear-gradient(rgba(58,147,255,.15) 1px,transparent 1px),linear-gradient(90deg,rgba(58,147,255,.15) 1px,transparent 1px);
    background-size:80px 80px;
    mask-image:linear-gradient(to bottom,transparent,black 25%,black 75%,transparent)
}
.hero-orb{
    position:absolute;
    z-index:-2;
    border-radius:50%;
    filter:blur(65px);
    opacity:.18
}
.orb-a{
    width:420px;
    height:420px;
    background:var(--blue);
    right:24%;
    top:20%
}
.orb-b{
    width:300px;
    height:300px;
    background:var(--cyan);
    left:7%;
    bottom:-10%
}
.hero-content{
    width:min(660px,52vw);
    position:relative;
    z-index:2
}
.eyebrow,.section-kicker{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--cyan);
    font-size:13px;
    font-weight:600;
    letter-spacing:.2px
}
.eyebrow i{
    width:7px;
    height:7px;
    background:var(--cyan);
    border-radius:50%;
    box-shadow:0 0 14px var(--cyan)
}
.hero h1,.section h2,.manifesto h2{
    font-size:clamp(46px,5.2vw,84px);
    line-height:1.12;
    letter-spacing:-2.8px;
    margin:28px 0 24px;
    font-weight:600
}
.hero h1 em,.section h2 em,.manifesto h2 em{
    font-style:normal;
    color:transparent;
    background:linear-gradient(100deg,#fff 0,#90dfff 35%,#1697ff 100%);
    -webkit-background-clip:text;
    background-clip:text
}
.hero p{
    font-size:clamp(17px,1.35vw,21px);
    line-height:1.9;
    color:#c3d2e1;
    max-width:630px
}
.hero-actions{
    display:flex;
    gap:12px;
    margin:35px 0
}
.trust-strip{
    display:flex;
    align-items:center;
    gap:25px;
    border-top:1px solid var(--line);
    padding-top:23px;
    margin-top:12px;
    color:#aebfd1;
    font-size:12px
}
.trust-strip span{
    display:flex;
    align-items:center;
    gap:8px
}
.trust-strip .dot{
    width:5px;
    height:5px;
    border-radius:50%;
    background:var(--cyan);
    box-shadow:0 0 9px var(--cyan)
}
.hero-status{
    position:absolute;
    inset-inline-end:7vw;
    bottom:72px;
    width:310px;
    padding:19px;
    border:1px solid rgba(108,175,255,.23);
    border-radius:24px;
    background:linear-gradient(155deg,rgba(7,22,47,.72),rgba(3,11,28,.52));
    backdrop-filter:blur(22px);
    box-shadow:var(--shadow)
}
.live-chip{
    display:flex;
    align-items:center;
    gap:8px;
    font-weight:600;font-size:10px;line-height:1;
    color:#92afd0;
    letter-spacing:1.6px
}
.live-chip i{
    width:7px;
    height:7px;
    background:var(--green);
    border-radius:50%;
    box-shadow:0 0 13px var(--green)
}
.health-ring{
    display:flex;
    align-items:center;
    gap:12px;
    margin:18px 0
}
.health-ring strong{
    font-weight:600;font-size:34px;line-height:1;
    color:#fff
}
.health-ring span{
    font-size:12px;
    color:#9db1c8
}
.metric-row{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:7px
}
.metric-row span{
    background:rgba(255,255,255,.03);
    border:1px solid var(--line);
    padding:11px;
    border-radius:12px;
    display:flex;
    flex-direction:column;
    gap:4px
}
.metric-row small{
    font-size:9px;
    color:#8299b3
}
.metric-row strong{
    font-weight:600;font-size:18px;line-height:1
}
.signal-line{
    height:25px;
    display:flex;
    align-items:center;
    margin-top:12px
}
.signal-line span{
    height:1px;
    background:linear-gradient(90deg,transparent,var(--blue));
    flex:1
}
.signal-line i{
    width:4px;
    height:4px;
    background:var(--cyan);
    border-radius:50%;
    box-shadow:0 0 10px var(--cyan)
}
.hero-caption{
    position:absolute;
    left:30px;
    bottom:36px;
    writing-mode:vertical-rl;
    transform:rotate(180deg);
    font-weight:500;font-size:9px;line-height:1;
    letter-spacing:3px;
    color:#57728f
}
.scroll-cue{
    position:absolute;
    bottom:34px;
    left:50%;
    width:30px;
    height:50px;
    border:1px solid rgba(255,255,255,.18);
    border-radius:20px
}
.scroll-cue span{
    display:block;
    width:4px;
    height:8px;
    background:var(--cyan);
    border-radius:10px;
    margin:9px auto;
    animation:scroll 1.8s infinite
}
@keyframes scroll{
    0%{
        transform:translateY(0);
        opacity:0
    }
    25%{
        opacity:1
    }
    80%{
        opacity:1
    }
    100%{
        transform:translateY(22px);
        opacity:0
    }
}
.section{
    padding:120px clamp(28px,7vw,130px)
}
.intro{
    background:radial-gradient(circle at 50% -20%,rgba(21,95,211,.13),transparent 38%),var(--bg)
}
.section-kicker span{
    font-weight:500;font-size:10px;line-height:1;
    color:#56728f;
    padding:7px 9px;
    border:1px solid var(--line);
    border-radius:99px
}
.intro-grid,.solutions-head{
    display:grid;
    grid-template-columns:1.35fr .65fr;
    gap:8vw;
    align-items:end
}
.intro h2,.solutions h2{
    font-size:clamp(42px,4.8vw,76px);
    margin-top:35px
}
.intro-body p,.solutions-head p,.system-copy>p,.platform-copy>p,.about-copy>p,.contact-panel>div>p{
    color:var(--muted);
    font-size:17px;
    line-height:1.9
}
.text-link{
    display:inline-flex;
    align-items:center;
    gap:28px;
    color:#d9ebff;
    margin-top:13px;
    font-size:14px
}
.text-link b{
    color:var(--cyan)
}
.pillar-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    margin-top:80px;
    border-top:1px solid var(--line);
    border-bottom:1px solid var(--line)
}
.pillar{
    min-height:330px;
    padding:38px;
    position:relative;
    border-inline-end:1px solid var(--line);
    transition:.35s;
    background:linear-gradient(180deg,transparent,rgba(8,26,53,.15))
}
.pillar:last-child{
    border:0
}
.pillar:hover{
    background:linear-gradient(180deg,rgba(20,91,181,.08),rgba(8,26,53,.35));
    transform:translateY(-4px)
}
.pillar>span{
    position:absolute;
    top:25px;
    inset-inline-end:28px;
    font-weight:500;font-size:10px;
    color:#506783
}
.pillar i{
    display:grid;
    place-items:center;
    width:62px;
    height:62px;
    border:1px solid rgba(25,217,255,.28);
    border-radius:18px;
    color:var(--cyan);
    font-style:normal;
    font-size:26px;
    box-shadow:inset 0 0 28px rgba(25,217,255,.05)
}
.pillar h3{
    font-weight:600;font-size:21px;line-height:1;
    letter-spacing:1px;
    margin:48px 0 15px
}
.pillar p{
    color:#8fa6bd;
    line-height:1.8;
    font-size:14px;
    max-width:310px
}
.system{
    display:grid;
    grid-template-columns:1.3fr .7fr;
    gap:7vw;
    align-items:center;
    background:#030a18
}
.system-visual{
    height:min(760px,68vw);
    min-height:620px;
    position:relative;
    border-radius:36px;
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:var(--shadow)
}
.system-visual>img{
    width:100%;
    height:100%;
    object-fit:cover
}
.visual-shade{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,rgba(2,8,23,.36),transparent 35%,transparent 65%,rgba(2,8,23,.36)),linear-gradient(0deg,rgba(2,8,23,.46),transparent 25%)
}
.scan-line{
    position:absolute;
    left:10%;
    right:10%;
    height:1px;
    top:30%;
    background:linear-gradient(90deg,transparent,var(--cyan),transparent);
    box-shadow:0 0 14px var(--cyan);
    animation:scan 5s ease-in-out infinite
}
@keyframes scan{
    0%,100%{
        top:25%;
        opacity:.2
    }
    50%{
        top:76%;
        opacity:.9
    }
}
.sensor{
    position:absolute;
    display:flex;
    align-items:center;
    gap:10px;
    border:1px solid rgba(82,170,255,.34);
    background:rgba(3,13,31,.76);
    backdrop-filter:blur(14px);
    color:#fff;
    border-radius:14px;
    padding:10px 13px;
    box-shadow:0 12px 35px rgba(0,0,0,.3);
    cursor:default
}
.sensor i{
    width:7px;
    height:7px;
    background:var(--cyan);
    border-radius:50%;
    box-shadow:0 0 11px var(--cyan)
}
.sensor b{
    font-size:11px;
    font-weight:500
}
.sensor small{
    font-weight:500;font-size:10px;
    color:#8dddf5
}
.sensor-1{
    top:20%;
    right:7%
}
.sensor-2{
    top:45%;
    left:7%
}
.sensor-3{
    bottom:25%;
    right:8%
}
.sensor-4{
    bottom:10%;
    left:11%
}
.system-copy h2{
    font-size:clamp(42px,4vw,68px);
    margin-top:34px
}
.flow-list{
    margin-top:42px;
    border-top:1px solid var(--line)
}
.flow-list div{
    display:flex;
    align-items:center;
    gap:22px;
    border-bottom:1px solid var(--line);
    padding:19px 0;
    color:#c9d7e5
}
.flow-list span{
    font-weight:500;font-size:10px;
    color:var(--cyan)
}
.flow-list b{
    font-size:14px;
    font-weight:500
}
.platform{
    position:relative;
    min-height:900px;
    display:grid;
    grid-template-columns:.7fr 1.3fr;
    align-items:center;
    gap:6vw;
    overflow:hidden
}
.platform-bg{
    position:absolute;
    inset:0;
    z-index:-1;
    background:linear-gradient(90deg,rgba(2,8,23,.95),rgba(2,8,23,.45)),url('assets/iot-building.webp') center/cover;
    opacity:.67
}
.platform:after{
    content:"";
    position:absolute;
    inset:0;
    z-index:-1;
    background:radial-gradient(circle at 70% 45%,rgba(28,115,255,.2),transparent 35%),linear-gradient(0deg,var(--bg),transparent 22%,transparent 78%,var(--bg))
}
.section-kicker.light{
    color:#bfeeff
}
.platform-copy h2{
    font-size:clamp(43px,4.2vw,70px)
}
.dashboard-shell{
    direction:ltr;
    padding:20px;
    border-radius:33px;
    border:1px solid rgba(141,193,255,.25);
    background:rgba(5,16,34,.78);
    box-shadow:0 50px 120px rgba(0,0,0,.55),0 0 80px rgba(18,101,255,.12);
    backdrop-filter:blur(24px);
    transform:perspective(1400px) rotateY(-5deg) rotateX(2deg)
}
.dash-top{
    height:57px;
    display:flex;
    align-items:center;
    border-bottom:1px solid var(--line);
    gap:16px;
    padding:0 7px
}
.mini-brand{
    font-weight:700;font-size:18px
}
.mini-brand span{
    color:var(--cyan)
}
.dash-title{
    flex:1;
    color:#adbed0;
    font-weight:500;font-size:12px
}
.dash-live{
    font-weight:600;font-size:9px;
    letter-spacing:1px;
    color:#78efc8
}
.dash-live i{
    display:inline-block;
    width:6px;
    height:6px;
    background:var(--green);
    border-radius:50%;
    margin-right:5px
}
.dash-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:12px;
    padding-top:16px
}
.dash-card{
    min-height:145px;
    border:1px solid var(--line);
    border-radius:17px;
    background:linear-gradient(145deg,rgba(255,255,255,.055),rgba(255,255,255,.018));
    padding:17px
}
.dash-card small{
    font-weight:500;font-size:10px;
    color:#8096ae
}
.dash-card>strong{
    display:block;
    font-weight:600;font-size:34px;line-height:1;
    margin:24px 0 7px
}
.dash-card p{
    font-weight:500;font-size:9px;
    color:#70869e;
    margin:0
}
.dash-card.health{
    grid-column:span 2
}
.dash-card.health>div{
    display:flex;
    align-items:baseline;
    gap:13px;
    margin:17px 0
}
.dash-card.health strong{
    font-weight:600;font-size:45px;line-height:1;
    color:var(--green)
}
.dash-card.health span{
    font-weight:600;font-size:14px;
    color:#98f0d2
}
.dash-card.alert strong{
    color:var(--danger)
}
.dash-card.chart{
    grid-column:span 2
}
.bars{
    height:60px;
    display:flex;
    align-items:end;
    gap:7px;
    margin-top:20px
}
.bars i{
    flex:1;
    background:linear-gradient(var(--cyan),var(--blue));
    border-radius:4px 4px 0 0;
    opacity:.75
}
.bars i:nth-child(1){
    height:28%
}
.bars i:nth-child(2){
    height:47%
}
.bars i:nth-child(3){
    height:38%
}
.bars i:nth-child(4){
    height:80%
}
.bars i:nth-child(5){
    height:63%
}
.bars i:nth-child(6){
    height:92%
}
.bars i:nth-child(7){
    height:74%
}
.sensor-list p{
    display:flex;
    justify-content:space-between;
    border-top:1px solid rgba(255,255,255,.06);
    padding-top:8px;
    margin-top:8px!important
}
.sensor-list b{
    font-weight:500;font-size:9px;
    color:#a9bfd4
}
.sensor-list span{
    font-weight:600;font-size:9px;
    color:var(--green)
}
.solutions{
    background:radial-gradient(circle at 20% 30%,rgba(18,90,190,.10),transparent 30%),var(--bg)
}
.solutions-head{
    margin-bottom:70px
}
.solution-card{
    display:grid;
    grid-template-columns:1.15fr .85fr;
    min-height:580px;
    border:1px solid var(--line);
    border-radius:34px;
    overflow:hidden;
    margin-top:26px;
    background:#051023
}
.solution-card.business{
    grid-template-columns:.85fr 1.15fr
}
.solution-card.business .solution-image{
    order:2
}
.solution-card.business .solution-copy{
    order:1
}
.solution-image{
    position:relative;
    overflow:hidden
}
.solution-image img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:1s
}
.solution-card:hover .solution-image img{
    transform:scale(1.035)
}
.solution-image>div{
    position:absolute;
    inset:0;
    background:linear-gradient(90deg,transparent 50%,#051023 100%)
}
.business .solution-image>div{
    background:linear-gradient(-90deg,transparent 50%,#051023 100%)
}
.solution-copy{
    padding:clamp(40px,5vw,80px);
    display:flex;
    flex-direction:column;
    justify-content:center;
    align-items:flex-start
}
.product-tag{
    font-weight:600;font-size:10px;line-height:1;
    letter-spacing:2px;
    color:var(--cyan);
    border:1px solid rgba(25,217,255,.24);
    padding:8px 11px;
    border-radius:99px;
    background:rgba(25,217,255,.04)
}
.solution-copy h3{
    font-size:clamp(34px,3vw,54px);
    line-height:1.25;
    margin:27px 0 15px;
    letter-spacing:-1px
}
.solution-copy>p{
    font-size:16px;
    line-height:1.8;
    color:var(--muted)
}
.solution-copy ul{
    list-style:none;
    margin:23px 0;
    padding:0;
    display:grid;
    gap:13px
}
.solution-copy li{
    font-size:14px;
    color:#c4d2e0
}
.solution-copy li:before{
    content:"";
    display:inline-block;
    width:6px;
    height:6px;
    background:var(--cyan);
    border-radius:50%;
    margin-inline-end:10px;
    box-shadow:0 0 9px var(--cyan)
}
.manifesto{
    height:86vh;
    min-height:680px;
    position:relative;
    display:grid;
    place-items:center;
    text-align:center;
    overflow:hidden
}
.manifesto-bg{
    position:absolute;
    inset:0
}
.manifesto-bg img{
    width:100%;
    height:100%;
    object-fit:cover
}
.manifesto-bg:after{
    content:"";
    position:absolute;
    inset:0;
    background:linear-gradient(rgba(2,8,23,.65),rgba(2,8,23,.75)),radial-gradient(circle,transparent 10%,rgba(2,8,23,.65) 75%)
}
.manifesto-copy{
    position:relative;
    max-width:1000px;
    padding:30px
}
.manifesto-copy>span{
    font-weight:600;font-size:10px;
    letter-spacing:3px;
    color:var(--cyan)
}
.manifesto h2{
    font-size:clamp(48px,6vw,90px);
    margin:25px 0
}
.manifesto p{
    max-width:660px;
    margin:auto;
    color:#b8cada;
    font-size:17px;
    line-height:1.9
}
.about-preview{
    background:#030a18
}
.about-panel{
    display:grid;
    grid-template-columns:1fr .75fr;
    gap:6vw;
    align-items:center;
    padding:clamp(35px,5vw,75px);
    border:1px solid var(--line);
    border-radius:35px;
    background:linear-gradient(145deg,#07152b,#030b1a);
    overflow:hidden
}
.about-copy h2{
    font-size:clamp(42px,4vw,68px)
}
.patent-card{
    height:430px;
    position:relative;
    border:1px solid rgba(26,177,255,.27);
    border-radius:25px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    background:radial-gradient(circle,rgba(0,156,255,.13),transparent 48%),#030b19;
    box-shadow:inset 0 0 70px rgba(20,110,255,.05)
}
.patent-grid{
    position:absolute;
    inset:0;
    opacity:.15;
    background-image:linear-gradient(rgba(31,169,255,.25) 1px,transparent 1px),linear-gradient(90deg,rgba(31,169,255,.25) 1px,transparent 1px);
    background-size:30px 30px
}
.patent-card>span{
    position:absolute;
    top:25px;
    font-weight:500;font-size:9px;
    letter-spacing:2px;
    color:#567896
}
.patent-symbol{
    font-weight:300;font-size:105px;line-height:1;
    color:var(--cyan);
    filter:drop-shadow(0 0 24px rgba(25,217,255,.35))
}
.patent-card strong{
    font-weight:600;font-size:13px;
    letter-spacing:2px;
    margin-top:15px
}
.patent-card small{
    font-weight:500;font-size:9px;
    letter-spacing:2px;
    color:#7092af;
    margin-top:8px
}
.contact{
    background:radial-gradient(circle at 80% 10%,rgba(19,103,218,.13),transparent 28%),var(--bg)
}
.contact-panel{
    display:grid;
    grid-template-columns:.8fr 1.2fr;
    gap:8vw;
    border-top:1px solid var(--line);
    padding-top:80px
}
.contact-panel h2{
    font-size:clamp(42px,4vw,68px)
}
.demo-form{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:17px
}
.demo-form label{
    display:flex;
    flex-direction:column;
    gap:8px;
    color:#8fa6bd;
    font-size:12px
}
.demo-form input,.demo-form select{
    width:100%;
    height:55px;
    color:#fff;
    background:#061226;
    border:1px solid var(--line);
    border-radius:13px;
    padding:0 15px;
    outline:none
}
.demo-form input:focus,.demo-form select:focus{
    border-color:rgba(25,217,255,.55);
    box-shadow:0 0 0 3px rgba(25,217,255,.05)
}
.demo-form .btn{
    grid-column:span 2;
    margin-top:6px
}
.form-note{
    grid-column:span 2;
    color:#637b95;
    font-size:10px;
    line-height:1.7;
    margin:0
}
footer{
    min-height:150px;
    border-top:1px solid var(--line);
    padding:30px clamp(28px,7vw,130px);
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#728aa1;
    font-size:11px
}
.footer-brand{
    transform:scale(.88);
    transform-origin:right center
}
footer>div{
    display:flex;
    gap:20px
}
.reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .8s ease,transform .8s ease
}
.reveal.visible{
    opacity:1;
    transform:none
}
.delay-1{
    transition-delay:.12s
}
.delay-2{
    transition-delay:.22s
}
@media(max-width:1180px){
    .nav{
        display:none
    }
    .menu-toggle{
        display:block
    }
    .nav.open{
        position:fixed;
        display:flex;
        flex-direction:column;
        align-items:flex-start;
        top:72px;
        left:18px;
        right:18px;
        padding:25px;
        border:1px solid var(--line);
        border-radius:20px;
        background:rgba(3,11,27,.97);
        box-shadow:var(--shadow)
    }
    .hero-content{
        width:min(720px,70vw)
    }
    .hero-status{
        inset-inline-end:4vw;
        width:280px
    }
    .system{
        grid-template-columns:1fr
    }
    .system-copy{
        max-width:720px
    }
    .platform{
        grid-template-columns:1fr
    }
    .platform-copy{
        max-width:650px
    }
    .dashboard-shell{
        max-width:900px;
        transform:none
    }
    .contact-panel{
        grid-template-columns:1fr
    }
    .about-panel{
        grid-template-columns:1fr
    }
    .patent-card{
        height:350px
    }
}
@media(max-width:760px){
    :root{
        --header:72px
    }
    .site-header{
        padding:0 18px
    }
    .brand-mark{
        width:35px;
        height:39px
    }
    .brand-copy strong{
        font-size:19px
    }
    .brand-copy small{
        font-size:5.5px;
        letter-spacing:1.4px
    }
    .header-actions .btn{
        display:none
    }
    .lang-switch{
        height:40px;
        padding:0 10px
    }
    .hero{
        min-height:780px;
        height:100svh;
        padding:118px 22px 100px;
        align-items:flex-end
    }
    .hero-bg{
        background-image:linear-gradient(0deg,rgba(2,8,23,.99) 0%,rgba(2,8,23,.75) 43%,rgba(2,8,23,.12) 72%),url('assets/hero-building.webp');
        background-position:64% center
    }
    .hero-content{
        width:100%
    }
    .hero h1{
        font-size:clamp(40px,12vw,58px);
        letter-spacing:-1.6px;
        margin:18px 0
    }
    .hero p{
        font-size:15px;
        line-height:1.75
    }
    .hero-actions{
        flex-direction:column;
        align-items:stretch;
        margin:25px 0 20px
    }
    .trust-strip{
        gap:10px;
        flex-wrap:wrap;
        padding-top:15px
    }
    .trust-strip span{
        font-size:10px
    }
    .hero-status{
        display:none
    }
    .hero-caption{
        display:none
    }
    .scroll-cue{
        left:24px;
        bottom:25px
    }
    .section{
        padding:90px 22px
    }
    .intro-grid,.solutions-head{
        grid-template-columns:1fr;
        gap:10px
    }
    .intro h2,.solutions h2{
        font-size:43px;
        letter-spacing:-1.3px
    }
    .pillar-grid{
        grid-template-columns:1fr;
        margin-top:45px
    }
    .pillar{
        min-height:230px;
        border-inline-end:0;
        border-bottom:1px solid var(--line);
        padding:30px 12px
    }
    .pillar:last-child{
        border-bottom:0
    }
    .pillar h3{
        margin-top:28px
    }
    .system-visual{
        min-height:560px;
        height:75vh;
        border-radius:24px
    }
    .sensor{
        padding:8px;
        font-size:9px
    }
    .sensor b{
        font-size:9px
    }
    .sensor small{
        display:none
    }
    .sensor-1{
        right:4%
    }
    .sensor-2{
        left:4%
    }
    .sensor-3{
        right:4%
    }
    .sensor-4{
        left:4%
    }
    .system-copy h2,.platform-copy h2,.about-copy h2,.contact-panel h2{
        font-size:43px;
        letter-spacing:-1.3px
    }
    .platform{
        min-height:920px;
        padding-left:16px;
        padding-right:16px
    }
    .dash-grid{
        grid-template-columns:1fr 1fr
    }
    .dash-card.health{
        grid-column:span 2
    }
    .dash-card.chart{
        grid-column:span 2
    }
    .sensor-list{
        grid-column:span 2
    }
    .dashboard-shell{
        padding:12px;
        border-radius:22px
    }
    .solution-card,.solution-card.business{
        grid-template-columns:1fr
    }
    .solution-card.business .solution-image{
        order:1
    }
    .solution-card.business .solution-copy{
        order:2
    }
    .solution-image{
        height:360px
    }
    .solution-image>div,.business .solution-image>div{
        background:linear-gradient(0deg,#051023,transparent 55%)
    }
    .solution-copy{
        padding:35px 25px
    }
    .manifesto{
        height:78vh
    }
    .manifesto h2{
        font-size:46px;
        letter-spacing:-1.4px
    }
    .about-panel{
        padding:28px 20px;
        border-radius:25px
    }
    .patent-card{
        height:300px
    }
    .demo-form{
        grid-template-columns:1fr
    }
    .demo-form .btn,.form-note{
        grid-column:span 1
    }
    footer{
        flex-direction:column;
        gap:25px;
        text-align:center;
        padding-top:50px;
        padding-bottom:50px
    }
    .footer-brand{
        transform:none
    }
    .reveal{
        transform:translateY(18px)
    }
}
body.en{
    direction:ltr
}
.en .hero-bg{
    background-image:linear-gradient(-90deg,rgba(2,8,23,.98) 0%,rgba(2,8,23,.82) 30%,rgba(2,8,23,.24) 58%,rgba(2,8,23,.12) 100%),linear-gradient(0deg,rgba(2,8,23,.92),transparent 45%),url('assets/hero-building.webp')
}
.en .hero h1,.en .section h2,.en .manifesto h2{
    letter-spacing:-3.4px
}
.en .footer-brand{
    transform-origin:left center
}
@media(max-width:760px){
    body.en .hero-bg{
        background-image:linear-gradient(0deg,rgba(2,8,23,.99) 0%,rgba(2,8,23,.75) 43%,rgba(2,8,23,.12) 72%),url('assets/hero-building.webp')
    }
}

/* ===== Hero refinement + interactive live preview ===== */
.official-brand{
    width:230px;
    display:flex;
    align-items:center
}
.official-brand img{
    display:block;
    width:100%;
    height:auto;
    filter:drop-shadow(0 0 18px rgba(15,168,255,.12))
}
.hero-content{
    width:min(590px,43vw)
}
.hero h1{
    font-size:clamp(40px,4.2vw,66px);
    line-height:1.12;
    letter-spacing:-2px;
    margin:22px 0 20px
}
.hero p{
    font-size:clamp(16px,1.15vw,19px);
    line-height:1.85;
    max-width:570px
}
.hero-bg{
    background-image:linear-gradient(90deg,rgba(2,8,23,.94) 0%,rgba(2,8,23,.70) 29%,rgba(2,8,23,.18) 58%,rgba(2,8,23,.07) 100%),linear-gradient(0deg,rgba(2,8,23,.76),transparent 48%),url('assets/hero-building.webp')
}
.hero-live-demo{
    position:absolute;
    inset-inline-end:clamp(28px,5vw,88px);
    bottom:54px;
    width:min(560px,42vw);
    border:1px solid rgba(97,173,255,.26);
    border-radius:26px;
    background:linear-gradient(155deg,rgba(5,25,56,.72),rgba(2,10,25,.60));
    backdrop-filter:blur(18px);
    box-shadow:0 24px 70px rgba(0,0,0,.34),inset 0 1px rgba(255,255,255,.04);
    overflow:hidden;
    z-index:4
}
.demo-topline{
    height:48px;
    padding:0 18px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    border-bottom:1px solid rgba(121,184,255,.15);
    font-size:11px;
    color:#cfe1f5
}
.demo-topline>span{
    display:flex;
    align-items:center;
    gap:9px
}
.demo-topline i{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#36e9b5;
    box-shadow:0 0 13px #36e9b5
}
.demo-topline small{
    font-weight:600;font-size:9px;line-height:1;
    letter-spacing:1.8px;
    color:#6da5d2
}
.demo-stage{
    height:310px;
    position:relative;
    overflow:hidden;
    background:radial-gradient(circle at 50% 82%,rgba(0,153,255,.23),transparent 40%),linear-gradient(180deg,rgba(7,29,63,.18),rgba(3,13,31,.5))
}
.demo-stage:before{
    content:"";
    position:absolute;
    inset:0;
    background-image:linear-gradient(rgba(81,164,255,.08) 1px,transparent 1px),linear-gradient(90deg,rgba(81,164,255,.08) 1px,transparent 1px);
    background-size:52px 52px;
    mask-image:linear-gradient(to bottom,transparent,black 30%,black)
}
.demo-stage>img{
    position:absolute;
    left:50%;
    bottom:5px;
    transform:translateX(-50%);
    width:74%;
    max-height:94%;
    object-fit:contain;
    filter:drop-shadow(0 25px 30px rgba(0,0,0,.32));
    transition:transform .3s ease,filter .3s ease
}
.demo-state-card{
    position:absolute;
    top:34px;
    right:24px;
    min-width:235px;
    display:flex;
    gap:12px;
    align-items:center;
    padding:13px 15px;
    border-radius:16px;
    background:rgba(249,252,255,.96);
    color:#09224a;
    box-shadow:0 13px 35px rgba(0,0,0,.22);
    transition:.3s
}
.demo-state-card small{
    display:block;
    font-weight:600;font-size:8px;line-height:1;
    letter-spacing:1.3px;
    color:#7391ad;
    margin-bottom:6px
}
.demo-state-card b{
    display:block;
    font-size:14px
}
.demo-state-card p{
    margin:3px 0 0;
    font-size:10px;
    color:#73849a;
    line-height:1.35
}
.demo-state-icon{
    width:42px;
    height:42px;
    border-radius:13px;
    display:grid;
    place-items:center;
    background:#eafff8;
    color:#00a979;
    font-size:21px;
    font-weight:800;
    flex:0 0 auto
}
.demo-hotspot{
    position:absolute;
    width:26px;
    height:26px;
    border:0;
    background:none;
    padding:0;
    cursor:pointer;
    z-index:3
}
.demo-hotspot span,.demo-hotspot:before,.demo-hotspot:after{
    position:absolute;
    inset:50% auto auto 50%;
    transform:translate(-50%,-50%);
    border-radius:50%;
    content:""
}
.demo-hotspot span{
    width:8px;
    height:8px;
    background:#ffd14c;
    box-shadow:0 0 14px #ffbd2e
}
.demo-hotspot:before{
    width:18px;
    height:18px;
    border:1px solid rgba(255,195,44,.72);
    animation:demoPulse 1.7s infinite
}
.demo-hotspot:after{
    width:26px;
    height:26px;
    border:1px solid rgba(255,195,44,.28);
    animation:demoPulse 1.7s .45s infinite
}
.hotspot-alert{
    left:61%;
    top:55%
}
.hotspot-emergency{
    left:37%;
    top:48%
}
.hotspot-emergency span{
    background:#ff5a67;
    box-shadow:0 0 14px #ff3c4b
}
.hotspot-emergency:before,.hotspot-emergency:after{
    border-color:rgba(255,82,96,.55)
}
.demo-controls{
    height:48px;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    border-top:1px solid rgba(121,184,255,.14);
    padding:7px 12px
}
.demo-mode{
    min-width:88px;
    height:32px;
    border-radius:999px;
    border:1px solid rgba(111,179,255,.22);
    background:rgba(255,255,255,.025);
    color:#bcd0e4;
    cursor:pointer;
    font-size:11px;
    font-weight:600;
    transition:.25s
}
.demo-mode:hover,.demo-mode.active{
    border-color:#3fb5ff;
    background:rgba(17,119,224,.17);
    color:#fff;
    box-shadow:0 0 18px rgba(37,157,255,.10)
}
.demo-mode.danger.active{
    border-color:#ff6270;
    background:rgba(255,68,83,.15)
}
.hero-live-demo.state-attention{
    border-color:rgba(255,188,56,.38)
}
.hero-live-demo.state-attention .demo-state-icon{
    background:#fff5dd;
    color:#f0a000
}
.hero-live-demo.state-attention .demo-stage>img{
    filter:drop-shadow(0 25px 30px rgba(0,0,0,.32)) drop-shadow(0 0 18px rgba(255,178,30,.14))
}
.hero-live-demo.state-emergency{
    border-color:rgba(255,81,96,.48)
}
.hero-live-demo.state-emergency .demo-state-icon{
    background:#ffe8eb;
    color:#e72538
}
.hero-live-demo.state-emergency .demo-stage>img{
    filter:drop-shadow(0 25px 30px rgba(0,0,0,.32)) drop-shadow(0 0 20px rgba(255,52,70,.22))
}
.hero-live-demo.shake{
    animation:heroEmergencyShake .48s linear 2
}
@keyframes demoPulse{
    0%{
        opacity:.85;
        transform:translate(-50%,-50%) scale(.55)
    }
    75%,100%{
        opacity:0;
        transform:translate(-50%,-50%) scale(1.22)
    }
}
@keyframes heroEmergencyShake{
    0%,100%{
        transform:translateX(0)
    }
    15%{
        transform:translateX(-5px)
    }
    30%{
        transform:translateX(5px)
    }
    45%{
        transform:translateX(-4px)
    }
    60%{
        transform:translateX(4px)
    }
    75%{
        transform:translateX(-2px)
    }
}
body.en .hero-bg{
    background-image:linear-gradient(-90deg,rgba(2,8,23,.94) 0%,rgba(2,8,23,.70) 29%,rgba(2,8,23,.18) 58%,rgba(2,8,23,.07) 100%),linear-gradient(0deg,rgba(2,8,23,.76),transparent 48%),url('assets/hero-building.webp')
}
body.en .hero-live-demo{
    inset-inline-end:clamp(28px,5vw,88px)
}
@media(max-width:1180px){
    .official-brand{
        width:205px
    }
    .hero-content{
        width:min(560px,49vw)
    }
    .hero-live-demo{
        width:min(470px,42vw)
    }
    .demo-stage{
        height:275px
    }
    .demo-state-card{
        min-width:205px;
        right:16px
    }
    .hero h1{
        font-size:clamp(38px,4.4vw,56px)
    }
}
@media(max-width:900px){
    .hero{
        min-height:980px;
        height:auto;
        align-items:flex-start;
        padding-top:118px;
        padding-bottom:70px
    }
    .hero-content{
        width:100%;
        max-width:660px
    }
    .hero-live-demo{
        position:relative;
        inset:auto!important;
        margin:40px auto 0;
        width:min(650px,100%);
        bottom:auto
    }
    .demo-stage{
        height:330px
    }
    .hero-caption{
        display:none
    }
}
@media(max-width:760px){
    .official-brand{
        width:170px
    }
    .hero{
        min-height:auto;
        height:auto;
        padding:108px 20px 58px;
        display:block
    }
    .hero-bg{
        background-image:linear-gradient(0deg,rgba(2,8,23,.98) 0%,rgba(2,8,23,.78) 48%,rgba(2,8,23,.22) 82%),url('assets/hero-building.webp');
        background-position:64% center
    }
    .hero h1{
        font-size:clamp(34px,10vw,48px);
        letter-spacing:-1.2px
    }
    .hero p{
        font-size:14px
    }
    .hero-live-demo{
        margin-top:32px;
        border-radius:21px
    }
    .demo-stage{
        height:260px
    }
    .demo-stage>img{
        width:90%
    }
    .demo-state-card{
        top:18px;
        right:12px;
        min-width:190px;
        padding:10px 11px
    }
    .demo-state-card b{
        font-size:12px
    }
    .demo-state-icon{
        width:36px;
        height:36px
    }
    .demo-topline{
        padding:0 12px
    }
    .demo-controls{
        gap:5px
    }
    .demo-mode{
        min-width:72px;
        font-size:10px
    }
}


/* ===== Hero V4: glass message card + animated live-demo glow ===== */
.hero-glass-card{
    padding:clamp(24px,2.2vw,34px);
    border:1px solid rgba(116,184,255,.20);
    border-radius:26px;
    background:
        linear-gradient(145deg,rgba(4,19,43,.78),rgba(3,13,31,.62)),
        radial-gradient(circle at 15% 10%,rgba(39,157,255,.10),transparent 38%);
    -webkit-backdrop-filter:blur(18px) saturate(125%);
    backdrop-filter:blur(18px) saturate(125%);
    box-shadow:0 24px 70px rgba(0,0,0,.30),inset 0 1px 0 rgba(255,255,255,.055);
}
.hero-glass-card h1{
    margin-top:0;
    font-size:clamp(36px,3.65vw,58px);
    line-height:1.15
}
.hero-glass-card p{
    margin-bottom:0;
    color:#d4e1ee;
    font-size:clamp(15px,1.05vw,18px);
    line-height:1.9
}
.hero-glass-card .hero-actions{
    margin:28px 0 22px
}
.hero-glass-card .trust-strip{
    margin-top:0;
    padding-top:18px
}

.hero-live-demo{
    border-color:rgba(74,181,255,.42);
    box-shadow:
        0 0 24px rgba(0,174,255,.18),
        0 0 64px rgba(22,108,255,.18),
        0 28px 80px rgba(0,0,0,.42),
        inset 0 1px rgba(255,255,255,.06);
    animation:demoAmbientGlow 3.8s ease-in-out infinite;
}
.hero-live-demo::after{
    content:"";
    position:absolute;
    inset:0;
    z-index:8;
    pointer-events:none;
    border-radius:inherit;
    border:1px solid rgba(92,207,255,.20);
    box-shadow:inset 0 0 26px rgba(0,178,255,.075);
    opacity:.65;
    animation:demoEdgeBreath 3.8s ease-in-out infinite;
}
.demo-stage{
    background:
        radial-gradient(circle at 50% 84%,rgba(0,174,255,.32),transparent 43%),
        radial-gradient(circle at 50% 48%,rgba(26,103,255,.09),transparent 58%),
        linear-gradient(180deg,rgba(7,29,63,.22),rgba(3,13,31,.56));
}
.hero-live-demo.state-attention{
    animation:demoAttentionGlow 2.2s ease-in-out infinite
}
.hero-live-demo.state-emergency{
    animation:demoEmergencyGlow 1.05s ease-in-out infinite
}
.hero-live-demo.shake{
    animation:heroEmergencyShake .48s linear 2
}

@keyframes demoAmbientGlow{
    0%,100%{
        box-shadow:0 0 20px rgba(0,174,255,.14),0 0 46px rgba(22,108,255,.13),0 28px 80px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.06)
    }
    50%{
        box-shadow:0 0 34px rgba(0,205,255,.30),0 0 86px rgba(22,108,255,.27),0 28px 82px rgba(0,0,0,.46),inset 0 1px rgba(255,255,255,.075)
    }
}
@keyframes demoEdgeBreath{
    0%,100%{
        opacity:.42
    }
    50%{
        opacity:.95
    }
}
@keyframes demoAttentionGlow{
    0%,100%{
        box-shadow:0 0 22px rgba(255,184,48,.18),0 0 54px rgba(255,149,24,.12),0 28px 80px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.06)
    }
    50%{
        box-shadow:0 0 38px rgba(255,190,52,.36),0 0 88px rgba(255,137,14,.24),0 28px 82px rgba(0,0,0,.46),inset 0 1px rgba(255,255,255,.075)
    }
}
@keyframes demoEmergencyGlow{
    0%,100%{
        box-shadow:0 0 20px rgba(255,64,82,.20),0 0 52px rgba(255,37,62,.13),0 28px 80px rgba(0,0,0,.42),inset 0 1px rgba(255,255,255,.06)
    }
    50%{
        box-shadow:0 0 42px rgba(255,72,89,.48),0 0 96px rgba(255,28,56,.30),0 28px 82px rgba(0,0,0,.47),inset 0 1px rgba(255,255,255,.075)
    }
}

@media(max-width:1180px){
    .hero-glass-card{
        padding:26px
    }
    .hero-glass-card h1{
        font-size:clamp(34px,3.9vw,50px)
    }
}
@media(max-width:900px){
    .hero-glass-card{
        max-width:660px
    }
}
@media(max-width:760px){
    .hero-glass-card{
        padding:22px 18px;
        border-radius:21px
    }
    .hero-glass-card h1{
        font-size:clamp(31px,9vw,43px);
        line-height:1.18
    }
    .hero-glass-card p{
        font-size:14px;
        line-height:1.75
    }
    .hero-glass-card .hero-actions{
        margin:23px 0 18px
    }
    .hero-live-demo{
        box-shadow:0 0 22px rgba(0,174,255,.16),0 0 48px rgba(22,108,255,.13),0 22px 58px rgba(0,0,0,.38),inset 0 1px rgba(255,255,255,.05)
    }
}
@media(prefers-reduced-motion:reduce){
    .hero-live-demo,.hero-live-demo::after{
        animation:none!important
    }
}

/* ===== Hero V5: aligned cards + illuminated building ===== */
@media (min-width:901px){
    .hero{
        display:grid;
        grid-template-columns:minmax(0,.96fr) minmax(0,1.04fr);
        gap:clamp(34px,4.2vw,76px);
        align-items:start;
        padding-top:clamp(175px,20vh,220px);
    }
    .hero-content{
        width:100%;
        max-width:640px;
        justify-self:start;
        margin:0;
    }
    .hero-live-demo{
        position:relative;
        inset:auto;
        bottom:auto;
        width:100%;
        max-width:640px;
        justify-self:end;
        margin:0;
    }
}

/* Give the building a subtle premium electric-blue lift without replacing the image. */
.hero-bg{
    filter:brightness(1.10) saturate(1.10) contrast(1.02);
}
.hero-bg::before{
    content:"";
    position:absolute;
    inset:0;
    pointer-events:none;
    background:
        radial-gradient(ellipse at 63% 43%,rgba(30,145,255,.22) 0%,rgba(0,190,255,.10) 20%,transparent 48%),
        radial-gradient(ellipse at 53% 62%,rgba(23,103,255,.13) 0%,transparent 45%);
    mix-blend-mode:screen;
    opacity:.62;
    animation:buildingBlueBreath 5.8s ease-in-out infinite;
}
.hero-bg::after{
    content:"";
    position:absolute;
    width:34vw;
    height:78%;
    min-width:430px;
    top:8%;
    left:47%;
    pointer-events:none;
    background:linear-gradient(90deg,transparent,rgba(57,178,255,.07),rgba(0,207,255,.16),rgba(52,125,255,.08),transparent);
    filter:blur(28px);
    opacity:.56;
    transform:skewX(-7deg);
    animation:elevatorShaftGlow 4.8s ease-in-out infinite;
}

/* Bring the message card visually into the same premium layer as the live demo. */
.hero-glass-card{
    border-color:rgba(112,192,255,.28);
    box-shadow:
        0 0 22px rgba(23,141,255,.10),
        0 0 58px rgba(9,91,222,.10),
        0 28px 78px rgba(0,0,0,.34),
        inset 0 1px 0 rgba(255,255,255,.065);
    animation:messageCardBreath 5.2s ease-in-out infinite;
}

/* The live demo remains the brighter of the two cards, with a controlled animated cyan halo. */
.hero-live-demo{
    border-color:rgba(74,190,255,.52);
    box-shadow:
        0 0 30px rgba(0,190,255,.22),
        0 0 76px rgba(15,112,255,.23),
        0 30px 82px rgba(0,0,0,.43),
        inset 0 1px rgba(255,255,255,.07);
}

@keyframes buildingBlueBreath{
    0%,100%{
        opacity:.50;
        filter:brightness(.96)
    }
    50%{
        opacity:.82;
        filter:brightness(1.12)
    }
}
@keyframes elevatorShaftGlow{
    0%,100%{
        opacity:.42;
        transform:skewX(-7deg) scaleX(.98)
    }
    50%{
        opacity:.72;
        transform:skewX(-7deg) scaleX(1.04)
    }
}
@keyframes messageCardBreath{
    0%,100%{
        box-shadow:0 0 18px rgba(23,141,255,.08),0 0 48px rgba(9,91,222,.08),0 28px 78px rgba(0,0,0,.34),inset 0 1px 0 rgba(255,255,255,.065)
    }
    50%{
        box-shadow:0 0 28px rgba(23,164,255,.15),0 0 68px rgba(9,108,242,.13),0 28px 82px rgba(0,0,0,.36),inset 0 1px 0 rgba(255,255,255,.075)
    }
}

@media(max-width:1180px) and (min-width:901px){
    .hero{
        gap:30px;
        padding-top:clamp(150px,18vh,185px);
    }
    .hero-content,.hero-live-demo{
        max-width:none
    }
}

@media(max-width:900px){
    .hero-bg::after{
        left:42%;
        width:54vw;
        min-width:340px
    }
}

@media(max-width:760px){
    .hero-bg{
        filter:brightness(1.06) saturate(1.06)
    }
    .hero-bg::before{
        opacity:.42
    }
    .hero-bg::after{
        display:none
    }
    .hero-glass-card{
        animation:none
    }
}

@media(prefers-reduced-motion:reduce){
    .hero-bg::before,.hero-bg::after,.hero-glass-card{
        animation:none!important
    }
}

/* ===== Hero V6 — integrated product scene ===== */
@media (min-width:901px){
    .hero{
        display:grid;
        grid-template-columns:minmax(360px,.82fr) minmax(500px,1.18fr);
        gap:clamp(22px,3vw,54px);
        align-items:center;
        padding:132px clamp(36px,5vw,88px) 92px;
        min-height:800px
    }
    .hero-message{
        width:100%;
        max-width:570px;
        align-self:center;
        justify-self:start;
        z-index:5
    }
    .hero-product-stage{
        position:relative!important;
        inset:auto!important;
        width:100%!important;
        max-width:720px!important;
        justify-self:end;
        align-self:center;
        margin:0!important
    }
}
.hero-bg{
    filter:brightness(1.18) saturate(1.16) contrast(1.03)
}
.hero-bg{
    background-image:linear-gradient(90deg,rgba(2,8,23,.76) 0%,rgba(2,8,23,.46) 27%,rgba(2,8,23,.08) 55%,rgba(2,8,23,.18) 100%),linear-gradient(0deg,rgba(2,8,23,.82),transparent 44%),url('assets/hero-building.webp')
}
.hero-message{
    position:relative
}
.hero-message-glass{
    padding:clamp(28px,3vw,44px);
    border:1px solid rgba(127,197,255,.30);
    border-radius:28px;
    background:linear-gradient(145deg,rgba(4,18,43,.72),rgba(5,17,37,.48));
    backdrop-filter:blur(18px) saturate(125%);
    box-shadow:0 0 30px rgba(16,145,255,.12),0 26px 70px rgba(0,0,0,.34),inset 0 1px rgba(255,255,255,.07);
    overflow:hidden
}
.hero-message-glass:before{
    content:"";
    position:absolute;
    inset:-40% 45% 35% -20%;
    background:radial-gradient(circle,rgba(49,190,255,.15),transparent 65%);
    pointer-events:none
}
.hero-live-kicker{
    display:flex;
    align-items:center;
    gap:9px;
    color:#73ddff;
    font-size:12px;
    font-weight:600;
    margin-bottom:17px
}
.hero-live-kicker i{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#20e8c1;
    box-shadow:0 0 14px #20e8c1;
    animation:liveDot 1.8s ease-in-out infinite
}
.hero-message h1{
    font-size:clamp(38px,3.65vw,60px)!important;
    line-height:1.14!important;
    letter-spacing:-2px!important;
    margin:0 0 20px!important
}
.hero-message p{
    font-size:clamp(15px,1.05vw,18px);
    line-height:1.85;
    margin:0;
    color:#c8d9e9
}
.hero-message .hero-actions{
    margin:27px 0 0
}
.hero-trust{
    border:0;
    margin:15px 0 0;
    padding:0 16px;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap
}
.hero-trust b{
    font-weight:500
}
.hero-product-stage{
    border:0!important;
    background:transparent!important;
    backdrop-filter:none!important;
    box-shadow:none!important;
    animation:none!important;
    overflow:visible!important;
    padding-top:58px
}
.hero-product-stage:before,.hero-product-stage:after{
    display:none!important
}
.demo-floating-label{
    position:absolute;
    z-index:8;
    top:0;
    left:5%;
    right:5%;
    height:54px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    padding:0 20px;
    border:1px solid rgba(75,190,255,.30);
    border-radius:18px;
    background:rgba(4,19,43,.64);
    backdrop-filter:blur(16px);
    box-shadow:0 0 28px rgba(0,188,255,.13)
}
.demo-floating-label span{
    display:flex;
    align-items:center;
    gap:9px
}
.demo-floating-label i{
    width:7px;
    height:7px;
    border-radius:50%;
    background:#22e4ba;
    box-shadow:0 0 13px #22e4ba
}
.demo-floating-label b{
    font-size:12px
}
.demo-floating-label small{
    font-weight:600;font-size:9px;line-height:1;
    letter-spacing:1.8px;
    color:#7edaff
}
.hero-product-stage .demo-stage{
    height:430px!important;
    border:0!important;
    background:transparent!important;
    overflow:visible!important;
    display:grid;
    place-items:center
}
.hero-product-stage .demo-stage>img{
    width:min(96%,680px)!important;
    max-height:390px!important;
    object-fit:contain;
    filter:drop-shadow(0 28px 28px rgba(0,0,0,.44)) drop-shadow(0 0 25px rgba(0,169,255,.25));
    position:relative;
    z-index:3;
    animation:phonesFloat 4.6s ease-in-out infinite
}
.phone-aura{
    position:absolute;
    width:86%;
    height:33%;
    left:7%;
    bottom:7%;
    border-radius:50%;
    background:radial-gradient(ellipse,rgba(0,212,255,.34) 0%,rgba(19,105,255,.19) 38%,transparent 72%);
    filter:blur(18px);
    animation:auraBreath 3.4s ease-in-out infinite
}
.phone-aura:after{
    content:"";
    position:absolute;
    left:8%;
    right:8%;
    bottom:27%;
    height:3px;
    border-radius:50%;
    background:linear-gradient(90deg,transparent,#21d9ff,#1b6fff,#21d9ff,transparent);
    box-shadow:0 0 15px #0ccfff,0 0 42px rgba(20,112,255,.72)
}
.hero-product-stage .demo-state-card{
    top:12px!important;
    right:2%!important;
    z-index:7;
    box-shadow:0 12px 35px rgba(0,0,0,.26),0 0 24px rgba(37,180,255,.12)
}
.hero-product-stage .demo-controls{
    height:48px;
    border:1px solid rgba(77,181,255,.20);
    border-radius:999px;
    background:rgba(3,15,35,.56);
    backdrop-filter:blur(14px);
    width:min(470px,80%);
    margin:-3px auto 0;
    padding:6px;
    position:relative;
    z-index:6;
    box-shadow:0 0 28px rgba(0,145,255,.10)
}
.hero-product-stage .demo-mode{
    flex:1;
    min-width:0
}
.building-telemetry{
    position:absolute;
    inset:92px 0 74px;
    z-index:1;
    pointer-events:none
}
.telemetry-node{
    position:absolute;
    display:flex;
    align-items:center;
    gap:7px;
    padding:7px 10px;
    border:1px solid rgba(60,189,255,.20);
    border-radius:999px;
    background:rgba(2,15,35,.46);
    backdrop-filter:blur(7px);
    font-weight:600;font-size:8px;line-height:1;
    color:#9fdfff;
    letter-spacing:.7px;
    box-shadow:0 0 22px rgba(0,177,255,.09);
    animation:telemetryFloat 4s ease-in-out infinite
}
.telemetry-node i{
    width:6px;
    height:6px;
    border-radius:50%;
    background:#19e0c1;
    box-shadow:0 0 12px #19e0c1
}
.telemetry-node small{
    color:#fff;
    opacity:.75;
    font-size:8px
}
.node-connected{
    left:42%;
    top:17%
}
.node-temp{
    left:70%;
    top:98%;
    animation-delay:.8s
}
.node-door{
    left:61%;
    top:62%;
    animation-delay:1.6s
}
.node-signal{
    left:34%;
    top:48%;
    animation-delay:2.4s
}
.data-flight{
    position:absolute;
    height:1px;
    width:18%;
    background:linear-gradient(90deg,transparent,rgba(37,207,255,.7),transparent);
    filter:drop-shadow(0 0 6px #17cfff);
    opacity:.6;
    transform-origin:left center
}
.flight-a{
    left:44%;
    top:37%;
    transform:rotate(18deg);
    animation:dataTravel 3.2s linear infinite
}
.flight-b{
    left:48%;
    top:58%;
    transform:rotate(-12deg);
    animation:dataTravel 3.8s linear 1.2s infinite
}
.hero-mantra{
    position:absolute;
    bottom:28px;
    left:50%;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:18px;
    font-weight:600;font-size:10px;line-height:1;
    letter-spacing:2.4px;
    color:#7698b8;
    z-index:5
}
.hero-mantra i{
    width:32px;
    height:1px;
    background:linear-gradient(90deg,transparent,#20dfff,transparent)
}
@keyframes liveDot{
    50%{
        opacity:.45;
        box-shadow:0 0 22px #20e8c1
    }
}
@keyframes phonesFloat{
    0%,100%{
        transform:translateY(0)
    }
    50%{
        transform:translateY(-7px)
    }
}
@keyframes auraBreath{
    0%,100%{
        opacity:.55;
        transform:scale(.96)
    }
    50%{
        opacity:1;
        transform:scale(1.04)
    }
}
@keyframes telemetryFloat{
    0%,100%{
        transform:translateY(0);
        opacity:.65
    }
    50%{
        transform:translateY(-5px);
        opacity:1
    }
}
@keyframes dataTravel{
    0%{
        opacity:0;
        clip-path:inset(0 100% 0 0)
    }
    35%{
        opacity:.75
    }
    75%{
        opacity:.65;
        clip-path:inset(0 0 0 0)
    }
    100%{
        opacity:0;
        clip-path:inset(0 0 0 100%)
    }
}
.hero-product-stage.state-attention .phone-aura{
    background:radial-gradient(ellipse,rgba(255,185,45,.34),rgba(255,120,20,.12) 42%,transparent 72%)
}
.hero-product-stage.state-emergency .phone-aura{
    background:radial-gradient(ellipse,rgba(255,64,84,.40),rgba(255,28,60,.15) 42%,transparent 72%);
    animation-duration:.85s
}
.hero-product-stage.state-emergency .demo-floating-label{
    border-color:rgba(255,79,96,.45);
    box-shadow:0 0 32px rgba(255,48,70,.16)
}
body.en .hero-bg{
    background-image:linear-gradient(-90deg,rgba(2,8,23,.76) 0%,rgba(2,8,23,.46) 27%,rgba(2,8,23,.08) 55%,rgba(2,8,23,.18) 100%),linear-gradient(0deg,rgba(2,8,23,.82),transparent 44%),url('assets/hero-building.webp')
}
@media(max-width:1180px) and (min-width:901px){
    .hero{
        grid-template-columns:.9fr 1.1fr;
        padding-inline:34px;
        gap:22px
    }
    .hero-message h1{
        font-size:clamp(36px,4vw,50px)!important
    }
    .hero-product-stage .demo-stage{
        height:380px!important
    }
    .telemetry-node{
        opacity:.55
    }
    .node-temp{
        left:73%
    }
}
@media(max-width:900px){
    .hero{
        display:block;
        padding-top:118px
    }
    .hero-message{
        max-width:650px;
        margin:0 auto
    }
    .hero-product-stage{
        margin:34px auto 0!important;
        max-width:680px!important;
        padding-top:58px
    }
    .building-telemetry{
        display:none
    }
    .hero-mantra{
        display:none
    }
    .hero-product-stage .demo-stage{
        height:360px!important
    }
    .hero-product-stage .demo-controls{
        width:82%
    }
}
@media(max-width:760px){
    .hero-message-glass{
        padding:22px 18px;
        border-radius:21px
    }
    .hero-message h1{
        font-size:clamp(31px,9vw,43px)!important;
        letter-spacing:-1px!important
    }
    .hero-live-kicker{
        font-size:10px
    }
    .hero-trust{
        padding:0;
        gap:10px
    }
    .hero-product-stage{
        padding-top:50px
    }
    .demo-floating-label{
        height:46px;
        left:2%;
        right:2%;
        padding:0 12px
    }
    .demo-floating-label small{
        font-size:7px
    }
    .hero-product-stage .demo-stage{
        height:270px!important
    }
    .hero-product-stage .demo-state-card{
        top:55px!important;
        right:0!important
    }
    .hero-product-stage .demo-controls{
        width:94%;
        margin-top:0
    }
    .hero-bg{
        filter:brightness(1.10) saturate(1.10)
    }
}
@media(prefers-reduced-motion:reduce){
    .hero-live-kicker i,.hero-product-stage .demo-stage>img,.phone-aura,.telemetry-node,.data-flight{
        animation:none!important
    }
}

/* ===== Hero V7 — clean separation between message and live product ===== */
@media (min-width:901px){
    .hero{
        grid-template-columns:minmax(0,1.05fr) minmax(0,.95fr);
        column-gap:clamp(56px,5.2vw,96px);
        padding-inline:clamp(52px,5vw,92px);
    }

    /* Arabic / RTL: demo on the left, message on the right. */
    .hero-product-stage{
        grid-column:1;
        grid-row:1;
        width:100%!important;
        max-width:660px!important;
        justify-self:start;
        overflow:visible!important;
    }
    .hero-message{
        grid-column:2;
        grid-row:1;
        width:100%;
        max-width:600px;
        justify-self:end;
    }

    /* English: reverse the composition without relying on grid auto-placement. */
    body.en .hero-message{
        grid-column:1;
        justify-self:start;
    }
    body.en .hero-product-stage{
        grid-column:2;
        justify-self:end;
    }

    .hero-product-stage .demo-stage{
        width:100%;
        max-width:660px;
        margin-inline:auto;
    }
    .hero-product-stage .demo-stage>img{
        width:min(90%,610px)!important;
        max-width:100%!important;
    }
    .demo-floating-label{
        left:3%;
        right:3%;
    }
    .hero-product-stage .demo-state-card{
        right:3%!important;
        max-width:240px;
    }
}

@media (min-width:901px) and (max-width:1180px){
    .hero{
        grid-template-columns:minmax(0,1fr) minmax(0,1fr);
        column-gap:38px;
        padding-inline:30px;
    }
    .hero-message{
        max-width:520px
    }
    .hero-product-stage{
        max-width:570px!important
    }
    .hero-product-stage .demo-stage{
        max-width:570px;
        height:365px!important
    }
    .hero-product-stage .demo-stage>img{
        width:min(88%,520px)!important
    }
    .hero-product-stage .demo-state-card{
        max-width:205px;
        right:2%!important
    }
}

/* ===== Hero V8 — keep the complete live-demo image inside its stage ===== */
.hero-product-stage .demo-stage > img{
    left:auto !important;
    right:auto !important;
    top:auto !important;
    bottom:auto !important;
    inset:auto !important;
    transform:none;
    margin:auto;
    display:block;
    width:min(92%,610px) !important;
    max-width:92% !important;
    max-height:390px !important;
    object-fit:contain;
}

@keyframes phonesFloat{
    0%,100%{
        transform:translateY(0)
    }
    50%{
        transform:translateY(-7px)
    }
}

@media (min-width:901px) and (max-width:1180px){
    .hero-product-stage .demo-stage > img{
        width:min(90%,500px) !important;
        max-width:90% !important;
        max-height:340px !important;
    }
}

@media (max-width:900px){
    .hero-product-stage .demo-stage > img{
        width:min(92%,580px) !important;
        max-width:92% !important;
    }
}

@media (max-width:760px){
    .hero-product-stage .demo-stage > img{
        width:94% !important;
        max-width:94% !important;
        max-height:245px !important;
    }
}


/* ===== Hero V9 — transparent product cutout + corrected interactive hotspots ===== */
.hero-product-stage .demo-stage > img{
    background:transparent !important;
    mix-blend-mode:normal;
}

/* Hotspots now sit on the actual UI elements instead of floating over the background. */
.hero-product-stage .hotspot-alert{
    left:71% !important;
    top:40% !important;
}
.hero-product-stage .hotspot-emergency{
    left:31% !important;
    top:67% !important;
}

/* Keep the points visually tied to the screens. */
.hero-product-stage .demo-hotspot{
    z-index:6;
}

@media (min-width:901px) and (max-width:1180px){
    .hero-product-stage .hotspot-alert{
        left:71% !important;
        top:40% !important
    }
    .hero-product-stage .hotspot-emergency{
        left:31% !important;
        top:67% !important
    }
}
@media (max-width:900px){
    .hero-product-stage .hotspot-alert{
        left:71% !important;
        top:40% !important
    }
    .hero-product-stage .hotspot-emergency{
        left:31% !important;
        top:67% !important
    }
}

/* ===== Hero V10 — visible animated data network ===== */
.building-telemetry{
    z-index:3!important;
    overflow:visible;
}
.data-network{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    overflow:visible;
    pointer-events:none;
    opacity:.96;
}
.network-path{
    fill:none;
    stroke:url(#dataLineGradient);
    stroke-width:2.2;
    stroke-linecap:round;
    stroke-dasharray:10 12;
    filter:url(#dataGlow);
    opacity:.82;
    animation:networkDash 2.4s linear infinite, networkBreath 4s ease-in-out infinite;
}
.path-b{
    animation-delay:-.55s
}
.path-c{
    animation-delay:-1.15s
}
.path-d{
    animation-delay:-1.7s
}
.network-particle{
    fill:#45e7ff;
    filter:url(#dataGlow);
    opacity:.98;
}
.p2{
    fill:#20e8c1
}
.p3{
    fill:#62c9ff
}
.p4{
    fill:#27dcff
}
.network-pulse{
    fill:#2ae0ff;
    stroke:rgba(97,231,255,.75);
    stroke-width:2;
    transform-box:fill-box;
    transform-origin:center;
    animation:networkPulse 1.9s ease-out infinite;
    filter:url(#dataGlow);
}
.pulse-b{
    animation-delay:-.9s
}
.telemetry-node{
    z-index:2;
    opacity:.94!important;
    border-color:rgba(53,202,255,.42)!important;
    background:rgba(1,18,42,.68)!important;
    box-shadow:0 0 18px rgba(0,210,255,.20),inset 0 0 18px rgba(25,133,255,.08)!important;
}
.telemetry-node i{
    box-shadow:0 0 8px #19e0c1,0 0 18px rgba(25,224,193,.75)!important
}
@keyframes networkDash{
    to{
        stroke-dashoffset:-44
    }
}
@keyframes networkBreath{
    0%,100%{
        opacity:.56
    }
    50%{
        opacity:1
    }
}
@keyframes networkPulse{
    0%{
        opacity:.95;
        transform:scale(.65)
    }
    70%{
        opacity:.18;
        transform:scale(2.3)
    }
    100%{
        opacity:0;
        transform:scale(2.7)
    }
}

/* Keep the animated network visible in the open area between message and product. */
@media (min-width:1181px){
    .node-connected{
        left:43%;
        top:30%
    }
    .node-temp{
        left:69%;
        top:29%
    }
    .node-door{
        left:60%;
        top:61%
    }
    .node-signal{
        left:38%;
        top:48%
    }
}
@media(max-width:1180px) and (min-width:901px){
    .data-network{
        opacity:.78
    }
    .network-path{
        stroke-width:1.8
    }
    .telemetry-node{
        transform:scale(.92)
    }
}
@media(max-width:900px){
    .data-network{
        display:none
    }
}
@media(prefers-reduced-motion:reduce){
    .network-path,.network-pulse{
        animation:none!important
    }
    .network-particle{
        display:none
    }
}


/* ===== Hero V11 — data network visible through the glass message card ===== */
.hero-message-glass{
    position:relative;
    isolation:isolate;
    background:
        linear-gradient(145deg,rgba(4,18,43,.58),rgba(5,17,37,.38))!important;
    backdrop-filter:blur(14px) saturate(128%)!important;
}
.hero-message-glass > :not(.card-data-network){
    position:relative;
    z-index:2;
}
.card-data-network{
    position:absolute;
    inset:-2%;
    width:104%;
    height:104%;
    z-index:1;
    pointer-events:none;
    overflow:visible;
    opacity:.78;
    mix-blend-mode:screen;
    -webkit-mask-image:linear-gradient(90deg,transparent 0%,#000 10%,#000 90%,transparent 100%);
    mask-image:linear-gradient(90deg,transparent 0%,#000 10%,#000 90%,transparent 100%);
}
.card-network-path{
    fill:none;
    stroke:url(#cardDataGradient);
    stroke-width:1.8;
    stroke-linecap:round;
    stroke-dasharray:8 11;
    filter:url(#cardDataGlow);
    opacity:.72;
    animation:cardNetworkDash 2.7s linear infinite,cardNetworkBreath 3.6s ease-in-out infinite;
}
.card-path-b{
    animation-delay:-.7s
}
.card-path-c{
    animation-delay:-1.4s
}
.card-network-particle{
    fill:#42e9ff;
    filter:url(#cardDataGlow);
    opacity:.95;
}
.card-particle-b{
    fill:#1ce4bf
}
.card-particle-c{
    fill:#6ac7ff
}
.card-network-node{
    fill:#20ddff;
    stroke:rgba(120,235,255,.8);
    stroke-width:1.5;
    filter:url(#cardDataGlow);
    transform-box:fill-box;
    transform-origin:center;
    animation:cardNodePulse 2s ease-out infinite;
}
.card-network-node.node-b{
    animation-delay:-1s
}
@keyframes cardNetworkDash{
    to{
        stroke-dashoffset:-38
    }
}
@keyframes cardNetworkBreath{
    0%,100%{
        opacity:.45
    }
    50%{
        opacity:.9
    }
}
@keyframes cardNodePulse{
    0%{
        opacity:.95;
        transform:scale(.65)
    }
    70%{
        opacity:.3;
        transform:scale(1.8)
    }
    100%{
        opacity:.1;
        transform:scale(2.1)
    }
}

/* Let the main scene network remain visible right up to the card edge. */
.building-telemetry{
    z-index:4!important
}
.hero-message,.hero-product-stage{
    z-index:5!important
}

@media(max-width:900px){
    .card-data-network{
        display:none
    }
}
@media(prefers-reduced-motion:reduce){
    .card-network-path,.card-network-node{
        animation:none!important
    }
    .card-network-particle{
        display:none
    }
}

/* ===== Hero V12 — keep telemetry labels visible along the open data paths ===== */
@media (min-width:1181px){
    /* Keep labels out from underneath the message/demo cards and sit them on the visible line corridor. */
    .node-connected{
        left:46.2%!important;
        top:30.2%!important
    }
    .node-signal{
        left:46.0%!important;
        top:45.5%!important
    }
    .node-door{
        left:56.0%!important;
        top:61.0%!important
    }
    .node-temp{
        left:69.0%!important;
        top:28.5%!important
    }
}

@media (max-width:1180px) and (min-width:901px){
    .node-connected{
        left:47%!important;
        top:30.5%!important
    }
    .node-signal{
        left:47%!important;
        top:46%!important
    }
    .node-door{
        left:57%!important;
        top:61%!important
    }
    .node-temp{
        left:70%!important;
        top:29%!important
    }
}

/* ===== Hero V13 — expose the last two telemetry labels ===== */
@media (min-width:1181px){
    /* DOOR STATUS: move into the open corridor below the message card / left of phones. */
    .node-door{
        left:50.5%!important;
        top:67.5%!important;
    }

    /* TEMPERATURE: move to the clear outer-right section of its data path. */
    .node-temp{
        left:auto!important;
        right:5.2%!important;
        top:43.5%!important;
    }
}

@media (max-width:1180px) and (min-width:901px){
    .node-door{
        left:50%!important;
        top:68%!important;
    }
    .node-temp{
        left:auto!important;
        right:3.5%!important;
        top:43%!important;
    }
}


/* ===== Hero V14 — Arabic data-line bridge (preserve all user-adjusted telemetry positions) ===== */
.rtl-data-bridge{
    display:none;
}

/* Arabic desktop only: bridge the two tiny gaps between the glass card network and the scene network. */
body:not(.en) .hero-message{
    overflow:visible;
}
body:not(.en) .rtl-data-bridge{
    display:block;
    position:absolute;
    z-index:4;
    pointer-events:none;
    width:clamp(76px,5.8vw,112px);
    height:72%;
    left:calc(100% - 5px);
    top:14%;
    overflow:visible;
    opacity:.9;
    mix-blend-mode:screen;
}
body:not(.en) .rtl-bridge-path{
    fill:none;
    stroke:url(#rtlBridgeGradient);
    stroke-width:2.1;
    stroke-linecap:round;
    stroke-dasharray:9 11;
    filter:url(#rtlBridgeGlow);
    animation:rtlBridgeDash 2.4s linear infinite,rtlBridgeBreath 3.8s ease-in-out infinite;
}
body:not(.en) .rtl-bridge-bottom{
    animation-delay:-1.1s;
}
@keyframes rtlBridgeDash{
    to{stroke-dashoffset:-40}
}
@keyframes rtlBridgeBreath{
    0%,100%{opacity:.5}
    50%{opacity:1}
}

@media (max-width:1180px) and (min-width:901px){
    body:not(.en) .rtl-data-bridge{
        width:82px;
        left:calc(100% - 4px);
        top:14%;
        height:72%;
    }
}
@media (max-width:900px){
    .rtl-data-bridge{display:none!important}
}
@media (prefers-reduced-motion:reduce){
    .rtl-bridge-path{animation:none!important}
}

/* =========================================================
   V15 — Emergency demo effect only
   Keeps all existing hero / telemetry / RTL positions intact.
   ========================================================= */

/* Do not shake the whole hero column; shake only the phone demo. */
.hero-product-stage.shake{
    animation:none !important;
}

.hero-product-stage.state-emergency .demo-stage > img{
    animation:phonesEmergencyShake .62s cubic-bezier(.36,.07,.19,.97) 2 !important;
    filter:
        drop-shadow(0 28px 28px rgba(0,0,0,.44))
        drop-shadow(0 0 14px rgba(255,54,72,.78))
        drop-shadow(0 0 34px rgba(255,34,56,.46)) !important;
}

.hero-product-stage.state-emergency .phone-aura{
    background:radial-gradient(
        ellipse,
        rgba(255,52,70,.50) 0%,
        rgba(255,31,52,.24) 38%,
        rgba(255,20,44,.08) 58%,
        transparent 74%
    ) !important;
    filter:blur(18px) !important;
    animation:emergencyAuraPulse .92s ease-in-out infinite !important;
}

.hero-product-stage.state-emergency .phone-aura::after{
    background:linear-gradient(90deg,transparent,#ff5264,#ff2038,#ff5264,transparent) !important;
    box-shadow:
        0 0 16px rgba(255,42,61,.95),
        0 0 42px rgba(255,28,51,.72) !important;
}

.hero-product-stage.state-emergency .demo-state-card{
    border-color:rgba(255,67,84,.56) !important;
    box-shadow:
        0 12px 35px rgba(0,0,0,.28),
        0 0 18px rgba(255,45,63,.26),
        0 0 42px rgba(255,45,63,.16) !important;
}

.hero-product-stage.state-emergency .demo-state-icon{
    background:#ffe7ea !important;
    color:#e62438 !important;
    box-shadow:0 0 22px rgba(255,39,59,.22);
}

@keyframes phonesEmergencyShake{
    0%,100%{ transform:translate3d(0,0,0) rotate(0deg); }
    14%{ transform:translate3d(-3px,0,0) rotate(-.15deg); }
    28%{ transform:translate3d(3px,0,0) rotate(.15deg); }
    42%{ transform:translate3d(-2px,0,0) rotate(-.10deg); }
    56%{ transform:translate3d(2px,0,0) rotate(.10deg); }
    72%{ transform:translate3d(-1px,0,0); }
    86%{ transform:translate3d(1px,0,0); }
}

@keyframes emergencyAuraPulse{
    0%,100%{ opacity:.62; transform:scale(.97); }
    50%{ opacity:1; transform:scale(1.055); }
}

@media (prefers-reduced-motion: reduce){
    .hero-product-stage.state-emergency .demo-stage > img{
        animation:none !important;
    }
    .hero-product-stage.state-emergency .phone-aura{
        animation:none !important;
    }
}

/* =========================================================
   SECTION 02 — Fixed / parallax elevator story
   Added after the approved hero. Hero styles remain untouched.
   ========================================================= */
.elevator-story{
    position:relative;
    height:320vh;
    min-height:2200px;
    background:#020817;
    isolation:isolate;
}
.elevator-story-sticky{
    position:sticky;
    top:0;
    height:100vh;
    min-height:680px;
    overflow:hidden;
    display:flex;
    align-items:center;
    justify-content:flex-start;
    padding:calc(var(--header) + 26px) clamp(32px,5.2vw,96px) 54px;
    background:#020817;
}
.elevator-story-bg{
    position:absolute;
    inset:-2px;
    z-index:-4;
    background-image:url('assets/elevator-story-fixed.jpg');
    background-repeat:no-repeat;
    background-size:auto 130%;
    background-position:center 8%;
    filter:saturate(1.08) contrast(1.05) brightness(.82);
    transform:scale(1.015);
    will-change:background-position,filter;
}
.elevator-story-overlay{
    position:absolute;
    inset:0;
    z-index:-3;
    background:
      linear-gradient(90deg,rgba(2,8,23,.18) 0%,rgba(2,8,23,.08) 38%,rgba(2,8,23,.36) 68%,rgba(2,8,23,.78) 100%),
      linear-gradient(180deg,rgba(2,8,23,.34) 0%,transparent 26%,transparent 72%,rgba(2,8,23,.62) 100%);
    pointer-events:none;
}
body.en .elevator-story-overlay{
    background:
      linear-gradient(270deg,rgba(2,8,23,.18) 0%,rgba(2,8,23,.08) 38%,rgba(2,8,23,.36) 68%,rgba(2,8,23,.78) 100%),
      linear-gradient(180deg,rgba(2,8,23,.34) 0%,transparent 26%,transparent 72%,rgba(2,8,23,.62) 100%);
}
.elevator-story-edge{
    position:absolute;
    inset:0;
    z-index:-2;
    pointer-events:none;
    box-shadow:inset 0 38px 90px rgba(2,8,23,.62),inset 0 -60px 100px rgba(2,8,23,.78);
}

/* Soft cinematic blend between the approved hero and Section 02. */
.elevator-story-sticky::after{
    content:"";
    position:absolute;
    top:0;
    left:0;
    right:0;
    height:clamp(72px,9vh,120px);
    z-index:1;
    pointer-events:none;
    background:linear-gradient(180deg,rgba(2,8,23,.96) 0%,rgba(2,8,23,.55) 34%,rgba(2,8,23,.16) 72%,transparent 100%);
}
.story-copy{
    position:relative;
    width:min(610px,45vw);
    min-height:470px;
    z-index:3;
}
.story-copy:before{
    content:"";
    position:absolute;
    inset:-64px -76px -64px -110px;
    z-index:-1;
    background:radial-gradient(ellipse at 68% 50%,rgba(2,8,23,.80) 0%,rgba(2,8,23,.58) 38%,rgba(2,8,23,.16) 68%,transparent 78%);
    filter:blur(5px);
    pointer-events:none;
}
body.en .story-copy:before{
    inset:-64px -110px -64px -76px;
    background:radial-gradient(ellipse at 32% 50%,rgba(2,8,23,.80) 0%,rgba(2,8,23,.58) 38%,rgba(2,8,23,.16) 68%,transparent 78%);
}
body.en .elevator-story-sticky{justify-content:flex-start}
body:not(.en) .story-copy{margin-inline-start:0;margin-inline-end:auto;text-align:right}
body.en .story-copy{margin-inline-start:0;margin-inline-end:auto;text-align:left}
.story-beat{
    position:absolute;
    inset-inline:0;
    top:50%;
    transform:translateY(calc(-50% + 30px));
    opacity:0;
    visibility:hidden;
    transition:opacity .55s ease,transform .75s cubic-bezier(.22,.8,.22,1),visibility .55s;
    pointer-events:none;
}
.story-beat.is-active{
    opacity:1;
    visibility:visible;
    transform:translateY(-50%);
    pointer-events:auto;
}
.story-eyebrow{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#65e8ff;
    font-size:13px;
    font-weight:600;
    margin-bottom:24px;
}
.story-eyebrow i{
    width:8px;
    height:8px;
    border-radius:50%;
    background:#23e4c0;
    box-shadow:0 0 16px rgba(35,228,192,.9);
}
.story-beat h2{
    margin:0;
    font-size:clamp(44px,4.5vw,76px);
    line-height:1.18;
    letter-spacing:-1.6px;
    text-wrap:balance;
    text-shadow:0 8px 36px rgba(0,0,0,.38);
}
body.en .story-beat h2{letter-spacing:-2.3px;line-height:1.07}
.story-beat h2 em{
    font-style:normal;
    color:#55c7ff;
    background:linear-gradient(90deg,#77dcff 0%,#1a86ff 100%);
    -webkit-background-clip:text;
    background-clip:text;
    color:transparent;
}
.story-beat p{
    max-width:560px;
    margin:26px 0 0;
    color:#d5e2ef;
    font-size:17px;
    line-height:1.95;
    text-shadow:0 4px 18px rgba(0,0,0,.55);
}
.story-number{
    display:inline-flex;
    direction:ltr;
    color:#66e6ff;
    font-weight:700;font-size:11px;line-height:1;
    letter-spacing:2.2px;
    margin-bottom:24px;
    padding-bottom:12px;
    border-bottom:1px solid rgba(58,203,255,.5);
}
.story-scroll-note{
    display:inline-flex;
    align-items:center;
    gap:15px;
    margin-top:34px;
    color:#d7e8f7;
    font-size:13px;
}
.story-scroll-note i{
    font-style:normal;
    color:#4fd8ff;
    animation:storyArrow 1.6s ease-in-out infinite;
}
@keyframes storyArrow{0%,100%{transform:translateY(0);opacity:.5}50%{transform:translateY(8px);opacity:1}}
.story-counter{
    position:absolute;
    inset-inline-start:clamp(32px,5vw,82px);
    top:50%;
    transform:translateY(-50%);
    display:flex;
    flex-direction:column;
    align-items:center;
    gap:10px;
    z-index:3;
    direction:ltr;
    
}
.story-counter span{font-size:12px;color:#8feaff;letter-spacing:1.5px;font-weight:700}
.story-counter i{display:block;width:1px;height:92px;background:linear-gradient(180deg,#23dfff,rgba(35,223,255,.08))}
.story-counter small{font-size:9px;color:#6d8298;letter-spacing:1.5px}
.story-rail{
    position:absolute;
    inset-inline-end:clamp(34px,4vw,68px);
    bottom:48px;
    display:flex;
    gap:10px;
    z-index:4;
}
.story-rail span{
    width:30px;
    height:3px;
    border-radius:5px;
    background:rgba(255,255,255,.22);
    transition:.35s;
}
.story-rail span.is-active{
    width:58px;
    background:#29d8ff;
    box-shadow:0 0 14px rgba(41,216,255,.72);
}
.story-watermark{
    position:absolute;
    bottom:42px;
    inset-inline-start:50%;
    transform:translateX(-50%);
    direction:ltr;
    color:rgba(202,230,255,.48);
    font-weight:600;font-size:9px;line-height:1;
    letter-spacing:4px;
    white-space:nowrap;
    z-index:2;
}
@media (max-width:980px){
    .elevator-story{height:280vh;min-height:1900px}
    .elevator-story-sticky{padding-inline:26px;align-items:flex-end;padding-bottom:90px}
    .elevator-story-bg{background-size:auto 118%;filter:saturate(1.05) contrast(1.04) brightness(.72)}
    .elevator-story-overlay,.body.en .elevator-story-overlay{
        background:linear-gradient(180deg,rgba(2,8,23,.10) 0%,rgba(2,8,23,.12) 34%,rgba(2,8,23,.83) 72%,rgba(2,8,23,.96) 100%);
    }
    .story-copy{width:100%;min-height:420px}
    .story-copy:before,body.en .story-copy:before{display:none}
    .story-beat{top:auto;bottom:0;transform:translateY(24px)}
    .story-beat.is-active{transform:translateY(0)}
    .story-beat h2{font-size:clamp(38px,9vw,58px)}
    .story-beat p{font-size:15px;line-height:1.8;max-width:620px}
    .story-counter{display:none}
    .story-rail{bottom:34px;inset-inline-end:26px}
    .story-watermark{display:none}
}
@media (max-width:620px){
    .elevator-story{height:260vh;min-height:1700px}
    .elevator-story-sticky{min-height:620px;padding-bottom:78px}
    .elevator-story-bg{background-size:auto 112%}
    .story-copy{min-height:390px}
    .story-beat h2{font-size:clamp(34px,10vw,48px);letter-spacing:-.8px}
    .story-beat p{margin-top:20px;font-size:14px}
    .story-eyebrow{font-size:12px;margin-bottom:18px}
    .story-number{margin-bottom:18px}
    .story-rail span{width:20px}.story-rail span.is-active{width:40px}
}
@media (prefers-reduced-motion:reduce){
    .story-beat,.story-rail span{transition:none!important;animation:none!important}
}

/* =========================================================
   WATCHOPS24 — LUMINOUS BLADE SEAM V18
   Visual separator only. Approved Hero markup/styles untouched.
   ========================================================= */
.elevator-story{
    overflow:visible;
}

/* Razor-thin silver/cyan light at the exact image seam. */
.elevator-story::before{
    content:"";
    position:absolute;
    top:-2px;
    left:0;
    right:0;
    height:3px;
    z-index:30;
    pointer-events:none;
    background:linear-gradient(
        90deg,
        rgba(30,113,184,.12) 0%,
        rgba(87,181,240,.42) 12%,
        rgba(191,234,255,.82) 30%,
        rgba(247,253,255,1) 50%,
        rgba(191,234,255,.82) 70%,
        rgba(87,181,240,.42) 88%,
        rgba(30,113,184,.12) 100%
    );
    box-shadow:
        0 -1px 3px rgba(230,249,255,.78),
        0  1px 4px rgba(211,244,255,.92),
        0  0 10px rgba(81,190,255,.86),
        0  0 24px rgba(27,132,255,.55),
        0  0 48px rgba(7,100,225,.28);
}

/* Wide blue-white bloom, like light reflected from a polished blade. */
.elevator-story::after{
    content:"";
    position:absolute;
    top:-34px;
    left:0;
    right:0;
    height:72px;
    z-index:29;
    pointer-events:none;
    background:
        radial-gradient(
            ellipse 70% 100% at 50% 50%,
            rgba(221,247,255,.23) 0%,
            rgba(94,195,255,.18) 24%,
            rgba(25,126,242,.09) 48%,
            rgba(2,8,23,0) 78%
        );
    filter:blur(7px);
    opacity:.95;
}

/* Keep the cinematic blend, but don't darken the luminous seam itself. */
.elevator-story-sticky::after{
    top:3px;
    height:clamp(76px,9vh,124px);
    background:linear-gradient(
        180deg,
        rgba(7,29,61,.34) 0%,
        rgba(2,8,23,.27) 30%,
        rgba(2,8,23,.10) 68%,
        transparent 100%
    );
}

@media (max-width:980px){
    .elevator-story::before{
        height:2px;
        box-shadow:
            0 0 5px rgba(220,248,255,.9),
            0 0 13px rgba(67,185,255,.62),
            0 0 28px rgba(22,115,235,.34);
    }
    .elevator-story::after{
        top:-24px;
        height:52px;
        filter:blur(6px);
    }
}

/* =========================================================
   WATCHOPS24 — ENTERPRISE SaaS PLATFORM SHOWCASE v20
   ========================================================= */
.platform{
    grid-template-columns:minmax(390px,.82fr) minmax(620px,1.35fr);
    gap:clamp(55px,7vw,120px);
    min-height:960px;
    isolation:isolate
}
.platform-copy{position:relative;z-index:5;max-width:620px}
.platform-copy h2{font-size:clamp(48px,4.7vw,78px);letter-spacing:-.035em;line-height:1.04}
.platform-copy>p{max-width:590px;font-size:clamp(16px,1.15vw,20px);line-height:1.9}
.platform-stage{position:relative;z-index:3;perspective:1600px;filter:drop-shadow(0 40px 65px rgba(0,0,0,.34))}
.platform-stage:before{
    content:"";position:absolute;inset:7% -8%;z-index:-2;border-radius:50%;
    background:radial-gradient(ellipse at center,rgba(24,151,255,.25),rgba(18,92,230,.09) 38%,transparent 70%);
    filter:blur(24px);animation:platformAura 5.5s ease-in-out infinite
}
.dashboard-shell{
    position:relative;z-index:2;transform:perspective(1500px) rotateY(-3deg) rotateX(1deg) translateY(0);
    transition:transform .7s cubic-bezier(.2,.8,.2,1),border-color .4s,box-shadow .4s;
    box-shadow:0 55px 130px rgba(0,0,0,.58),0 0 90px rgba(18,120,255,.15),inset 0 1px rgba(255,255,255,.05)
}
.platform-stage:hover .dashboard-shell{transform:perspective(1500px) rotateY(-1deg) rotateX(.4deg) translateY(-5px);border-color:rgba(90,200,255,.42);box-shadow:0 65px 145px rgba(0,0,0,.6),0 0 110px rgba(18,145,255,.22)}
.platform-orbit{
    position:absolute;z-index:8;display:flex;align-items:center;gap:9px;padding:10px 14px;border:1px solid rgba(71,184,255,.35);
    border-radius:999px;background:rgba(3,18,39,.82);backdrop-filter:blur(15px);box-shadow:0 10px 30px rgba(0,0,0,.3),0 0 24px rgba(23,161,255,.1);
    color:#d9edff;font-weight:600;font-size:11px;line-height:1;white-space:nowrap;opacity:0;transform:translateY(12px) scale(.96)
}
.platform-orbit i{width:7px;height:7px;border-radius:50%;background:#2de4c0;box-shadow:0 0 14px #2de4c0;animation:platformDot 1.8s ease-in-out infinite}
.orbit-a{top:15%;left:-5%}.orbit-b{top:54%;right:-5%}.orbit-b i{background:#ff5b72;box-shadow:0 0 14px #ff5b72}.orbit-c{bottom:9%;left:7%}.orbit-c i{background:#54cfff;box-shadow:0 0 14px #54cfff}
.platform-live .platform-orbit{animation:orbitReveal .65s ease forwards}.platform-live .orbit-b{animation-delay:.22s}.platform-live .orbit-c{animation-delay:.42s}
.platform-live .dash-live i{animation:platformDot 1.45s ease-in-out infinite}
.platform-live .dash-card.alert strong{animation:alertPulse 2.2s ease-in-out infinite}
.platform-live .bars i{transform-origin:bottom;animation:liveBar 2.7s ease-in-out infinite}.platform-live .bars i:nth-child(2){animation-delay:-.4s}.platform-live .bars i:nth-child(3){animation-delay:-1.1s}.platform-live .bars i:nth-child(4){animation-delay:-1.7s}.platform-live .bars i:nth-child(5){animation-delay:-.8s}.platform-live .bars i:nth-child(6){animation-delay:-2s}
html[dir="rtl"] .platform-copy{grid-column:2;grid-row:1;text-align:right;justify-self:end}
html[dir="rtl"] .platform-stage{grid-column:1;grid-row:1}
html[dir="ltr"] .platform-copy{grid-column:1;grid-row:1;text-align:left;justify-self:start}
html[dir="ltr"] .platform-stage{grid-column:2;grid-row:1}
html[dir="rtl"] .dashboard-shell{transform:perspective(1500px) rotateY(3deg) rotateX(1deg)}
html[dir="rtl"] .platform-stage:hover .dashboard-shell{transform:perspective(1500px) rotateY(1deg) rotateX(.4deg) translateY(-5px)}
@keyframes platformAura{50%{opacity:.68;transform:scale(1.045)}}
@keyframes platformDot{50%{opacity:.42;transform:scale(.72)}}
@keyframes orbitReveal{to{opacity:1;transform:translateY(0) scale(1)}}
@keyframes alertPulse{50%{text-shadow:0 0 20px rgba(255,76,105,.55)}}
@keyframes liveBar{0%,100%{transform:scaleY(.72);opacity:.72}50%{transform:scaleY(1.08);opacity:1}}
@media(max-width:1100px){
  .platform{grid-template-columns:1fr;gap:55px;min-height:auto;padding-block:110px}
  html[dir="rtl"] .platform-copy,html[dir="ltr"] .platform-copy,html[dir="rtl"] .platform-stage,html[dir="ltr"] .platform-stage{grid-column:1;grid-row:auto}
  .platform-copy{max-width:720px}.platform-stage{width:min(900px,100%);margin-inline:auto}.dashboard-shell{transform:none!important}
  .orbit-a{left:1%}.orbit-b{right:1%}
}
@media(max-width:760px){.platform-orbit{display:none}.platform-copy h2{font-size:clamp(42px,12vw,62px)}}

/* =========================================================
   WATCHOPS24 — PLATFORM WIDTH PARITY v21
   Keep the Enterprise SaaS dashboard equally wide in RTL/LTR.
   ========================================================= */
@media (min-width:1101px){
    html[dir="ltr"] .platform{
        grid-template-columns:minmax(390px,.82fr) minmax(620px,1.35fr);
    }

    html[dir="rtl"] .platform{
        /* Mirror the column sizes as well as the content positions.
           This keeps the dashboard on the wide column in Arabic. */
        grid-template-columns:minmax(620px,1.35fr) minmax(390px,.82fr);
    }

    html[dir="ltr"] .platform-stage,
    html[dir="rtl"] .platform-stage{
        width:100%;
        max-width:none;
        min-width:0;
    }

    html[dir="ltr"] .dashboard-shell,
    html[dir="rtl"] .dashboard-shell{
        width:100%;
    }
}

/* =========================================================
   WATCHOPS24 — PLATFORM BACKGROUND BRIGHTNESS v22
   Lighten the showcase background without changing layout.
   ========================================================= */
.platform-bg{
    background:
        linear-gradient(90deg,
            rgba(2,8,23,.78) 0%,
            rgba(2,8,23,.54) 42%,
            rgba(2,8,23,.28) 100%),
        url('assets/iot-building.webp') center/cover;
    opacity:.86;
    filter:brightness(1.16) saturate(1.08) contrast(1.02);
}

.platform:after{
    background:
        radial-gradient(circle at 72% 45%,rgba(28,135,255,.18),transparent 38%),
        linear-gradient(0deg,rgba(2,8,23,.82),transparent 18%,transparent 82%,rgba(2,8,23,.78));
}

@media(max-width:1100px){
    .platform-bg{
        background:
            linear-gradient(180deg,rgba(2,8,23,.70),rgba(2,8,23,.45)),
            url('assets/iot-building.webp') center/cover;
        opacity:.84;
        filter:brightness(1.12) saturate(1.06);
    }
}

/* =========================================================
   WATCHOPS24 — HOMEPAGE CLOSING CHOICE v24
   Compact closing cards. Earlier approved sections untouched.
   ========================================================= */
.choice-section{
    min-height:auto;
    padding-top:96px;
    padding-bottom:92px;
    display:block;
    background:radial-gradient(circle at 50% 15%,rgba(24,130,255,.10),transparent 34%),linear-gradient(180deg,#020817 0%,#031024 48%,#020817 100%);
}
.choice-intro{max-width:720px;margin:0 auto 44px;text-align:center}
.choice-intro .section-kicker{justify-content:center}
.choice-intro h2{margin:20px 0 16px;font-size:clamp(50px,5vw,78px);line-height:.98}
.choice-intro p{max-width:630px;margin:0 auto;color:#9eb2ca;font-size:17px;line-height:1.8}
.choice-grid{display:grid;grid-template-columns:repeat(2,minmax(0,1fr));gap:22px;max-width:1320px;margin:0 auto}
.choice-card{position:relative;isolation:isolate;min-height:440px;overflow:hidden;border:1px solid rgba(90,170,255,.20);border-radius:28px;text-decoration:none;color:#fff;background:#061329;box-shadow:0 30px 70px rgba(0,0,0,.30);transition:transform .45s cubic-bezier(.2,.8,.2,1),border-color .4s,box-shadow .4s}
.choice-card:hover{transform:translateY(-7px);border-color:rgba(69,197,255,.55);box-shadow:0 40px 90px rgba(0,0,0,.40),0 0 45px rgba(27,141,255,.10)}
.choice-card-bg,.choice-card-shade{position:absolute;inset:0;z-index:-2}
.choice-card-bg img{width:100%;height:100%;object-fit:cover;filter:saturate(.92) brightness(.72);transform:scale(1.01);transition:transform .8s ease,filter .6s ease}
.choice-card:hover .choice-card-bg img{transform:scale(1.04);filter:saturate(1.05) brightness(.82)}
.choice-card-shade{z-index:-1;background:linear-gradient(180deg,rgba(2,8,23,.10) 0%,rgba(2,8,23,.34) 38%,rgba(2,8,23,.96) 100%),linear-gradient(90deg,rgba(2,8,23,.58),transparent 70%)}
.choice-card-top{display:flex;align-items:center;justify-content:space-between;padding:25px 27px;color:#8fb1d5;font-weight:600;font-size:12px;line-height:1;letter-spacing:.08em}
.choice-index{display:grid;place-items:center;width:38px;height:38px;border:1px solid rgba(99,177,255,.25);border-radius:50%}
.choice-type{padding:8px 13px;border:1px solid rgba(83,190,255,.28);border-radius:999px;background:rgba(2,13,31,.45);backdrop-filter:blur(10px);color:#72d9ff}
.choice-card-copy{position:absolute;inset-inline:30px;bottom:28px;max-width:520px}
.choice-card-copy .product-tag{display:inline-flex;margin-bottom:14px}
.choice-card-copy h3{margin:0 0 12px;font-size:clamp(31px,2.65vw,46px);line-height:1.08;letter-spacing:-.03em}
.choice-card-copy p{max-width:500px;margin:0 0 22px;color:#b1c2d6;font-size:15px;line-height:1.7}
.choice-link{display:flex;align-items:center;justify-content:space-between;gap:18px;padding-top:17px;border-top:1px solid rgba(132,186,239,.18);color:#e9f7ff}
.choice-link b{font-size:14px}.choice-link i{display:grid;place-items:center;width:38px;height:38px;border-radius:50%;border:1px solid rgba(75,196,255,.4);color:#4fd4ff;font-style:normal;transition:.3s}
.choice-card:hover .choice-link i{background:#159cff;color:#fff;border-color:#159cff;transform:rotate(45deg)}
html[dir="rtl"] .choice-card-copy{text-align:right}
html[dir="ltr"] .choice-card-copy{text-align:left}
footer{border-top:1px solid rgba(78,151,224,.18);background:#010611}
@media(max-width:900px){.choice-section{padding-top:80px;padding-bottom:80px}.choice-grid{grid-template-columns:1fr;max-width:680px}.choice-card{min-height:430px}.choice-intro{margin-bottom:36px}}
@media(max-width:560px){.choice-section{padding-inline:18px}.choice-card{min-height:410px;border-radius:24px}.choice-card-top{padding:22px}.choice-card-copy{inset-inline:24px;bottom:24px}.choice-card-copy h3{font-size:34px}.choice-intro h2{font-size:48px}}

/* =========================================================
   WATCHOPS24 — FINAL HOMEPAGE FOOTER v25
   ========================================================= */
.site-footer{
    position:relative;
    overflow:hidden;
    padding:0;
    border-top:1px solid rgba(92,185,255,.22);
    background:linear-gradient(180deg,#020817 0%,#01040c 100%);
    color:#fff;
}
.site-footer .footer-glow{
    position:absolute;inset:-120px 0 auto;height:260px;pointer-events:none;
    background:radial-gradient(ellipse at 50% 0,rgba(30,150,255,.18),transparent 65%);
    filter:blur(18px)
}
.footer-inner{position:relative;z-index:2;max-width:1480px;margin:0 auto;padding:72px clamp(28px,5vw,88px) 28px}
.footer-main{display:grid;grid-template-columns:240px minmax(340px,1fr) auto;align-items:center;gap:clamp(34px,5vw,88px);padding-bottom:54px}
.footer-logo img{display:block;width:min(230px,100%);height:auto;filter:drop-shadow(0 0 24px rgba(25,139,255,.10))}
.footer-message{max-width:650px}
.footer-kicker{display:inline-block;margin-bottom:14px;color:#59dcff;font-weight:700;font-size:10px;line-height:1;letter-spacing:3.2px}
.footer-message h2{margin:0;font-size:clamp(38px,3.4vw,58px);line-height:1.04;letter-spacing:-.035em}
.footer-message h2 em{font-style:normal;background:linear-gradient(90deg,#7ce4ff,#168dff);-webkit-background-clip:text;background-clip:text;color:transparent}
.footer-message p{margin:18px 0 0;max-width:590px;color:#98adc5;font-size:15px;line-height:1.85}
.footer-demo{display:inline-flex;align-items:center;gap:30px;min-width:190px;justify-content:space-between;padding:18px 20px;border-radius:16px;background:linear-gradient(135deg,#1377ff,#2356da);border:1px solid rgba(107,194,255,.42);box-shadow:0 15px 45px rgba(17,95,230,.22);color:#fff;text-decoration:none;font-weight:700;transition:.35s}
.footer-demo:hover{transform:translateY(-3px);box-shadow:0 22px 55px rgba(17,95,230,.34)}
.footer-demo i{font-style:normal;font-size:18px}
.footer-links-row{display:flex;align-items:center;justify-content:space-between;gap:30px;padding:27px 0;border-top:1px solid rgba(119,176,235,.12);border-bottom:1px solid rgba(119,176,235,.12)}
.footer-nav{display:flex;align-items:center;flex-wrap:wrap;gap:11px 28px}
.footer-nav a{color:#9eb1c8;text-decoration:none;font-size:13px;transition:.25s}.footer-nav a:hover{color:#67ddff}
.footer-trust{display:flex;align-items:center;gap:22px;flex-wrap:wrap}
.footer-trust span{display:inline-flex;align-items:center;gap:8px;color:#9eb1c8;font-size:12px}.footer-trust i{width:6px;height:6px;border-radius:50%;background:#25dec1;box-shadow:0 0 12px #25dec1}.footer-trust b{font-weight:500}
.footer-bottom{display:flex;align-items:center;justify-content:space-between;gap:25px;padding-top:25px;color:#637991;font-weight:500;font-size:11px;line-height:1.5;letter-spacing:.04em}
.footer-bottom p{margin:0}.footer-bottom span{direction:ltr}
html[dir="rtl"] .footer-message{text-align:right}html[dir="ltr"] .footer-message{text-align:left}
@media(max-width:980px){.footer-main{grid-template-columns:1fr;gap:30px}.footer-logo img{width:200px}.footer-demo{width:max-content}.footer-links-row{align-items:flex-start;flex-direction:column}.footer-bottom{align-items:flex-start;flex-direction:column}.footer-inner{padding-top:58px}}
@media(max-width:560px){.footer-inner{padding-inline:20px}.footer-nav{gap:12px 18px}.footer-message h2{font-size:40px}.footer-main{padding-bottom:42px}}


/* =========================================================
   WATCHOPS24 — FOOTER RTL/LTR ALIGNMENT FIX v28
   Footer only. Keeps all completed page sections unchanged.
   ========================================================= */

/* Lock the three main footer blocks into predictable areas. */
.footer-main{
    grid-template-areas:"brand message demo";
}
.footer-logo{grid-area:brand}
.footer-message{grid-area:message}
.footer-demo{grid-area:demo}

/* English: logo -> message -> CTA, left to right. */
html[dir="ltr"] .footer-main{
    direction:ltr;
    grid-template-areas:"brand message demo";
}
html[dir="ltr"] .footer-links-row,
html[dir="ltr"] .footer-nav,
html[dir="ltr"] .footer-trust{
    direction:ltr;
}
html[dir="ltr"] .footer-nav{
    justify-content:flex-start;
    text-align:left;
}
html[dir="ltr"] .footer-trust{
    justify-content:flex-end;
    text-align:left;
}

/* Arabic: logo on the right, message center/right, CTA on the left. */
html[dir="rtl"] .footer-main{
    direction:ltr; /* grid areas stay physical and do not auto-flip */
    grid-template-areas:"demo message brand";
}
html[dir="rtl"] .footer-logo,
html[dir="rtl"] .footer-message,
html[dir="rtl"] .footer-demo{
    direction:rtl;
}
html[dir="rtl"] .footer-message{
    text-align:right;
}
html[dir="rtl"] .footer-links-row{
    direction:rtl;
    flex-direction:row;
}
html[dir="rtl"] .footer-nav{
    direction:rtl;
    justify-content:flex-start;
    text-align:right;
}
html[dir="rtl"] .footer-nav a{
    direction:rtl;
    unicode-bidi:plaintext;
}
html[dir="rtl"] .footer-trust{
    direction:rtl;
    justify-content:flex-end;
    text-align:right;
}
html[dir="rtl"] .footer-bottom{
    direction:rtl;
    text-align:right;
}
html[dir="rtl"] .footer-bottom > span{
    direction:ltr;
    text-align:left;
}

@media(max-width:980px){
    .footer-main,
    html[dir="ltr"] .footer-main,
    html[dir="rtl"] .footer-main{
        grid-template-areas:
            "brand"
            "message"
            "demo";
    }
    html[dir="rtl"] .footer-main{direction:rtl}
    html[dir="rtl"] .footer-links-row,
    html[dir="ltr"] .footer-links-row{
        flex-direction:column;
    }
    html[dir="rtl"] .footer-trust,
    html[dir="ltr"] .footer-trust{
        justify-content:flex-start;
    }
}

/* =========================================================
   WATCHOPS24 — FOOTER FINAL RTL STRUCTURE FIX v29
   Footer only: restore Arabic logo + stack navigation vertically.
   ========================================================= */

/* Keep the footer's three primary blocks balanced in both languages. */
.footer-main{
    grid-template-columns:200px minmax(420px,1fr) 200px;
}

.footer-logo{
    display:flex;
    align-items:center;
    width:100%;
    min-width:0;
}
.footer-logo img{
    display:block;
    width:230px;
    max-width:100%;
    height:auto;
    opacity:1;
    visibility:visible;
}

html[dir="ltr"] .footer-main{
    direction:ltr;
    grid-template-areas:"brand message demo";
}
html[dir="ltr"] .footer-logo{
    justify-content:flex-start;
}
html[dir="ltr"] .footer-demo{
    justify-self:end;
}

/* Arabic mirrors the English composition without hiding the brand. */
html[dir="rtl"] .footer-main{
    direction:ltr;
    grid-template-areas:"demo message brand";
}
html[dir="rtl"] .footer-logo{
    direction:ltr;
    justify-content:flex-end;
    justify-self:end;
}
html[dir="rtl"] .footer-demo{
    direction:rtl;
    justify-self:start;
}

/* Navigation links are one clean vertical list in BOTH languages. */
.footer-nav{
    display:flex;
    flex-direction:column;
    flex-wrap:nowrap;
    align-items:flex-start;
    gap:12px;
    min-width:150px;
}
.footer-nav a{
    display:block;
    width:100%;
    line-height:1.45;
}
html[dir="ltr"] .footer-nav{
    direction:ltr;
    text-align:left;
    align-items:flex-start;
}
html[dir="rtl"] .footer-nav{
    direction:rtl;
    text-align:right;
    align-items:flex-end;
}
html[dir="rtl"] .footer-nav a{
    text-align:right;
}

@media(max-width:1100px){
    .footer-main{
        grid-template-columns:210px minmax(320px,1fr) 210px;
        gap:30px;
    }
    .footer-logo img{width:200px}
}

@media(max-width:980px){
    .footer-main,
    html[dir="ltr"] .footer-main,
    html[dir="rtl"] .footer-main{
        grid-template-columns:1fr;
        grid-template-areas:
            "brand"
            "message"
            "demo";
    }
    html[dir="rtl"] .footer-main{direction:rtl}
    html[dir="rtl"] .footer-logo{justify-content:flex-start;justify-self:stretch}
    html[dir="ltr"] .footer-logo{justify-content:flex-start}
    html[dir="rtl"] .footer-demo,
    html[dir="ltr"] .footer-demo{justify-self:start}
}


/* =========================================================
   WATCHOPS24 — FOOTER BOTTOM BAR FIX v30
   Footer only: full-width copyright + LiN Developer credit.
   ========================================================= */
.footer-bottom{
    width:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    padding:24px 0 4px;
    margin-top:2px;
    border-top:1px solid rgba(119,176,235,.12);
    color:#7f95ad;
    font-weight:500;font-size:13px;line-height:1.6;
    letter-spacing:0;
    text-align:center;
    direction:ltr;
}
.footer-bottom p{
    margin:0;
    width:auto;
    max-width:none;
    white-space:normal;
}
.footer-copyright{
    unicode-bidi:plaintext;
}
html[dir="rtl"] .footer-copyright{
    direction:rtl;
}
html[dir="ltr"] .footer-copyright{
    direction:ltr;
}
.footer-bottom-separator{
    color:#26d9ff;
    opacity:.75;
    line-height:1;
}
.footer-credit{
    direction:ltr;
    color:#8ea6bf;
}
.footer-credit span{
    color:#a9c7e3;
    font-weight:700;
    text-decoration:underline;
    text-underline-offset:3px;
    text-decoration-color:rgba(86,202,255,.55);
}

/* Prevent old RTL footer-bottom rules from pushing content into a narrow side column. */
html[dir="rtl"] .footer-bottom,
html[dir="ltr"] .footer-bottom{
    direction:ltr;
    text-align:center;
    justify-content:center;
}
html[dir="rtl"] .footer-bottom > span,
html[dir="ltr"] .footer-bottom > span{
    direction:ltr;
    text-align:center;
}

@media(max-width:700px){
    .footer-bottom{
        flex-wrap:wrap;
        gap:6px 10px;
        padding-top:20px;
        font-size:12px;
    }
    .footer-bottom-separator{display:none}
    .footer-copyright,
    .footer-credit{width:100%;text-align:center}
}
