
:root{
  --bg:#03070d;
  --bg2:#07101a;
  --blue:#008cff;
  --blue2:#006bff;
  --red:#ff1717;
  --orange:#ff5c10;
  --green:#00d144;
  --purple:#831cff;
  --text:#f7f9fc;
  --muted:#cfd5df;
  --soft:#8d99a9;
  --line:rgba(255,255,255,.16);
  --line2:rgba(255,255,255,.08);
  --project-bg:#d7d7d7;
  --project-card:#f3f3f3;
  --project-text:#141414;
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  background:
    radial-gradient(circle at 70% 38%, rgba(0,90,160,.16), transparent 40%),
    radial-gradient(circle at 10% 15%, rgba(0,70,140,.12), transparent 34%),
    #03070d;
  color:var(--text);
}
a{color:inherit;text-decoration:none}
img{display:block;max-width:100%}
:focus-visible{outline:3px solid #67b8ff;outline-offset:4px}
.container{width:min(1440px, calc(100% - 72px)); margin-inline:auto}

/* Compact first screen */
.home-body{
  min-height:100vh;
  overflow:auto;
}
.site-header{
  height:78px;
  display:flex;
  align-items:center;
  position:relative;
  z-index:10;
}
.header-inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}
.logo{
  display:flex;
  align-items:center;
  gap:13px;
  font-size:28px;
  font-weight:900;
  letter-spacing:-.04em;
}
.logo-chip{
  width:48px;
  height:48px;
  border:2px solid var(--blue);
  position:relative;
  display:grid;
  place-items:center;
  border-radius:4px;
}
.logo-chip::before{
  content:"";
  width:21px;
  height:21px;
  border:2px solid var(--blue);
  box-shadow:0 0 18px rgba(0,140,255,.55);
}
.logo-chip::after{
  content:"";
  position:absolute;
  inset:-9px;
  background:
    linear-gradient(var(--blue),var(--blue)) 50% 0/2px 8px no-repeat,
    linear-gradient(var(--blue),var(--blue)) 50% 100%/2px 8px no-repeat,
    linear-gradient(var(--blue),var(--blue)) 0 50%/8px 2px no-repeat,
    linear-gradient(var(--blue),var(--blue)) 100% 50%/8px 2px no-repeat;
}
.logo span:last-child em{
  color:var(--blue);
  font-style:normal;
}
.main-nav{
  display:flex;
  align-items:center;
  gap:36px;
  color:#e3e7ee;
  font-size:14px;
  letter-spacing:.02em;
}
.main-nav a{
  position:relative;
  padding:27px 0 22px;
}
.main-nav a.active,
.main-nav a:hover{
  color:var(--blue);
}
.main-nav a.active::after{
  content:"";
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  height:2px;
  background:var(--blue);
}
.mobile-menu{display:none;position:relative}
.mobile-menu summary{
  display:flex;
  align-items:center;
  gap:12px;
  min-height:44px;
  padding:8px 12px;
  border:1px solid var(--line);
  border-radius:8px;
  cursor:pointer;
  list-style:none;
  font-weight:700;
}
.mobile-menu summary::-webkit-details-marker{display:none}
.menu-icon,.menu-icon::before,.menu-icon::after{
  display:block;
  width:18px;
  height:2px;
  background:currentColor;
  border-radius:2px;
}
.menu-icon{position:relative}
.menu-icon::before,.menu-icon::after{content:"";position:absolute;left:0}
.menu-icon::before{top:-6px}
.menu-icon::after{top:6px}
.mobile-menu nav{
  position:absolute;
  top:calc(100% + 8px);
  right:0;
  width:min(280px,calc(100vw - 28px));
  display:grid;
  padding:8px;
  background:#0b1625;
  border:1px solid rgba(255,255,255,.22);
  border-radius:12px;
  box-shadow:0 20px 50px rgba(0,0,0,.4);
  z-index:20;
}
.mobile-menu nav a{padding:12px 14px;border-radius:8px}
.mobile-menu nav a:hover,.mobile-menu nav a[aria-current="page"]{background:#123451;color:#74c0ff}

.home-screen{
  min-height:calc(100vh - 78px);
  display:grid;
  grid-template-rows:1fr auto;
  gap:12px;
  padding:36px 0 22px;
}
.hero-grid{
  display:grid;
  grid-template-columns:.43fr .57fr;
  align-items:center;
  gap:28px;
  min-height:0;
}
.hero-copy{
  padding-left:4px;
  align-self:center;
}
.eyebrow{
  color:var(--blue);
  font-size:14px;
  letter-spacing:.025em;
  text-transform:uppercase;
  margin-bottom:24px;
}
.hero-title{
  font-size:clamp(34px, 3.2vw, 54px);
  line-height:1.22;
  letter-spacing:-.045em;
  margin:0;
  max-width:570px;
}
.blue{color:var(--blue2)}
.short-line{
  width:42px;
  height:2px;
  background:var(--blue);
  margin:28px 0 28px;
}
.hero-text{
  max-width:470px;
  color:#e3e7ed;
  line-height:1.8;
  font-size:17px;
  margin:0;
}
.hero-text .blue{color:var(--blue)}
.cta{
  margin-top:26px;
  display:inline-flex;
  align-items:center;
  gap:20px;
  border:1px solid var(--blue);
  border-right-color:var(--red);
  border-radius:6px;
  padding:17px 22px;
  color:#fff;
  font-size:16px;
  letter-spacing:.02em;
  background:rgba(0,20,45,.30);
  box-shadow:0 0 0 1px rgba(255,0,0,.12) inset;
}
.hero-actions{display:flex;align-items:center;flex-wrap:wrap;gap:18px}
.text-link,.inline-link,.contact-email{color:#73bdff;text-decoration:underline;text-underline-offset:4px}
.text-link{margin-top:26px;font-weight:700}
.cta:hover,.nav-button:not(.disabled):hover{border-color:#74c0ff;background:rgba(0,110,210,.18)}
.text-link:hover,.inline-link:hover,.contact-email:hover{color:#fff}
.cta .arrow{
  font-size:30px;
  line-height:1;
  color:var(--blue);
}
.hero-visual{
  position:relative;
  min-height:0;
  display:flex;
  align-items:center;
  justify-content:center;
  overflow:visible;
}
.hero-visual img{
  width:min(100%, 930px);
  height:auto;
  max-height:min(61vh, 585px);
  object-fit:contain;
  filter:drop-shadow(0 28px 40px rgba(0,0,0,.55));
}
.feature-row{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:0;
  border-top:1px solid transparent;
}
.feature{
  display:grid;
  grid-template-columns:62px 1fr;
  gap:20px;
  align-items:start;
  min-height:94px;
  padding:8px 28px;
  border-right:1px solid rgba(255,255,255,.16);
}
.feature:last-child{border-right:0}
.ficon{
  width:58px;
  height:58px;
  display:grid;
  place-items:center;
}
.ficon svg{width:54px;height:54px}
.feature h3{
  margin:2px 0 8px;
  font-size:16px;
  font-weight:650;
  letter-spacing:.01em;
}
.feature p{
  margin:0;
  color:#d0d5df;
  line-height:1.55;
  font-size:14px;
}
.color-line{
  width:24px;
  height:2px;
  margin-top:12px;
}
.b-blue{background:var(--blue)}
.b-red{background:var(--red)}
.b-orange{background:var(--orange)}
.b-purple{background:var(--purple)}

/* Inner pages */
.inner-body{
  min-height:100vh;
  overflow:auto;
}
.inner-main{
  padding:44px 0 70px;
}
.page-title{
  font-size:clamp(36px,4.6vw,70px);
  letter-spacing:-.06em;
  line-height:1;
  margin:28px 0 14px;
}
.page-lead{
  color:#cdd4df;
  line-height:1.75;
  font-size:17px;
  max-width:780px;
}
.cards-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
  margin-top:34px;
}
.project-card{
  border:1px solid var(--line2);
  border-radius:16px;
  overflow:hidden;
  background:rgba(8,16,27,.75);
  box-shadow:0 20px 60px rgba(0,0,0,.25);
  transition:.2s ease;
}
.project-card:hover{
  transform:translateY(-4px);
  border-color:rgba(0,140,255,.55);
}
.project-card-img{
  height:210px;
  background:#121a25;
}
.project-card-img img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.project-card-body{
  padding:20px;
}
.project-kicker{
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.14em;
  font-size:11px;
  font-weight:800;
  margin-bottom:10px;
}
.project-card h3{
  margin:0 0 10px;
  font-size:20px;
  line-height:1.28;
}
.project-card p{
  color:#b9c4d0;
  line-height:1.65;
  margin:0;
  font-size:14px;
}
.card-link{
  display:inline-block;
  margin-top:16px;
  color:var(--blue);
  font-weight:800;
}
.simple-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-top:34px;
}
.simple-card{
  border:1px solid var(--line2);
  background:rgba(8,16,27,.74);
  border-radius:16px;
  padding:24px;
}
.simple-card h3{
  margin:0 0 10px;
  font-size:19px;
}
.simple-card p{
  margin:0;
  color:#c6ced9;
  line-height:1.65;
}
.contact-grid{display:grid;grid-template-columns:1.35fr .65fr;gap:20px;margin-top:40px}
.contact-card,.contact-note{padding:clamp(24px,3vw,42px);border:1px solid var(--line);border-radius:20px;background:rgba(8,16,27,.74)}
.contact-card h2,.contact-note h2{font-size:clamp(24px,2.6vw,38px);margin:0 0 16px}
.contact-card p{color:#c6ced9;line-height:1.7;max-width:620px}
.contact-card .eyebrow{margin-bottom:14px}
.contact-email{display:inline-block;margin-top:18px;font-size:clamp(20px,2vw,28px);font-weight:750;overflow-wrap:anywhere}
.contact-note ul{padding-left:20px;margin:18px 0 0;color:#c6ced9;line-height:2}

/* Project pages */
.project-page{
  background:var(--project-bg);
  color:var(--project-text);
}
.project-page .site-header{
  background:rgba(217,217,217,.88);
  border-bottom:1px solid rgba(0,0,0,.12);
}
.project-page .logo span:last-child{color:#111}
.project-page .main-nav{color:#333}
.project-page .main-nav a.active,
.project-page .main-nav a:hover{color:#005dbe}
.project-page .mobile-menu summary{border-color:rgba(0,0,0,.25)}
.project-main{
  padding:44px 0 68px;
}
.project-hero-grid{
  display:grid;
  grid-template-columns:.92fr 1.08fr;
  gap:30px;
  align-items:center;
}
.project-title{
  font-size:clamp(36px,4.8vw,68px);
  line-height:1;
  letter-spacing:-.06em;
  margin:16px 0;
}
.project-lead{
  color:#454545;
  line-height:1.75;
  font-size:18px;
}
.project-visual{
  overflow:hidden;
  border-radius:24px;
  border:1px solid rgba(0,0,0,.14);
  background:#ececec;
  box-shadow:0 22px 55px rgba(0,0,0,.13);
}
.project-visual img{
  width:100%;
  height:360px;
  object-fit:cover;
}
.project-layout{
  display:grid;
  grid-template-columns:1.05fr .55fr;
  gap:22px;
  margin-top:28px;
}
.panel{
  background:var(--project-card);
  border:1px solid rgba(0,0,0,.12);
  border-radius:24px;
  padding:26px;
  box-shadow:0 16px 44px rgba(0,0,0,.08);
}
.panel h2{
  margin:0 0 14px;
  font-size:28px;
  letter-spacing:-.04em;
}
.panel p{
  color:#383838;
  line-height:1.75;
  margin:0 0 14px;
}
.pills{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
  margin-top:18px;
}
.pill{
  border:1px solid rgba(0,0,0,.13);
  background:#fff;
  border-radius:999px;
  padding:9px 12px;
  font-size:13px;
  font-weight:750;
}
.metric-grid{
  display:grid;
  gap:12px;
}
.metric-box{
  background:#fff;
  border:1px solid rgba(0,0,0,.12);
  border-radius:18px;
  padding:16px;
}
.metric-box span{
  display:block;
  color:#777;
  font-size:12px;
  margin-bottom:8px;
  text-transform:uppercase;
  letter-spacing:.12em;
}
.metric-box b{font-size:25px}
.nav-buttons{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:24px;
}
.nav-button{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(0,0,0,.14);
  background:#fff;
  border-radius:999px;
  padding:11px 16px;
  color:#111;
  font-weight:850;
}
.nav-button.disabled{
  opacity:.45;
  cursor:not-allowed;
}
.footer{
  color:#8590a0;
  border-top:1px solid var(--line2);
  padding:26px 0;
  font-size:13px;
}
.footer a:hover{text-decoration:underline}
.home-footer{border-top-color:var(--line2)}

/* Make the home fit shorter monitors */
@media (max-height:850px){
  .site-header{height:68px}
  .home-screen{
    min-height:calc(100vh - 68px);
    padding:22px 0 14px;
  }
  .logo{font-size:24px}
  .logo-chip{width:42px;height:42px}
  .main-nav{gap:28px;font-size:13px}
  .eyebrow{margin-bottom:18px;font-size:13px}
  .hero-title{font-size:clamp(30px,3vw,46px)}
  .short-line{margin:22px 0}
  .hero-text{font-size:15px;line-height:1.72;max-width:430px}
  .cta{margin-top:20px;padding:14px 19px;font-size:14px}
  .feature{min-height:82px;padding:5px 22px;grid-template-columns:52px 1fr;gap:16px}
  .ficon{width:50px;height:50px}
  .ficon svg{width:48px;height:48px}
  .feature h3{font-size:14px;margin-bottom:6px}
  .feature p{font-size:13px;line-height:1.45}
  .color-line{margin-top:9px}
  .hero-visual img{max-height:min(60vh,520px)}
}
@media (max-width:1100px){
  .container{width:min(100% - 40px,1440px)}
  .main-nav{display:none}
  .mobile-menu{display:block}
  .hero-grid{grid-template-columns:1fr}
  .home-screen{min-height:auto}
  .hero-visual img{max-height:none}
  .feature-row{grid-template-columns:repeat(2,1fr);gap:12px}
  .feature{border:1px solid var(--line2);border-radius:14px}
  .cards-grid{grid-template-columns:repeat(2,1fr)}
  .simple-grid{grid-template-columns:repeat(2,1fr)}
  .contact-grid{grid-template-columns:1fr}
}
@media (max-width:680px){
  .logo{font-size:22px}
  .logo-chip{width:36px;height:36px}
  .hero-title{font-size:34px}
  .feature-row,.cards-grid,.simple-grid,.project-hero-grid,.project-layout{grid-template-columns:1fr}
  .feature{grid-template-columns:50px 1fr}
  .container{width:min(100% - 28px,1440px)}
  .project-visual img{height:260px}
  .hero-actions{align-items:flex-start;gap:10px}
  .text-link{margin-top:8px}
}

/* Renders are illustrative and should remain fully visible. */
.hero-visual picture{display:block;width:100%}
.project-card-img,.project-visual{background:#050b13}
.project-card-img,.project-visual{position:relative}
.project-card-img::after,.project-visual::after{
  content:"Illustrative render";
  position:absolute;
  right:12px;
  bottom:12px;
  padding:5px 8px;
  border-radius:5px;
  background:rgba(0,0,0,.72);
  color:#fff;
  font-size:11px;
  letter-spacing:.02em;
}
.project-card-img picture,.project-visual picture{display:block;width:100%;height:100%}
.project-card-img img,.project-visual img{width:100%;height:100%;object-fit:contain}
