:root{
  /* Logo-complementary dark theme */
  --bg0:#04070B;
  --bg1:#06111A;     /* deep ink (logo shadow tone) */
  --panel:#0A1A26;   /* dark teal-navy */
  --panel2:#0B2332;
  --text:#EAF7FF;
  --muted:#A8C3D3;
  --line:rgba(255,255,255,.08);
  --radius:18px;

  /* From logo */
  --teal:#22E0F0;
  --teal2:#03B2D2;
  --orange:#FD9E08;
  --orange2:#E1670B;

  --shadow: 0 22px 55px rgba(0,0,0,.45);
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter,system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
  color:var(--text);
  background:
    radial-gradient(1000px 700px at 20% 0%, rgba(34,224,240,.12), transparent 55%),
    radial-gradient(900px 600px at 80% 10%, rgba(253,158,8,.08), transparent 55%),
    linear-gradient(180deg, var(--bg1), var(--bg0));
}

a{color:inherit; text-decoration:none}
a:hover{opacity:.92}

.container{max-width:1100px; margin:0 auto; padding:0 20px}

.skip{
  position:absolute; left:-999px; top:auto; width:1px; height:1px; overflow:hidden;
}
.skip:focus{
  left:20px; top:14px; width:auto; height:auto;
  background:var(--panel); border:1px solid var(--line); padding:10px 12px; border-radius:12px;
  z-index:9999;
}

/* Header */
.header{
  position:sticky; top:0; z-index:50;
  backdrop-filter: blur(10px);
  background: rgba(6,17,26,.60);
  border-bottom:1px solid var(--line);
}
.nav{display:flex; align-items:center; justify-content:space-between; min-height:72px}
.brand{display:flex; align-items:center; gap:12px; min-width: 240px}
.brandLogo{
  width:34px; height:34px;
  object-fit:contain;
  filter: drop-shadow(0 12px 22px rgba(0,0,0,.35));
}
.brandText{display:flex; flex-direction:column; gap:2px}
.brandName{font-weight:800; letter-spacing:-0.02em; line-height:1}
.brandTag{color:var(--muted); font-size:12px}

.links{display:flex; align-items:center; gap:18px}
.links a{color:var(--muted); font-weight:600}
.links a.btn{color:var(--text)}

.menuBtn{
  display:none;
  width:42px; height:42px; border-radius:14px;
  border:1px solid var(--line);
  background:rgba(10,26,38,.55);
  cursor:pointer;
}
.menuBtn span{
  display:block; width:18px; height:2px; background:var(--text);
  margin:4px auto; border-radius:99px;
}

.mobileMenu{display:none; padding:10px 20px 18px; border-top:1px solid var(--line)}
.mobileMenu a{
  display:block; padding:12px 8px; color:var(--muted); font-weight:700;
  border-radius:12px;
}
.mobileMenu a:hover{background:rgba(255,255,255,.04)}
.mobileMenu a.btn{margin-top:8px}

/* Buttons (less flashy, more premium) */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 16px;
  border-radius:14px;
  font-weight:800;
  border:1px solid rgba(255,255,255,.12);
  background: linear-gradient(135deg, rgba(34,224,240,.95), rgba(253,158,8,.85));
  box-shadow: 0 16px 38px rgba(0,0,0,.35);
}
.btn:hover{transform: translateY(-1px)}
.btn:active{transform: translateY(0px)}
.btn.ghost{
  background:rgba(10,26,38,.35);
  border:1px solid var(--line);
  color:var(--text);
  box-shadow:none;
}
.btn.small{padding:9px 12px; border-radius:12px; font-weight:800}

/* Hero */
.hero{padding:60px 0 22px}
.heroGrid{display:grid; grid-template-columns: 1.1fr .9fr; gap:26px; align-items:center}

.eyebrow{
  margin:0 0 10px;
  color:var(--muted);
  font-weight:700;
  letter-spacing:.02em;
  font-size:13px;
}
h1{
  margin:0 0 12px;
  font-size:44px;
  line-height:1.08;
  letter-spacing:-0.04em;
}
.grad{
  background: linear-gradient(90deg, var(--teal), var(--orange));
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}
.subhead{
  margin:0 0 18px;
  color:var(--muted);
  font-size:16px;
  line-height:1.7;
}
.ctaRow{display:flex; gap:12px; flex-wrap:wrap}

.heroProof{
  margin-top:18px;
  display:grid;
  gap:10px;
}
.proofItem{
  border:1px solid var(--line);
  background: rgba(10,26,38,.28);
  border-radius:16px;
  padding:12px 14px;
}
.proofTitle{display:block; font-weight:900; letter-spacing:-0.01em}
.proofText{display:block; margin-top:4px; color:var(--muted); font-size:13px; line-height:1.6}

/* Visual */
.heroVisual .visualCard{
  border-radius: var(--radius);
  border:1px solid var(--line);
  background:
    radial-gradient(700px 450px at 20% 0%, rgba(34,224,240,.14), transparent 60%),
    radial-gradient(650px 420px at 90% 10%, rgba(253,158,8,.10), transparent 60%),
    rgba(10,26,38,.22);
  box-shadow: var(--shadow);
  padding:18px;
}
.visualTop{display:flex; gap:8px; flex-wrap:wrap}
.pill{
  display:inline-flex;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.18);
  color:var(--muted);
  font-weight:800;
  font-size:12px;
}
.visualCenter{
  position:relative;
  margin:18px 0 10px;
  display:flex; align-items:center; justify-content:center;
  min-height:220px;
}
.visualGlow{
  position:absolute;
  width:260px; height:260px; border-radius:999px;
  background: radial-gradient(circle, rgba(34,224,240,.18), rgba(253,158,8,.10), transparent 65%);
  filter: blur(2px);
}
.visualLogo{
  position:relative;
  width:210px;
  height:auto;
  object-fit:contain;
  filter: drop-shadow(0 22px 36px rgba(0,0,0,.55));
}
.visualNote{margin:0; color:var(--muted); font-size:12px; line-height:1.7}

/* Sections */
.section{padding:66px 0}
.sectionHead{
  display:flex; justify-content:space-between; align-items:flex-end;
  gap:18px; margin-bottom:16px;
}
.sectionHead h2{margin:0; font-size:30px; letter-spacing:-0.03em}
.sectionHead p{margin:0; color:var(--muted); max-width:520px; line-height:1.7}

.grid2{display:grid; grid-template-columns:repeat(2,1fr); gap:16px}
.card{
  border:1px solid var(--line);
  background: rgba(10,26,38,.26);
  border-radius: var(--radius);
  padding:18px;
}
.card h3{margin:0 0 8px; letter-spacing:-0.02em}
.muted{color:var(--muted)}
.tiny{font-size:12px; line-height:1.6}

.list{margin:12px 0 0; padding-left:18px; color:var(--muted); line-height:1.8}

/* Process row (simple, not boxy) */
.process{
  margin-top:18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:12px;
}
.processStep{
  display:flex; gap:12px; align-items:flex-start;
  border:1px solid var(--line);
  background: rgba(0,0,0,.12);
  border-radius:16px;
  padding:14px;
}
.stepNum{
  width:34px; height:34px; border-radius:14px;
  display:inline-flex; align-items:center; justify-content:center;
  font-weight:900;
  background: rgba(34,224,240,.12);
  border:1px solid rgba(34,224,240,.25);
  color: var(--text);
}

/* Work */
.caseTags{margin-top:12px; display:flex; gap:8px; flex-wrap:wrap}

/* About */
.aboutGrid{display:grid; grid-template-columns:1.2fr .8fr; gap:16px}
.aboutBullets{margin-top:12px; display:grid; gap:10px}
.aboutBullet{
  border:1px solid var(--line);
  background: rgba(0,0,0,.12);
  border-radius:14px;
  padding:12px 14px;
  color:var(--muted);
  font-weight:700;
}
.capGrid{display:flex; flex-wrap:wrap; gap:10px; margin-top:12px}
.cap{
  display:inline-flex; padding:9px 12px; border-radius:999px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.12);
  color:var(--muted);
  font-weight:800;
  font-size:12px;
}

/* Contact */
.contactCard{padding:18px}
.contactForm{
  display:grid;
  grid-template-columns: repeat(2, 1fr);
  gap:12px;
}
label{display:block}
label span{display:block; font-weight:800; font-size:12px; color:var(--muted); margin-bottom:8px}
input, textarea{
  width:100%;
  padding:12px 12px;
  border-radius:14px;
  border:1px solid var(--line);
  background:rgba(0,0,0,.14);
  color:var(--text);
  outline:none;
}
input:focus, textarea:focus{
  border-color: rgba(34,224,240,.35);
  box-shadow: 0 0 0 4px rgba(34,224,240,.10);
}
.fullRow{grid-column: 1 / -1}
.formRow{display:flex; gap:12px; align-items:center; flex-wrap:wrap}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  padding:22px 0;
  background: rgba(0,0,0,.18);
}
.footerGrid{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footerLeft{display:flex; align-items:center; gap:12px}
.footerLogo{width:30px; height:30px; object-fit:contain}
.footerName{font-weight:900; letter-spacing:-0.02em}

/* Responsive */
@media (max-width: 980px){
  h1{font-size:38px}
  .heroGrid{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .aboutGrid{grid-template-columns:1fr}
  .process{grid-template-columns:1fr}
  .links{display:none}
  .menuBtn{display:inline-block}
  .mobileMenu{display:block}
  .contactForm{grid-template-columns:1fr}
}
