/* ==========================================================
   AFROCHEM FRONTEND V9
   Clean production stylesheet
========================================================== */

:root{
    --navy:#10243b;
    --navy-deep:#071523;
    --navy-soft:#18344f;
    --yellow:#ffd21f;
    --green:#146b58;
    --green-dark:#0b5144;
    --white:#ffffff;
    --offwhite:#f5f6f3;
    --surface:#eef1ed;
    --text:#152231;
    --muted:#697681;
    --line:rgba(16,36,59,.13);
    --dark-line:rgba(255,255,255,.13);
    --radius:4px;
    --shadow:0 24px 70px rgba(6,20,34,.13);
    --container:1240px;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    background:var(--white);
    color:var(--text);
    font-family:Arial,Helvetica,sans-serif;
    -webkit-font-smoothing:antialiased;
    overflow-x:hidden;
}

body.menu-open{
    overflow:hidden;
}

img{
    max-width:100%;
    display:block;
}

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

button,
input,
textarea{
    font:inherit;
}

button{
    cursor:pointer;
}

.container{
    width:min(calc(100% - 64px),var(--container));
    margin-inline:auto;
}

.section{
    padding:112px 0;
}

.section-kicker{
    display:flex;
    align-items:center;
    gap:12px;
    margin-bottom:22px;
    color:var(--green);
    font-size:12px;
    line-height:1;
    font-weight:800;
    letter-spacing:2.2px;
    text-transform:uppercase;
}

.section-kicker::before{
    content:"";
    width:28px;
    height:2px;
    background:currentColor;
}

.section-kicker.accent{
    color:var(--yellow);
}

.section-heading{
    display:grid;
    grid-template-columns:minmax(0,1.15fr) minmax(280px,.65fr);
    gap:70px;
    align-items:end;
    margin-bottom:58px;
}

.section-heading h2,
.section-intro h2,
.why-content h2,
.global-copy h2,
.contact-copy h2{
    margin:0;
    color:var(--navy);
    font-size:clamp(38px,4.5vw,66px);
    line-height:.98;
    letter-spacing:-2.8px;
    font-weight:700;
}

.section-heading>p{
    margin:0;
    color:var(--muted);
    font-size:17px;
    line-height:1.8;
}

.large-copy{
    font-size:22px;
    line-height:1.55;
    color:var(--navy);
}

/* HEADER */

.site-header{
    position:relative;
    z-index:1000;
    background:var(--white);
    border-bottom:1px solid var(--line);
}

.topbar{
    background:var(--navy-deep);
    color:rgba(255,255,255,.68);
}

.topbar-inner{
    min-height:34px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    font-size:10px;
    font-weight:700;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.topbar-inner>div{
    display:flex;
    align-items:center;
    gap:12px;
}

.topbar a{
    transition:color .25s ease;
}

.topbar a:hover{
    color:var(--yellow);
}

.separator{
    opacity:.3;
}

.header-main{
    min-height:86px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:38px;
}

.brand{
    flex:0 0 auto;
    display:flex;
    align-items:center;
    gap:13px;
}

.brand-mark{
    position:relative;
    width:48px;
    height:48px;
    flex:0 0 48px;
    display:grid;
    place-items:center;
    overflow:hidden;
    background:var(--yellow);
    color:var(--navy);
    font-size:18px;
    font-weight:900;
    letter-spacing:-1px;
}

.brand-mark::before,
.brand-mark::after{
    content:"";
    position:absolute;
    border:1px solid rgba(16,36,59,.25);
    border-radius:50%;
}

.brand-mark::before{
    width:56px;
    height:20px;
    transform:rotate(35deg);
}

.brand-mark::after{
    width:56px;
    height:20px;
    transform:rotate(-35deg);
}

.brand-text{
    display:flex;
    flex-direction:column;
    color:var(--navy);
    font-size:21px;
    line-height:1;
    font-weight:900;
    letter-spacing:1.6px;
}

.brand-text small{
    margin-top:6px;
    color:#77818a;
    font-size:7px;
    line-height:1;
    letter-spacing:1.35px;
    font-weight:700;
}

.main-nav{
    display:flex;
    align-items:center;
    gap:32px;
}

.main-nav>a{
    position:relative;
    color:#334453;
    font-size:13px;
    font-weight:700;
    transition:color .25s ease;
}

.main-nav>a:not(.nav-cta)::after{
    content:"";
    position:absolute;
    left:0;
    right:100%;
    bottom:-9px;
    height:2px;
    background:var(--yellow);
    transition:right .3s ease;
}

.main-nav>a:not(.nav-cta):hover{
    color:var(--navy);
}

.main-nav>a:not(.nav-cta):hover::after{
    right:0;
}

.nav-cta{
    padding:14px 21px;
    background:var(--yellow);
    color:var(--navy)!important;
    transition:transform .25s ease,box-shadow .25s ease!important;
}

.nav-cta:hover{
    transform:translateY(-2px);
    box-shadow:0 10px 24px rgba(255,210,31,.25);
}

.menu-toggle{
    display:none;
    width:44px;
    height:44px;
    border:1px solid var(--line);
    background:transparent;
    color:var(--navy);
    font-size:21px;
}

/* BUTTONS */

.button{
    min-height:52px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:24px;
    padding:0 24px;
    border:1px solid transparent;
    font-size:12px;
    font-weight:800;
    letter-spacing:.7px;
    transition:
        transform .25s ease,
        background .25s ease,
        color .25s ease,
        border-color .25s ease,
        box-shadow .25s ease;
}

.button b{
    font-size:17px;
    transition:transform .25s ease;
}

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

.button:hover b{
    transform:translateX(4px);
}

.button-primary{
    background:var(--yellow);
    color:var(--navy);
}

.button-primary:hover{
    box-shadow:0 14px 32px rgba(255,210,31,.2);
}

.button-ghost{
    border-color:rgba(255,255,255,.4);
    color:var(--white);
    background:rgba(255,255,255,.04);
}

.button-ghost:hover{
    border-color:var(--white);
    background:var(--white);
    color:var(--navy);
}

.button-dark{
    background:var(--navy);
    color:var(--white);
}

/* HERO */

.hero{
    position:relative;
    min-height:680px;
    overflow:hidden;
    background:var(--navy-deep);
    color:var(--white);
}

.hero-slides{
    position:relative;
    min-height:680px;
}

.hero-slide{
    position:absolute;
    inset:0;
    opacity:0;
    visibility:hidden;
    pointer-events:none;
    transition:opacity .8s ease,visibility .8s ease;
}

.hero-slide.active{
    opacity:1;
    visibility:visible;
    pointer-events:auto;
    z-index:2;
}

.hero-background,
.hero-overlay,
.hero-lines{
    position:absolute;
    inset:0;
}

.hero-background{
    background-position:center;
    background-size:cover;
    transform:scale(1.04);
    transition:transform 7s ease;
}

.hero-slide.active .hero-background{
    transform:scale(1);
}

.hero-generated{
    background:
        radial-gradient(circle at 75% 45%,rgba(20,107,88,.4),transparent 30%),
        radial-gradient(circle at 20% 80%,rgba(255,210,31,.07),transparent 25%),
        linear-gradient(125deg,#071523 0%,#10243b 50%,#123b43 100%);
}

.hero-overlay{
    background:
        linear-gradient(90deg,rgba(4,16,28,.91) 0%,rgba(6,22,36,.77) 45%,rgba(5,20,31,.32) 100%);
}

.hero-lines{
    opacity:.13;
    background-image:
        linear-gradient(rgba(255,255,255,.12) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.12) 1px,transparent 1px);
    background-size:90px 90px;
    mask-image:linear-gradient(90deg,#000,transparent 82%);
}

.hero-inner{
    position:relative;
    z-index:4;
    min-height:680px;
    display:grid;
    grid-template-columns:minmax(0,1.05fr) minmax(420px,.95fr);
    align-items:center;
    gap:60px;
    padding-top:35px;
    padding-bottom:95px;
}

.hero-copy{
    max-width:720px;
}

.hero-eyebrow{
    display:flex;
    align-items:center;
    gap:13px;
    margin-bottom:27px;
    color:var(--yellow);
    font-size:11px;
    font-weight:800;
    letter-spacing:2.8px;
    text-transform:uppercase;
}

.hero-eyebrow span{
    width:32px;
    height:2px;
    background:var(--yellow);
}

.hero h1{
    max-width:760px;
    margin:0;
    font-size:clamp(50px,5.5vw,82px);
    line-height:.94;
    letter-spacing:-4px;
    font-weight:700;
}

.hero-description{
    max-width:620px;
    margin:28px 0 0;
    color:rgba(255,255,255,.7);
    font-size:17px;
    line-height:1.75;
}

.hero-buttons{
    display:flex;
    flex-wrap:wrap;
    gap:12px;
    margin-top:38px;
}

.reveal-item{
    opacity:0;
    transform:translateY(22px);
}

.hero-slide.active .reveal-item{
    animation:heroReveal .7s ease forwards;
}

.hero-slide.active .reveal-item:nth-child(2){
    animation-delay:.1s;
}

.hero-slide.active .reveal-item:nth-child(3){
    animation-delay:.2s;
}

.hero-slide.active .reveal-item:nth-child(4){
    animation-delay:.3s;
}

@keyframes heroReveal{
    to{
        opacity:1;
        transform:none;
    }
}

/* HERO MOLECULE */

.hero-art{
    position:relative;
    min-height:510px;
    display:flex;
    align-items:center;
    justify-content:center;
}

.molecular-system{
    position:relative;
    width:min(500px,40vw);
    aspect-ratio:1;
    display:grid;
    place-items:center;
}

.molecular-system::before{
    content:"";
    position:absolute;
    inset:14%;
    border-radius:50%;
    background:radial-gradient(circle,rgba(255,210,31,.11),transparent 65%);
    filter:blur(12px);
}

.molecular-center{
    position:relative;
    z-index:5;
    width:112px;
    height:112px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,210,31,.85);
    border-radius:50%;
    background:rgba(7,21,35,.82);
    box-shadow:
        0 0 0 12px rgba(255,210,31,.03),
        0 0 70px rgba(255,210,31,.15);
    color:var(--yellow);
    font-size:28px;
    font-weight:900;
    letter-spacing:-2px;
    animation:centerFloat 4s ease-in-out infinite;
}

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

.orbit{
    position:absolute;
    inset:13%;
    border:1px solid rgba(255,255,255,.26);
    border-radius:50%;
}

.orbit-a{
    transform:rotate(25deg) scaleY(.48);
    animation:orbitA 18s linear infinite;
}

.orbit-b{
    transform:rotate(-35deg) scaleY(.52);
    animation:orbitB 23s linear infinite reverse;
}

.orbit-c{
    transform:rotate(88deg) scaleY(.48);
    animation:orbitC 28s linear infinite;
}

.orbit i{
    position:absolute;
    top:50%;
    left:-5px;
    width:11px;
    height:11px;
    margin-top:-5px;
    border-radius:50%;
    background:var(--yellow);
    box-shadow:0 0 22px rgba(255,210,31,.75);
}

@keyframes orbitA{
    to{transform:rotate(385deg) scaleY(.48)}
}

@keyframes orbitB{
    to{transform:rotate(325deg) scaleY(.52)}
}

@keyframes orbitC{
    to{transform:rotate(448deg) scaleY(.48)}
}

.node{
    position:absolute;
    width:10px;
    height:10px;
    border-radius:50%;
    background:var(--white);
    box-shadow:0 0 20px rgba(255,255,255,.6);
    animation:nodePulse 2.5s ease-in-out infinite;
}

.node-a{left:14%;top:34%}
.node-b{right:15%;top:27%;animation-delay:.7s}
.node-c{right:21%;bottom:21%;animation-delay:1.4s}

@keyframes nodePulse{
    50%{
        transform:scale(1.7);
        opacity:.45;
    }
}

.hero-info-card{
    position:absolute;
    right:0;
    bottom:38px;
    width:205px;
    padding:18px 20px;
    border-left:2px solid var(--yellow);
    background:rgba(7,21,35,.78);
    backdrop-filter:blur(12px);
}

.hero-info-card small,
.hero-info-card strong{
    display:block;
}

.hero-info-card small{
    margin-bottom:7px;
    color:var(--yellow);
    font-size:9px;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.hero-info-card strong{
    color:rgba(255,255,255,.82);
    font-size:12px;
    line-height:1.5;
}

.hero-navigation{
    position:absolute;
    z-index:10;
    left:50%;
    bottom:28px;
    transform:translateX(-50%);
    display:flex;
    align-items:center;
    gap:18px;
}

.slider-arrow{
    width:48px;
    height:48px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,255,255,.3);
    background:rgba(7,21,35,.45);
    color:var(--white);
    font-size:18px;
    transition:.25s ease;
}

.slider-arrow:hover{
    background:var(--yellow);
    border-color:var(--yellow);
    color:var(--navy);
}

.slider-counter{
    display:flex;
    align-items:center;
    gap:13px;
    min-width:170px;
    color:rgba(255,255,255,.65);
    font-size:10px;
    letter-spacing:1px;
}

#currentSlide{
    color:var(--white);
    font-weight:800;
}

.slider-progress{
    position:relative;
    flex:1;
    height:1px;
    overflow:hidden;
    background:rgba(255,255,255,.25);
}

.slider-progress span{
    position:absolute;
    inset:0;
    transform-origin:left;
    transform:scaleX(0);
    background:var(--yellow);
}

.slider-progress span.running{
    animation:slideProgress 6s linear forwards;
}

@keyframes slideProgress{
    to{transform:scaleX(1)}
}

/* ==========================================================
   AFROCHEM V9 - CONTENT SECTIONS
========================================================== */

/* ABOUT */

.about{
    background:var(--white);
}

.about-grid{
    display:grid;
    grid-template-columns:minmax(0,.9fr) minmax(0,1.1fr);
    gap:110px;
    align-items:start;
}

.about-content{
    max-width:680px;
}

.about-content p{
    margin:0 0 23px;
    color:var(--muted);
    font-size:16px;
    line-height:1.85;
}

.about-content .large-copy{
    color:var(--navy);
    font-size:23px;
    line-height:1.55;
}

.arrow-link{
    display:inline-flex;
    align-items:center;
    gap:22px;
    margin-top:14px;
    padding-bottom:8px;
    border-bottom:1px solid var(--navy);
    color:var(--navy);
    font-size:12px;
    font-weight:800;
    letter-spacing:.6px;
}

.arrow-link span{
    transition:transform .25s ease;
}

.arrow-link:hover span{
    transform:translateX(6px);
}

/* CAPABILITIES */

.capabilities{
    position:relative;
    overflow:hidden;
    background:var(--navy);
    color:var(--white);
}

.capabilities::before{
    content:"";
    position:absolute;
    width:550px;
    height:550px;
    right:-200px;
    top:-250px;
    border:1px solid rgba(255,255,255,.06);
    border-radius:50%;
}

.section-heading-light h2{
    color:var(--white);
}

.section-heading-light>p{
    color:rgba(255,255,255,.58);
}

.capability-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:18px;
}

.capability-card{
    position:relative;
    min-height:470px;
    padding:38px;
    overflow:hidden;
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    border:1px solid rgba(255,255,255,.13);
    background:#153149;
    transition:
        transform .35s ease,
        border-color .35s ease,
        background .35s ease;
}

.capability-card:hover{
    transform:translateY(-7px);
    border-color:rgba(255,210,31,.55);
    background:#183850;
}

.capability-card-alt{
    background:#0d5a4b;
}

.capability-card-alt:hover{
    background:#116653;
}

.capability-top{
    display:flex;
    justify-content:space-between;
    align-items:center;
}

.capability-number{
    color:rgba(255,255,255,.45);
    font-size:11px;
    letter-spacing:1.5px;
}

.capability-arrow{
    color:var(--yellow);
    font-size:21px;
}

.capability-card h3{
    margin:0 0 17px;
    font-size:31px;
    line-height:1.05;
}

.capability-card p{
    max-width:520px;
    margin:0 0 26px;
    color:rgba(255,255,255,.63);
    line-height:1.75;
}

.capability-card a{
    display:inline-flex;
    align-items:center;
    gap:18px;
    color:var(--yellow);
    font-size:12px;
    font-weight:800;
}

.chemical-icon{
    position:relative;
    width:150px;
    height:150px;
    margin:15px 0;
    border:1px solid rgba(255,255,255,.15);
    border-radius:50%;
}

.chemical-icon::before,
.chemical-icon::after{
    content:"";
    position:absolute;
    inset:27px;
    border:1px solid rgba(255,210,31,.5);
    border-radius:50%;
}

.chemical-icon::after{
    inset:51px;
    background:var(--yellow);
    border:0;
}

.chemical-icon span{
    position:absolute;
    left:50%;
    top:-6px;
    width:12px;
    height:12px;
    border-radius:50%;
    background:var(--yellow);
}

.solution-rings{
    position:relative;
    width:160px;
    height:160px;
    margin:10px 0;
}

.solution-rings span{
    position:absolute;
    inset:0;
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
}

.solution-rings span:nth-child(2){
    inset:27px;
    border-color:rgba(255,210,31,.45);
}

.solution-rings span:nth-child(3){
    inset:57px;
    background:var(--yellow);
    border:0;
}

/* INDUSTRIES */

.industries{
    background:var(--offwhite);
}

.industry-grid{
    display:grid;
    grid-template-columns:repeat(4,minmax(0,1fr));
    border-top:1px solid var(--line);
    border-left:1px solid var(--line);
}

.industry-card{
    position:relative;
    min-height:335px;
    display:flex;
    flex-direction:column;
    padding:28px;
    border-right:1px solid var(--line);
    border-bottom:1px solid var(--line);
    background:rgba(255,255,255,.35);
    transition:
        transform .3s ease,
        background .3s ease,
        box-shadow .3s ease;
}

.industry-card:hover{
    z-index:2;
    transform:translateY(-5px);
    background:var(--white);
    box-shadow:var(--shadow);
}

.industry-card-top{
    display:flex;
    align-items:center;
    justify-content:space-between;
    color:#8b959d;
    font-size:10px;
}

.industry-card-top b{
    color:var(--green);
    font-size:17px;
}

.industry-icon{
    width:58px;
    height:58px;
    margin:37px 0 28px;
    display:grid;
    place-items:center;
    border:1px solid var(--line);
    background:var(--white);
    color:var(--green);
    font-size:19px;
    font-weight:900;
    transition:.3s ease;
}

.industry-card:hover .industry-icon{
    background:var(--yellow);
    border-color:var(--yellow);
    color:var(--navy);
}

.industry-card h3{
    margin:0 0 13px;
    color:var(--navy);
    font-size:19px;
}

.industry-card p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}

.industry-card>a{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:15px;
    margin-top:auto;
    padding-top:25px;
    color:var(--green);
    font-size:11px;
    font-weight:800;
}

/* WHY */

.why{
    overflow:hidden;
    background:var(--white);
}

.why-grid{
    display:grid;
    grid-template-columns:minmax(0,1fr) minmax(0,1fr);
    gap:95px;
    align-items:center;
}

.why-visual{
    position:relative;
    min-height:600px;
    overflow:hidden;
    background:
        radial-gradient(circle at 50% 50%,rgba(255,210,31,.09),transparent 30%),
        linear-gradient(145deg,#0a1c2d,#14394a);
}

.visual-grid{
    position:absolute;
    inset:0;
    opacity:.18;
    background-image:
        linear-gradient(rgba(255,255,255,.16) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.16) 1px,transparent 1px);
    background-size:55px 55px;
}

.visual-orbit{
    position:absolute;
    width:430px;
    height:430px;
    left:50%;
    top:50%;
    transform:translate(-50%,-50%);
    border:1px solid rgba(255,255,255,.18);
    border-radius:50%;
}

.visual-orbit::before,
.visual-orbit::after{
    content:"";
    position:absolute;
    border:1px solid rgba(255,210,31,.28);
    border-radius:50%;
}

.visual-orbit::before{
    inset:60px -35px;
    transform:rotate(35deg);
}

.visual-orbit::after{
    inset:-35px 60px;
    transform:rotate(-35deg);
}

.why-floating{
    position:absolute;
    left:38px;
    bottom:38px;
    max-width:270px;
    padding:25px;
    background:var(--yellow);
    color:var(--navy);
    box-shadow:0 20px 55px rgba(0,0,0,.18);
}

.why-floating small,
.why-floating strong{
    display:block;
}

.why-floating small{
    margin-bottom:8px;
    font-size:9px;
    font-weight:800;
    letter-spacing:1.5px;
    text-transform:uppercase;
}

.why-floating strong{
    font-size:23px;
    line-height:1.1;
}

.why-content .large-copy{
    margin:27px 0 35px;
}

.why-item{
    display:grid;
    grid-template-columns:42px 1fr 25px;
    gap:18px;
    padding:23px 0;
    border-top:1px solid var(--line);
}

.why-item>span{
    color:var(--green);
    font-size:10px;
    font-weight:800;
}

.why-item h3{
    margin:0 0 7px;
    color:var(--navy);
    font-size:17px;
}

.why-item p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.65;
}

.why-item>b{
    color:var(--green);
}

/* STATISTICS */

.statistics{
    background:var(--yellow);
}

.statistics-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
}

.stat-item{
    min-height:190px;
    display:flex;
    flex-direction:column;
    justify-content:center;
    padding:30px 38px;
    border-right:1px solid rgba(16,36,59,.17);
}

.stat-item:last-child{
    border-right:0;
}

.stat-item strong{
    color:var(--navy);
    font-size:clamp(38px,4vw,58px);
    line-height:1;
    letter-spacing:-2px;
}

.stat-item span{
    margin-top:12px;
    color:rgba(16,36,59,.7);
    font-size:10px;
    font-weight:800;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

/* ==========================================================
   AFROCHEM V9 - GLOBAL / INSIGHTS / CONTACT / RESPONSIVE
========================================================== */

/* GLOBAL */

.global-section{
    overflow:hidden;
    background:#eef1ed;
}

.global-grid{
    display:grid;
    grid-template-columns:minmax(320px,.75fr) minmax(0,1.25fr);
    gap:85px;
    align-items:center;
}

.global-copy p{
    max-width:510px;
    margin:27px 0 35px;
    color:var(--muted);
    font-size:16px;
    line-height:1.8;
}

.global-network{
    position:relative;
    min-height:510px;
    overflow:hidden;
    isolation:isolate;
    background:
        radial-gradient(circle at 52% 52%,rgba(255,210,31,.12),transparent 25%),
        linear-gradient(145deg,#071523,#102b42);
    box-shadow:0 30px 80px rgba(7,21,35,.16);
}

.world-grid{
    position:absolute;
    inset:0;
    opacity:.18;
    background-image:
        linear-gradient(rgba(255,255,255,.13) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.13) 1px,transparent 1px);
    background-size:48px 48px;
}

.world-map{
    position:absolute;
    inset:13% 8%;
    opacity:.19;
    filter:drop-shadow(0 0 18px rgba(255,255,255,.08));
}

.continent{
    position:absolute;
    background:#d7e1dc;
}

.continent-america{
    left:4%;
    top:18%;
    width:24%;
    height:56%;
    clip-path:polygon(16% 4%,68% 0,91% 19%,72% 35%,85% 52%,57% 61%,66% 78%,42% 100%,29% 72%,9% 59%,20% 39%,0 25%);
}

.continent-europe{
    left:43%;
    top:22%;
    width:16%;
    height:20%;
    clip-path:polygon(5% 23%,39% 0,100% 19%,78% 48%,92% 78%,44% 100%,0 68%);
}

.continent-africa{
    left:44%;
    top:39%;
    width:19%;
    height:43%;
    clip-path:polygon(14% 0,83% 6%,100% 28%,74% 68%,47% 100%,20% 76%,0 36%);
}

.continent-asia{
    right:3%;
    top:18%;
    width:37%;
    height:48%;
    clip-path:polygon(0 22%,24% 0,61% 8%,100% 27%,81% 48%,92% 66%,58% 70%,44% 100%,25% 69%,5% 59%,15% 40%);
}

.connection-lines{
    position:absolute;
    inset:0;
    z-index:3;
    width:100%;
    height:100%;
    pointer-events:none;
}

.connection-path{
    fill:none;
    stroke:rgba(255,210,31,.78);
    stroke-width:1.5;
    stroke-dasharray:7 10;
    stroke-linecap:round;
    animation:networkFlow 6s linear infinite;
}

.path-two{animation-duration:7.5s}
.path-three{animation-duration:5.5s}
.path-four{animation-duration:8s}

@keyframes networkFlow{
    to{stroke-dashoffset:-170}
}

.network-pulse{
    position:absolute;
    z-index:6;
    width:9px;
    height:9px;
    border-radius:50%;
    background:var(--yellow);
    box-shadow:0 0 0 0 rgba(255,210,31,.45);
    animation:networkPulse 2.3s ease-out infinite;
}

.p1{left:20%;top:43%}
.p2{left:46%;top:31%;animation-delay:.45s}
.p3{left:51%;top:55%;animation-delay:.9s}
.p4{right:18%;top:41%;animation-delay:1.35s}
.p5{right:15%;bottom:25%;animation-delay:1.8s}

@keyframes networkPulse{
    0%{box-shadow:0 0 0 0 rgba(255,210,31,.48)}
    70%{box-shadow:0 0 0 14px rgba(255,210,31,0)}
    100%{box-shadow:0 0 0 0 rgba(255,210,31,0)}
}

.global-radar{
    position:absolute;
    z-index:5;
    left:51%;
    top:51%;
    width:245px;
    height:245px;
    transform:translate(-50%,-50%);
    display:grid;
    place-items:center;
}

.radar-circle{
    position:absolute;
    border:1px solid rgba(255,210,31,.28);
    border-radius:50%;
}

.rc1{
    inset:0;
    animation:radarRotate 18s linear infinite;
}

.rc2{
    inset:28px;
    border-style:dashed;
    animation:radarRotate 13s linear infinite reverse;
}

.rc3{
    inset:58px;
}

.rc1::before,
.rc2::before{
    content:"";
    position:absolute;
    width:8px;
    height:8px;
    top:50%;
    left:-4px;
    border-radius:50%;
    background:var(--yellow);
    box-shadow:0 0 16px rgba(255,210,31,.8);
}

@keyframes radarRotate{
    to{transform:rotate(360deg)}
}

.radar-center{
    position:relative;
    z-index:3;
    width:108px;
    height:108px;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    padding:12px;
    border:1px solid rgba(255,210,31,.65);
    border-radius:50%;
    background:rgba(7,21,35,.9);
    color:var(--white);
    text-align:center;
    box-shadow:0 0 50px rgba(255,210,31,.12);
}

.radar-center strong{
    color:var(--yellow);
    font-size:14px;
}

.radar-center small{
    margin-top:6px;
    color:rgba(255,255,255,.58);
    font-size:8px;
    line-height:1.35;
}

.global-scan{
    position:absolute;
    z-index:4;
    left:51%;
    top:51%;
    width:220px;
    height:1px;
    transform-origin:left center;
    background:linear-gradient(90deg,rgba(255,210,31,.85),transparent);
    animation:globalScan 8s linear infinite;
}

@keyframes globalScan{
    from{transform:rotate(0deg)}
    to{transform:rotate(360deg)}
}

/* INSIGHTS */

.insights{
    background:var(--white);
}

.insight-grid{
    display:grid;
    grid-template-columns:repeat(3,minmax(0,1fr));
    gap:22px;
}

.insight-card{
    overflow:hidden;
    border:1px solid var(--line);
    background:var(--white);
    transition:transform .3s ease,box-shadow .3s ease;
}

.insight-card:hover{
    transform:translateY(-6px);
    box-shadow:var(--shadow);
}

.insight-visual{
    position:relative;
    height:245px;
    display:grid;
    place-items:center;
    overflow:hidden;
    background:
        radial-gradient(circle at 70% 25%,rgba(255,210,31,.15),transparent 25%),
        linear-gradient(145deg,var(--navy),#155444);
}

.insight-visual img{
    width:100%;
    height:100%;
    object-fit:cover;
    transition:transform .5s ease;
}

.insight-card:hover .insight-visual img{
    transform:scale(1.04);
}

.insight-visual>span{
    width:82px;
    height:82px;
    display:grid;
    place-items:center;
    border:1px solid rgba(255,210,31,.7);
    border-radius:50%;
    color:var(--yellow);
    font-size:22px;
    font-weight:900;
}

.insight-body{
    padding:28px;
}

.insight-body small{
    display:block;
    margin-bottom:15px;
    color:var(--green);
    font-size:9px;
    font-weight:800;
    letter-spacing:1.2px;
}

.insight-body h3{
    margin:0 0 13px;
    color:var(--navy);
    font-size:21px;
    line-height:1.25;
}

.insight-body p{
    margin:0;
    color:var(--muted);
    font-size:13px;
    line-height:1.7;
}

/* CONTACT */

.contact-section{
    padding:110px 0;
    background:var(--green-dark);
    color:var(--white);
}

.contact-grid{
    display:grid;
    grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr);
    gap:90px;
    align-items:start;
}

.contact-copy h2{
    color:var(--white);
}

.contact-copy>p{
    max-width:500px;
    margin:27px 0;
    color:rgba(255,255,255,.65);
    font-size:16px;
    line-height:1.8;
}

.contact-direct{
    margin-top:45px;
    padding-top:22px;
    border-top:1px solid rgba(255,255,255,.17);
}

.contact-direct small{
    display:block;
    margin-bottom:8px;
    color:var(--yellow);
    font-size:9px;
    letter-spacing:1.4px;
    text-transform:uppercase;
}

.contact-direct a{
    font-size:18px;
}

.contact-form{
    padding:38px;
    background:var(--white);
    color:var(--text);
    box-shadow:0 30px 80px rgba(0,0,0,.13);
}

.form-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:19px;
}

.contact-form label{
    display:block;
    margin-bottom:19px;
}

.contact-form label>span{
    display:block;
    margin-bottom:8px;
    color:#55636e;
    font-size:9px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

.contact-form input,
.contact-form textarea{
    width:100%;
    border:1px solid #d9dfdc;
    border-radius:0;
    outline:0;
    background:#f7f8f6;
    color:var(--navy);
    transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
}

.contact-form input{
    height:50px;
    padding:0 15px;
}

.contact-form textarea{
    min-height:135px;
    padding:15px;
    resize:vertical;
}

.contact-form input:focus,
.contact-form textarea:focus{
    border-color:var(--green);
    background:var(--white);
    box-shadow:0 0 0 3px rgba(20,107,88,.08);
}

.contact-form .button{
    border:0;
}

.form-status{
    min-height:20px;
    margin-top:15px;
    font-size:12px;
    line-height:1.5;
}

.form-status.success{
    color:var(--green);
}

.form-status.error{
    color:#b83d3d;
}

/* FOOTER */

.footer{
    padding-top:70px;
    background:var(--navy-deep);
    color:rgba(255,255,255,.64);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:70px;
    padding-bottom:60px;
}

.footer-brand{
    margin-bottom:18px;
    color:var(--white);
    font-size:23px;
    font-weight:900;
    letter-spacing:1.7px;
}

.footer p{
    max-width:390px;
    margin:0;
    font-size:13px;
    line-height:1.75;
}

.footer h4{
    margin:0 0 20px;
    color:var(--white);
    font-size:11px;
    letter-spacing:1.2px;
    text-transform:uppercase;
}

.footer-grid>div>a{
    display:block;
    width:max-content;
    max-width:100%;
    margin:0 0 12px;
    font-size:12px;
    transition:color .2s ease;
}

.footer-grid>div>a:hover{
    color:var(--yellow);
}

.footer-bottom{
    min-height:72px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:30px;
    border-top:1px solid rgba(255,255,255,.1);
    font-size:9px;
    letter-spacing:.8px;
    text-transform:uppercase;
}

/* SCROLL REVEAL */

.js-reveal{
    opacity:0;
    transform:translateY(28px);
    transition:opacity .7s ease,transform .7s ease;
}

.js-reveal.in-view{
    opacity:1;
    transform:none;
}

/* RESPONSIVE */

@media(max-width:1100px){

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

    .hero-inner{
        grid-template-columns:1fr .8fr;
    }

    .molecular-system{
        width:390px;
    }

    .global-grid{
        gap:50px;
    }
}

@media(max-width:900px){

    .container{
        width:min(calc(100% - 40px),var(--container));
    }

    .section{
        padding:82px 0;
    }

    .topbar{
        display:none;
    }

    .header-main{
        min-height:76px;
    }

    .menu-toggle{
        display:grid;
        place-items:center;
    }

    .main-nav{
        position:absolute;
        top:76px;
        left:0;
        right:0;
        display:flex;
        flex-direction:column;
        align-items:stretch;
        gap:0;
        padding:18px 20px 25px;
        background:var(--white);
        border-top:1px solid var(--line);
        box-shadow:0 25px 50px rgba(7,21,35,.12);
        opacity:0;
        visibility:hidden;
        transform:translateY(-10px);
        transition:.25s ease;
    }

    .main-nav.open{
        opacity:1;
        visibility:visible;
        transform:none;
    }

    .main-nav>a{
        padding:14px 5px;
        border-bottom:1px solid var(--line);
    }

    .main-nav>a::after{
        display:none;
    }

    .nav-cta{
        margin-top:12px;
        text-align:center;
        border-bottom:0!important;
    }

    .hero,
    .hero-slides,
    .hero-inner{
        min-height:780px;
    }

    .hero-inner{
        grid-template-columns:1fr;
        align-content:center;
        gap:5px;
        padding-top:55px;
        padding-bottom:110px;
    }

    .hero-copy{
        position:relative;
        z-index:3;
    }

    .hero-art{
        position:absolute;
        right:-100px;
        bottom:-50px;
        min-height:430px;
        opacity:.45;
    }

    .molecular-system{
        width:430px;
    }

    .hero-info-card{
        display:none;
    }

    .section-heading,
    .about-grid,
    .why-grid,
    .global-grid,
    .contact-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .capability-grid{
        grid-template-columns:1fr;
    }

    .why-visual{
        min-height:500px;
    }

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

    .stat-item:nth-child(2){
        border-right:0;
    }

    .stat-item:nth-child(-n+2){
        border-bottom:1px solid rgba(16,36,59,.17);
    }

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

    .global-network{
        min-height:470px;
    }
}

@media(max-width:600px){

    .container{
        width:calc(100% - 30px);
    }

    .section{
        padding:68px 0;
    }

    .brand-mark{
        width:42px;
        height:42px;
        flex-basis:42px;
    }

    .brand-text{
        font-size:18px;
    }

    .brand-text small{
        font-size:6px;
    }

    .hero,
    .hero-slides,
    .hero-inner{
        min-height:720px;
    }

    .hero h1{
        font-size:47px;
        letter-spacing:-2.5px;
    }

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

    .hero-buttons{
        align-items:stretch;
        flex-direction:column;
        max-width:310px;
    }

    .button{
        width:100%;
        justify-content:space-between;
    }

    .hero-art{
        right:-160px;
        bottom:-55px;
    }

    .molecular-system{
        width:380px;
    }

    .hero-navigation{
        justify-content:flex-start;
    }

    .section-heading h2,
    .section-intro h2,
    .why-content h2,
    .global-copy h2,
    .contact-copy h2{
        font-size:40px;
        letter-spacing:-2px;
    }

    .section-heading{
        gap:25px;
        margin-bottom:40px;
    }

    .about-grid{
        gap:35px;
    }

    .capability-card{
        min-height:410px;
        padding:27px;
    }

    .industry-grid{
        grid-template-columns:1fr;
    }

    .industry-card{
        min-height:300px;
    }

    .why-visual{
        min-height:410px;
    }

    .visual-orbit{
        width:300px;
        height:300px;
    }

    .why-floating{
        left:20px;
        right:20px;
        bottom:20px;
    }

    .statistics-grid{
        grid-template-columns:1fr 1fr;
    }

    .stat-item{
        min-height:150px;
        padding:22px;
    }

    .stat-item strong{
        font-size:38px;
    }

    .global-network{
        min-height:390px;
    }

    .global-radar{
        width:200px;
        height:200px;
    }

    .global-scan{
        width:175px;
    }

    .insight-grid{
        grid-template-columns:1fr;
    }

    .form-grid{
        grid-template-columns:1fr;
        gap:0;
    }

    .contact-form{
        padding:25px 20px;
    }

    .footer-grid{
        grid-template-columns:1fr;
        gap:38px;
    }

    .footer-bottom{
        align-items:flex-start;
        flex-direction:column;
        justify-content:center;
        padding:22px 0;
    }
}

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

    html{
        scroll-behavior:auto;
    }

    *,
    *::before,
    *::after{
        animation-duration:.01ms!important;
        animation-iteration-count:1!important;
        transition-duration:.01ms!important;
    }

    .js-reveal{
        opacity:1;
        transform:none;
    }
}
