:root{
  --accent:#0b6b5b;
  
  --glass: rgba(255,255,255,0.9);
  --maxwidth:1100px;
  --card-radius:12px;
  font-family: system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial;
}

*{box-sizing:border-box}
body{
  margin:0;
  min-height:100vh;
  background-image: url('backgroundimage.jpeg');
  background-size:cover;
  background-position:center;
  color:#111;
}

/* dim background for readability */
.bg-overlay{
  position:fixed;
  inset:0;
  background:var(--bg-overlay);
  z-index:0;
}

/* header */
.site-header{
  position:relative;
  z-index:3;
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 20px;
  max-width:var(--maxwidth);
  margin:0 auto;
}
.logo-wrap{display:flex;align-items:center;gap:12px}
.logo{width:64px;height:64px;object-fit:contain;border-radius:8px;background:white;padding:6px}
.brand h1{margin:0;font-size:18px;color:white}
.brand p{margin:0;font-size:12px;color:#e6e6e6}

.main-nav a{
  color:#fff;
  margin:0 10px;
  text-decoration:none;
  padding:8px 12px;
  border-radius:8px;
  opacity:0.95;
}
.main-nav a.active, .main-nav a:hover{background:rgba(255,255,255,0.12)}

.contact-icons a{margin-left:8px}
.icon{width:22px;height:22px;fill:#fff;opacity:0.95}

/* main container */
.container{position:relative;z-index:2;max-width:var(--maxwidth);margin:20px auto;padding:20px;color:#fff}

/* hero */
.hero{display:flex;gap:20px;align-items:center;justify-content:space-between;margin-top:20px}
.hero-left{flex:1;backdrop-filter: blur(6px);background:rgba(255,255,255,0.04);padding:20px;border-radius:12px}
.hero-left h2{margin:0 0 10px;font-size:28px}
.lead{font-weight:600;margin-bottom:10px}
.hero-actions{margin-top:12px}
.btn{background:var(--accent);color:#fff;padding:10px 16px;border-radius:8px;text-decoration:none;margin-right:10px;display:inline-block}
.btn.ghost{background:transparent;border:1px solid rgba(255,255,255,0.2)}

.hero-right{width:320px;display:flex;justify-content:center}
.hero-device{max-width:100%;height:auto;border-radius:10px;box-shadow:0 6px 20px rgba(0,0,0,0.5)}

/* features */
.features{display:flex;gap:12px;margin-top:20px}
.features article{flex:1;background:var(--glass);padding:14px;border-radius:10px;color:#111}

/* staff */
.staff-preview{margin-top:24px;color:#fff}
.staff-grid{display:flex;gap:12px;flex-wrap:wrap}
.staff{width:120px;text-align:center}
.staff img{width:100%;height:200px;object-fit:cover;border-radius:8px}
.staff figcaption{font-size:13px;margin-top:6px}
.staff figcaption span{display:block;font-size:12px;color:#ddd}



/* footer */
.site-footer{display:flex;justify-content:space-between;gap:20px;margin-top:32px;padding:14px;border-radius:8px;background:rgba(0,0,0,0.4)}
.flogo{width:60px;height:60px;object-fit:contain}

@media (max-width:880px){
  .hero{flex-direction:column}
  .hero-right{width:100%}
  .main-nav{display:none}
}
