
:root{
  --bg:#030d17;
  --bg2:#061421;
  --text:#f5f7fb;
  --muted:#cbd5df;
  --orange:#ff7417;
  --line:rgba(255,255,255,.18);
}
*{box-sizing:border-box}
html,body{margin:0;min-height:100%;background:#030d17;color:var(--text);font-family:Arial,Helvetica,sans-serif}
body{
  background:
    radial-gradient(circle at 78% 17%,rgba(255,116,23,.16),transparent 28%),
    radial-gradient(circle at 62% 58%,rgba(19,119,178,.16),transparent 36%),
    linear-gradient(180deg,#030b14 0%,#06121f 52%,#030d17 100%);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none}
.site-header{
  height:86px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:0 52px;
  border-bottom:1px solid rgba(255,255,255,.16);
  background:rgba(3,10,18,.88);
}
.brand{display:flex;align-items:center;gap:12px;font-size:32px;font-weight:800;letter-spacing:-1.3px}
.brand img{width:54px;height:54px;object-fit:contain;filter:drop-shadow(0 8px 18px rgba(255,116,23,.25))}
.brand strong{color:var(--orange)}
nav{display:flex;gap:32px;font-size:14px;color:#e9eff6}
nav a:hover{color:var(--orange)}
.contact{
  font-size:16px;
  font-weight:700;
  padding:20px 0 18px;
  border-bottom:2px solid var(--orange);
  min-width:150px;
  text-align:center;
}
main{max-width:1600px;margin:0 auto}
.hero{
  min-height:650px;
  display:grid;
  grid-template-columns:42% 58%;
  align-items:center;
  padding:55px 70px 10px;
  position:relative;
}
.hero-text{position:relative;z-index:2;max-width:670px}
h1{
  margin:0 0 28px;
  font-size:68px;
  line-height:1.02;
  letter-spacing:-3px;
  text-shadow:0 10px 35px rgba(0,0,0,.35);
}
h1 span,.built h2 span{color:var(--orange)}
.line{width:50px;height:2px;background:var(--orange);margin:0 0 28px}
.hero-text p{
  margin:0 0 34px;
  max-width:640px;
  font-size:21px;
  line-height:1.58;
  color:#edf4fb;
}
.hero-text strong{color:#fff}
.button{
  display:inline-flex;
  align-items:center;
  gap:22px;
  padding:20px 30px;
  background:linear-gradient(135deg,#ff7114,#ff861f);
  border-radius:7px;
  color:#fff;
  font-size:17px;
  font-weight:800;
  box-shadow:0 18px 45px rgba(255,116,23,.28);
}
.button span{font-size:32px;line-height:0}
.hero-image{
  min-height:600px;
  align-self:stretch;
  background:
    linear-gradient(90deg,#06121f 0%,rgba(6,18,31,.72) 8%,rgba(6,18,31,0) 21%),
    url("../assets/worldmap-squirrel.png") center center / contain no-repeat;
  filter:drop-shadow(0 22px 35px rgba(0,0,0,.35));
}
.built{
  padding:0 70px 20px;
  margin-top:-4px;
}
.built h2{
  text-align:center;
  font-size:28px;
  margin:0 0 26px;
  letter-spacing:-.5px;
}
.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.cards article{
  min-height:178px;
  border:1px solid var(--line);
  border-radius:6px;
  background:linear-gradient(180deg,rgba(9,23,37,.82),rgba(4,14,25,.92));
  padding:34px 34px 28px;
  display:grid;
  grid-template-columns:72px 1fr;
  column-gap:18px;
  align-items:start;
}
.icon{
  color:var(--orange);
  font-size:48px;
  line-height:.9;
  font-weight:300;
}
.cards h3{font-size:20px;margin:0 0 16px}
.cards i{display:block;width:38px;height:2px;background:var(--orange);margin:0 0 18px}
.cards p{color:#d3dbe5;font-size:16px;line-height:1.55;margin:0}
footer{
  padding:28px 70px 40px;
  display:flex;
  justify-content:center;
  gap:24px;
  color:#b8c1cd;
  font-size:17px;
}
footer b{color:var(--orange)}
@media(max-width:1050px){
  .site-header{padding:0 24px}
  nav{display:none}
  .brand{font-size:25px}
  .brand img{width:45px;height:45px}
  .hero{grid-template-columns:1fr;padding:42px 26px 10px}
  h1{font-size:48px}
  .hero-text p{font-size:18px}
  .hero-image{min-height:430px;background-size:cover;background-position:center}
  .built{padding:20px 26px}
  .cards{grid-template-columns:1fr}
  .cards article{grid-template-columns:58px 1fr;padding:26px}
  footer{padding:28px 26px;flex-wrap:wrap;gap:12px}
}
@media(max-width:560px){
  .contact{display:none}
  h1{font-size:38px}
  .button{width:100%;justify-content:center}
  .hero-image{min-height:300px}
}
