:root{
  --bg:#07120d;
  --bg2:#0b1d13;
  --card:#10271a;
  --card2:#14311f;
  --text:#f5f7f6;
  --muted:#c8d1cb;
  --green:#00e676;
  --green2:#25d366;
  --line:rgba(255,255,255,.10);
  --shadow:0 20px 60px rgba(0,0,0,.35);
  --radius:22px;
  --max:1200px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:Poppins, Arial, sans-serif;
  background:
    radial-gradient(circle at top, rgba(37,211,102,.14), transparent 35%),
    linear-gradient(180deg, var(--bg), var(--bg2));
  color:var(--text);
  overflow-x:hidden;
}
a{color:inherit;text-decoration:none;cursor:pointer}
img{max-width:100%;display:block}
.container{
  width:min(var(--max), calc(100% - 32px));
  margin:0 auto;
}

.topbar{
  position:sticky;
  top:0;
  z-index:1000;
  backdrop-filter:blur(16px);
  background:rgba(3,8,5,.72);
  border-bottom:1px solid var(--line);
}
.topbar-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:16px;
  padding:16px 0;
}
.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-weight:800;
  cursor:pointer;
  min-width:fit-content;
}
.brand-logo{
  width:42px;
  height:42px;
  object-fit:contain;
  flex-shrink:0;
  border-radius:50%;
  box-shadow:0 10px 25px rgba(37,211,102,.25);
}
.brand small{
  display:block;
  color:var(--muted);
  font-weight:500;
  text-transform:none;
  letter-spacing:0;
  line-height:1.1;
}
.navlinks{
  display:flex;
  flex-wrap:wrap;
  justify-content:flex-end;
  gap:11px;
  color:var(--muted);
  font-size:.95rem;
}
.navlinks a{
  position:relative;
  padding-bottom:4px;
}
.navlinks a::after{
  content:"";
  position:absolute;
  left:0;
  bottom:0;
  width:100%;
  height:2px;
  background:var(--green);
  transform:scaleX(0);
  transform-origin:left;
  transition:transform .25s ease;
}
.navlinks a:hover::after{transform:scaleX(1)}

.hero{
  min-height:100vh;
  display:grid;
  align-items:center;
  position:relative;
  padding:96px 0 80px;
  background:
    linear-gradient(90deg, rgba(6,17,11,.88), rgba(6,17,11,.55)),
    url('https://images.unsplash.com/photo-1501785888041-af3ef285b470?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
}
.hero::after{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 20% 30%, rgba(37,211,102,.12), transparent 25%),
    linear-gradient(180deg, rgba(0,0,0,.12), rgba(0,0,0,.45));
  pointer-events:none;
}
.hero-content{
  position:relative;
  z-index:1;
  max-width:860px;
}
.eyebrow{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 16px;
  border:1px solid rgba(255,255,255,.16);
  border-radius:999px;
  background:rgba(255,255,255,.06);
  color:#e9f4ed;
  margin-bottom:22px;
  font-size:.92rem;
}
.eyebrow-dot{
  width:10px;
  height:10px;
  border-radius:50%;
  background:var(--green);
  box-shadow:0 0 0 6px rgba(37,211,102,.14);
}
.hero h1{
  font-size:clamp(2.6rem, 6vw, 5.4rem);
  line-height:.96;
  letter-spacing:-.04em;
  text-transform:uppercase;
  margin:0 0 18px;
}
.hero h1 .accent{color:var(--green)}
.hero p{
  max-width:780px;
  color:#e6eee9;
  font-size:1.05rem;
  line-height:1.8;
  margin:0 0 28px;
}
.hero-actions{
  display:flex;
  flex-wrap:wrap;
  gap:14px;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:14px 22px;
  border-radius:14px;
  font-weight:700;
  border:1px solid transparent;
  transition:.25s ease;
  cursor:pointer;
}
.btn-primary{
  background:linear-gradient(135deg, var(--green), #9efc7d);
  color:#08140d;
  box-shadow:0 18px 40px rgba(37,211,102,.18);
}
.btn-secondary{
  background:rgba(255,255,255,.07);
  border-color:rgba(255,255,255,.16);
  color:var(--text);
}
.btn:hover{
  transform:translateY(-2px);
}

.section{
  padding:88px 0;
}
.section-head{
  max-width:900px;
  margin-bottom:28px;
}
.section-title{
  font-size:clamp(1.9rem, 3.6vw, 3.2rem);
  line-height:1.06;
  margin:0 0 14px;
  letter-spacing:-.03em;
}
.section-subtitle{
  color:var(--muted);
  line-height:1.85;
  font-size:1rem;
  margin:0;
}

.split{
  display:grid;
  grid-template-columns:1.05fr .95fr;
  gap:28px;
  align-items:start;
}
.grid{
  display:grid;
  gap:18px;
}
.grid-2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid-3{grid-template-columns:repeat(3, minmax(0,1fr))}
.grid-4{grid-template-columns:repeat(4, minmax(0,1fr))}

.panel, .card, .stat, .mini{
  background:linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.03));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:26px;
  box-shadow:var(--shadow);
}
.panel h3, .card h3, .mini h4{
  margin:0 0 10px;
}
.panel p, .card p, .mini p{
  color:var(--muted);
  line-height:1.9;
  margin:0;
}

.visual{
  min-height:100%;
  border-radius:var(--radius);
  overflow:hidden;
  border:1px solid rgba(255,255,255,.12);
  box-shadow:var(--shadow);
  display:flex;
  align-items:flex-end;
  background:
    linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03)),
    url('https://images.unsplash.com/photo-1470770841072-f978cf4d019e?auto=format&fit=crop&w=1200&q=80') center/cover no-repeat;
}
.visual .overlay{
  width:100%;
  background:linear-gradient(180deg, transparent, rgba(0,0,0,.78));
  padding:28px;
}
.visual .overlay h3{
  margin:0 0 8px;
  font-size:1.3rem;
}
.visual .overlay p{
  margin:0;
  color:#dfe8e2;
  line-height:1.8;
}

.stats{
  display:grid;
  grid-template-columns:repeat(3, minmax(0, 1fr));
  gap:18px;
  margin-top:24px;
}
.stat span{
  display:block;
  font-size:1.7rem;
  font-weight:800;
  color:var(--green);
  margin-bottom:6px;
}
.stat p{
  margin:0;
  color:var(--muted);
  line-height:1.7;
}

.card-head{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:12px;
  margin-bottom:12px;
}
.pill{
  display:inline-flex;
  align-items:center;
  padding:7px 11px;
  border-radius:999px;
  font-size:.82rem;
  background:rgba(37,211,102,.10);
  color:#aef4bd;
  border:1px solid rgba(37,211,102,.20);
}

details.card{
  cursor:pointer;
}
details.card summary{
  list-style:none;
  font-weight:700;
  font-size:1.05rem;
}
details.card summary::-webkit-details-marker{display:none}
details.card .detail{
  margin-top:12px;
  color:#dfe8e2;
  line-height:1.8;
}

.team-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:18px;
}
.member{
  position:relative;
  overflow:hidden;
  min-height:390px;
  border-radius:22px;
  border:1px solid var(--line);
  background:#0a1810;
  box-shadow:var(--shadow);
}
.member img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.60) contrast(1.08);
  transform:scale(1);
  transition:transform .55s ease, filter .55s ease;
}
.member::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.08), rgba(0,0,0,.88));
  pointer-events:none;
}
.member .overlay{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:22px;
  transform:translateY(24px);
  transition:transform .45s ease;
}
.member h3{
  margin:0 0 6px;
  font-size:1.15rem;
}
.member p{
  margin:0;
  color:#dde7df;
  line-height:1.7;
  font-size:.95rem;
}
.member:hover img{
  transform:scale(1.08);
  filter:brightness(.8) contrast(1.08);
}
.member:hover .overlay{
  transform:translateY(0);
}

.callout{
  background:linear-gradient(135deg, rgba(37,211,102,.10), rgba(255,255,255,.04));
  border:1px solid rgba(37,211,102,.20);
  border-radius:24px;
  padding:28px;
  box-shadow:var(--shadow);
}
.callout p{
  color:#eef7f1;
  line-height:1.9;
  margin:0;
}

.footer{
  padding:38px 0 60px;
  border-top:1px solid var(--line);
  color:var(--muted);
}

.gallery-strip{
  height:240px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  background:url('https://images.unsplash.com/photo-1483683804023-6ccdb62f86ef?auto=format&fit=crop&w=1600&q=80') center/cover no-repeat;
  border:1px solid rgba(255,255,255,.12);
}

.image-panel{
  height:100%;
  min-height:340px;
  border-radius:24px;
  overflow:hidden;
  box-shadow:var(--shadow);
  border:1px solid rgba(255,255,255,.12);
  background:#000;
}

.image-panel video{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

.small-gap{margin-top:12px}

.page{
  display:none;
}
.page.active{
  display:block;
}
.hero.page.active{
  display:grid;
}

.work-grid{
  display:grid;
  grid-template-columns:repeat(4, minmax(0,1fr));
  gap:22px;
}

.work-card{
  position:relative;
  min-height:430px;
  border-radius:24px;
  overflow:hidden;
  border:1px solid rgba(255,255,255,.10);
  background:#000;
  box-shadow:var(--shadow);
}

.work-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  filter:brightness(.72) contrast(1.02);
  transition:transform .55s ease, filter .55s ease;
}

.work-card::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.84));
  pointer-events:none;
}

.work-content{
  position:absolute;
  left:0;
  right:0;
  bottom:0;
  z-index:2;
  padding:22px;
}

.work-number{
  width:48px;
  height:48px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  margin-bottom:14px;
  background:rgba(34, 60, 34, .72);
  border:1px solid rgba(255,255,255,.12);
  color:#cfe9d3;
  font-weight:700;
  font-size:1rem;
  box-shadow:0 10px 24px rgba(0,0,0,.25);
}

.work-content h3{
  margin:0 0 12px;
  font-size:1.15rem;
  line-height:1.2;
  letter-spacing:-.02em;
}

.work-content p{
  margin:0;
  color:#d7e2db;
  font-size:.95rem;
  line-height:1.75;
}

.work-card:hover img{
  transform:scale(1.06);
  filter:brightness(.84) contrast(1.04);
}

@media (max-width: 1100px){
  .work-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media (max-width: 980px){
  .split, .grid-2, .grid-3, .grid-4, .team-grid, .stats{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 720px){
  .topbar-inner{
    flex-direction:column;
    align-items:flex-start;
  }
  .navlinks{
    gap:10px 14px;
  }
  .split, .grid-2, .grid-3, .grid-4, .team-grid, .stats, .work-grid{
    grid-template-columns:1fr;
  }
  .hero{
    min-height:92vh;
  }
  .section{
    padding:72px 0;
  }
}