:root{
--bg:#050816;
--bg2:#0b1230;
--primary:#22d3ee;
--primary2:#60a5fa;
--text:#e6edf7;
--muted:#9aa6c2;
--card:#0f172a;
--border:#1f2a44;
}

*{
box-sizing:border-box
}

body{
margin:0;
font-family:Inter,system-ui,Segoe UI,Roboto,Arial,sans-serif;

background:
linear-gradient(rgba(5,8,22,.85),rgba(5,8,22,.95)),
url("../img/noc-1920.jpg");

background:
linear-gradient(rgba(5,8,22,.85),rgba(5,8,22,.95)),
image-set(
url("../img/noc-1920.webp") type("image/webp"),
url("../img/noc-1920.jpg") type("image/jpeg")
);

background-size:cover;
background-position:center;
background-attachment:fixed;

color:var(--text);

scroll-behavior:smooth;

-webkit-text-size-adjust:100%;
text-rendering:optimizeLegibility;
}

/* FIX ANDROID BACKGROUND */

@media (max-width:900px){

body{
background-attachment:scroll;
}

}

.container{
max-width:1200px;
margin:auto;
padding:0 24px;
}

header{
position:sticky;
top:0;

backdrop-filter:blur(12px);
background:rgba(5,8,22,.7);

border-bottom:1px solid var(--border);

z-index:50;
}

.header-inner{
display:flex;
align-items:center;
justify-content:space-between;
padding:20px 0;
}

.logo{
font-size:20px;
font-weight:700;
letter-spacing:.5px;
}

nav a{
margin-left:24px;
text-decoration:none;
color:var(--muted);
font-weight:600;
font-size:14px;
transition:.2s;
}

nav a:hover{
color:var(--primary);
}

.hero{
padding:140px 0 120px 0;
min-height:100vh;
display:flex;
align-items:center;
position:relative;
}

.hero::before{

content:"";

position:absolute;
inset:0;

background:
linear-gradient(rgba(5,8,22,.75),rgba(5,8,22,.95)),
url("../img/hero-datacenter-1920.jpg");

background:
linear-gradient(rgba(5,8,22,.75),rgba(5,8,22,.95)),
image-set(
url("../img/hero-datacenter-1920.webp") type("image/webp"),
url("../img/hero-datacenter-1920.jpg") type("image/jpeg")
);

background-size:cover;
background-position:center;

z-index:-1;
}

.hero h1{

font-size:clamp(34px,5vw,56px);

line-height:1.15;

margin:0 0 20px 0;

letter-spacing:-1px;

word-break:break-word;

}

.gradient{
background:linear-gradient(90deg,var(--primary),var(--primary2));
-webkit-background-clip:text;
background-clip:text;
color:transparent;
}

.hero p{

max-width:720px;

font-size:18px;

line-height:1.6;

color:var(--muted);

margin-bottom:40px;

}

.hero-buttons a{
text-decoration:none;
padding:14px 26px;
border-radius:8px;
font-weight:600;
margin-right:12px;
}

.btn-primary{
background:linear-gradient(135deg,var(--primary),var(--primary2));
color:#000;
}

.btn-secondary{
border:1px solid var(--border);
color:var(--text);
}

.section{

padding:120px 0 80px 0;

position:relative;

min-height:100vh;

}

.section::before{

content:"";

position:absolute;

inset:0;

background:url("../img/security-1920.jpg");
background:image-set(
url("../img/security-1920.webp") type("image/webp"),
url("../img/security-1920.jpg") type("image/jpeg")
);

background-size:cover;
background-position:center;

opacity:.05;

}

.section .container{
position:relative;
z-index:2;
}

.section h2{
font-size:36px;
margin-bottom:10px;
}

.section p.section-desc{
color:var(--muted);
max-width:720px;
}

.grid{
display:grid;
grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
gap:24px;
margin-top:40px;
}

.card{

background:var(--card);

border:1px solid var(--border);

padding:34px;

border-radius:14px;

transition:.25s;

min-height:260px;

display:flex;

flex-direction:column;

justify-content:flex-start;

backdrop-filter:blur(6px);

}

.card:hover{
transform:translateY(-6px);
border-color:var(--primary);
}

.card h3{
margin-top:0;
margin-bottom:10px;
}

.card p{
color:var(--muted);
line-height:1.5;
}

.product{
margin-top:40px;
padding:40px;
background:linear-gradient(145deg,#0f172a,#111c44);
border-radius:14px;
border:1px solid var(--border);
}

.integration-title{
font-size:clamp(34px,5vw,52px);
line-height:1.1;
margin-bottom:20px;
letter-spacing:-1px;
}

.integration-lead{
max-width:720px;
font-size:18px;
color:var(--muted);
margin-bottom:50px;
}

.integration-copy{
max-width:760px;
font-size:18px;
color:var(--muted);
line-height:1.7;
}

.integration-link-wrap{
margin-top:30px;
}

.integration-link{
display:inline-block;
padding:14px 26px;
border-radius:8px;
text-decoration:none;
}

.contact-section{
min-height:auto;
padding:70px 0;
}

.text-center{
text-align:center;
}

.contact-desc{
text-align:center;
max-width:600px;
margin:0 auto 40px auto;
}

.contact-grid{
display:flex;
justify-content:center;
}

.contact-card{
max-width:420px;
width:100%;
text-align:center;
padding:40px;
}

.contact-email{
font-size:18px;
font-weight:500;
}

footer{

margin-top:80px;

padding:40px 0;

background:#030712;

border-top:1px solid var(--border);

}

.footer-inner{

display:flex;

justify-content:space-between;

flex-wrap:wrap;

color:var(--muted);

font-size:14px;

}

/* MOBILE TYPOGRAPHY */

@media (max-width:768px){

.section h2{
font-size:28px;
}

.hero p{
font-size:16px;
}

}
