:root{
  --bg:#0b1220;
  --bg2:#0f1a33;
  --card:#111b2e;
  --text:#eaf0ff;
  --muted:#b8c4e6;
  --line:rgba(255,255,255,.12);
  --accent:#59b3ff;
  --accent2:#7c5cff;
  --good:#33d18a;
  --warning:#ffb020;
  --shadow: 0 10px 30px rgba(0,0,0,.35);
  --radius: 18px;
  --max: 1120px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:'Inter',  ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--text);
  background: radial-gradient(1200px 600px at 10% -10%, rgba(89,179,255,.25), transparent 55%),
              radial-gradient(900px 500px at 90% 0%, rgba(124,92,255,.22), transparent 55%),
              linear-gradient(180deg, var(--bg), #060a14 70%);
  line-height:1.55;
}

a{color:inherit; text-decoration:none}
.container{max-width:var(--max); margin:0 auto; padding:0 20px}
.section{padding:80px 0}
.badge{
  display:inline-flex; gap:10px; align-items:center;
  padding:8px 12px; border:1px solid var(--line);
  border-radius:999px; color:var(--muted);
  background: rgba(255,255,255,.03);
  font-size:13px;
}
.badge .dot{width:8px;height:8px;border-radius:50%;background:var(--good); box-shadow:0 0 0 6px rgba(51,209,138,.15)}
h1,h2,h3{line-height:1.15; margin:0 0 14px}

/* Enhanced h1 style for visual impact */
h1{
  font-size:52px; 
  letter-spacing:-.03em;
  background: linear-gradient(135deg, var(--text) 50%, var(--muted) 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
/* Slightly increased h2 size and contrast */
h2{
  font-size:36px; 
  letter-spacing:-.015em;
  color: #f7faff;
}

h3{font-size:20px}
p{margin:0 0 14px; color:var(--muted)}
.small{font-size:13px; color:var(--muted)}
.kicker{color:var(--muted); text-transform:uppercase; letter-spacing:.14em; font-size:12px}

.nav{
  position:sticky; top:0; z-index:1000;
  backdrop-filter: blur(10px);
  background: rgba(6,10,20,.55);
  border-bottom:1px solid var(--line);
}
.nav-inner{
  display:flex; align-items:center; justify-content:space-between;
  height:74px;
}
.brand{
  display:flex; align-items:center; gap:14px; min-width:240px;
}
.brand img{height:40px; width:auto}
.brand .title{
  display:flex; flex-direction:column; gap:2px;
}
.brand .title strong{font-size:16px; letter-spacing:.01em}
.brand .title span{font-size:12px; color:var(--muted)}
.menu{
  display:flex; gap:18px; align-items:center;
}
.menu a{
  padding:10px 10px; border-radius:12px; color:var(--muted);
}
.menu a:hover{background:rgba(255,255,255,.05); color:var(--text)}
.nav-cta{
  display:flex; gap:10px; align-items:center;
}
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:10px;
  border-radius:14px;
  padding:12px 14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
  color:var(--text);
  box-shadow:none;
  transition:transform .08s ease, background .2s ease, border-color .2s ease;
  font-weight:600;
}
.btn:hover{background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.18)}
.btn:active{transform:translateY(1px)}
.btn.primary{
  background: linear-gradient(135deg, rgba(89,179,255,.95), rgba(124,92,255,.95));
  border-color: rgba(255,255,255,.20);
}
.btn.primary:hover{filter:brightness(1.04)}
.btn.ghost{background:transparent}
.btn.small{padding:10px 12px; font-size:14px}

.mobile-toggle{
  display:none;
  width:42px; height:42px;
  border-radius:14px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.03);
}

.hero{
  padding:76px 0 10px;
}
.hero-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:34px;
  align-items:center;
}
.hero-card{
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding:22px;
  box-shadow: var(--shadow);
}
.hero-card .stat{
  display:flex; justify-content:space-between; align-items:flex-start;
  padding:12px 0;
  border-top:1px dashed rgba(255,255,255,.14);
}
.hero-card .stat:first-of-type{border-top:none}
.hero-card .stat strong{font-size:14px}
.hero-card .stat span{font-size:13px; color:var(--muted)}

.hero-actions{display:flex; gap:12px; flex-wrap:wrap; margin-top:16px}
/* Primary CTA glow effect */
.hero-actions .btn:first-child{
  box-shadow: 0 0 16px 4px rgba(89,179,255,.5), 0 0 0 1px rgba(255,255,255,.3); 
}
/* Distinct border for secondary CTA */
.hero-actions .btn:nth-child(2){
  border-color: var(--accent); 
  background: rgba(89,179,255,.08);
}


.grid3{
  display:grid; grid-template-columns: repeat(3, 1fr);
  gap:18px;
}
.card{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding:18px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, border-color 0.15s ease; /* Added border-color transition */
}
/* Lift, shadow, and accented border effect on card hover */
.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.5);
  background: rgba(255,255,255,.04); 
  border-color: var(--accent); /* Default hover border color */
}

.card p{margin-bottom:0}
.icon{
  width:42px; height:42px;
  border-radius: 14px;
  background: rgba(89,179,255,.12);
  border: 1px solid rgba(89,179,255,.22);
  display:flex; align-items:center; justify-content:center;
  margin-bottom:10px;
}
.icon svg{width:22px; height:22px; fill: none; stroke: var(--accent); stroke-width:2}

/* Specific styling for the DevOps/Automation card (3rd child) */
.grid3 .card:nth-child(3) .icon { 
  background: rgba(124,92,255,.12);
  border: 1px solid rgba(124,92,255,.22);
}
.grid3 .card:nth-child(3) .icon svg {
  stroke: var(--accent2); /* Use the purple accent */
}
/* Apply purple accent border to the third card on hover */
.grid3 .card:nth-child(3):hover {
  border-color: var(--accent2); 
}


.split{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:18px; align-items:start;
}
.list{
  margin:0; padding-left:18px; color:var(--muted)
}
.list li{margin:8px 0}

.logo-row{
  display:flex; flex-wrap:wrap; gap:16px;
  align-items:center;
}
.logo-tile{
  background: rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius: 16px;
  padding:14px 16px;
  display:flex; align-items:center; justify-content:center;
  height:76px;
  min-width: 170px;
}
.logo-tile img{
  max-height:40px;
  max-width: 140px;
  filter: grayscale(100%) brightness(1.25);
  opacity:.9;
  transition:filter .18s ease, opacity .18s ease;
}
.logo-tile:hover img{
  filter:none;
  opacity:1;
}

.case{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:18px;
}
.case .card{padding:22px}
.case .meta{
  display:flex; gap:10px; flex-wrap:wrap;
  margin:12px 0 4px;
}
.pill{
  font-size:12px; color:var(--muted);
  padding:6px 10px; border-radius:999px;
  border:1px solid var(--line);
  background: rgba(255,255,255,.02);
}

.products{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:18px;
}
.product{
  display:flex; gap:18px; align-items:center;
}
.product img{width:120px; height:auto; border-radius:14px; border:1px solid var(--line); background:#fff}
.product h3{margin:0 0 6px}
.product p{margin:0}

.contact{
  display:grid; grid-template-columns: 1fr 1fr;
  gap:18px;
}
.contact .card{padding:22px}
.contact a.link{
  color: var(--accent);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer{
  padding:34px 0;
  border-top:1px solid var(--line);
  background: rgba(0,0,0,.12);
}
.footer-grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap:18px;
  align-items:start;
}
.footer small{color:var(--muted)}
/* Brighter horizontal rule for better separation */
hr.sep{
  border:none;
  border-top:1px solid rgba(255,255,255,.20); 
  margin:18px 0;
}

@media (max-width: 980px){
  h1{font-size:38px}
  .hero-grid{grid-template-columns:1fr; gap:18px}
  .grid3{grid-template-columns:1fr}
  .split{grid-template-columns:1fr}
  .case{grid-template-columns:1fr}
  .products{grid-template-columns:1fr}
  .contact{grid-template-columns:1fr}
  .menu{display:none}
  .mobile-toggle{display:inline-flex; align-items:center; justify-content:center}
  .nav-cta{display:none}
  .menu.mobile-open{
    display:flex;
    position:absolute;
    left:0; right:0;
    top:74px;
    padding:12px 16px 16px;
    background: rgba(6,10,20,.92);
    border-bottom:1px solid var(--line);
    flex-wrap:wrap;
  }
}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:20px; top:20px; width:auto; height:auto;
  padding:10px 12px;
  background:#000; border:1px solid var(--line); border-radius:12px;
  z-index:2000;
}