
*{margin:0;padding:0;box-sizing:border-box;font-family:'Inter',sans-serif}
body{
  background:#0b0b0b;
  color:#fff;
  min-height:100vh;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:flex-start;
}

.wrap{
  width:92%;
  max-width:1100px;
  margin-top:90px;
}

.grid{
  display:grid;
  grid-template-columns: 1fr 1.2fr;
  gap:60px;
  align-items:center;
}

/* IMAGE SIDE */
.visual{
  width:100%;
  aspect-ratio: 3/4;
  border-radius:18px;
  overflow:hidden;
  background:#141414;
  display:flex;
  align-items:center;
  justify-content:center;
}

.visual img{
  width:100%;
  height:100%;
  object-fit:cover;
}

/* TEXT SIDE */
.content{
  max-width:520px;
}

.eyebrow{
  font-size:15px;
  color:#888;
  margin-bottom:14px;
}

h1{
  font-size:38px;
  line-height:1.2;
  margin-bottom:18px;
  letter-spacing:-1px;
}

p{
  color:#aaa;
  line-height:1.7;
  margin-bottom:14px;
}

.highlight{color:#6ba36f}

.actions{
  margin-top:26px;
  display:flex;
  gap:12px;
  justify-content:center;
}

.btn{
  padding:10px 18px;
  border-radius:999px;
  text-decoration:none;
  font-size:14px;
  border:1px solid #2a2a2a;
  color:#ccc;
}

.btn.primary{
  background:#6ba36f;
  color:#0b0b0b;
  border:none;
}

.btn:hover{opacity:0.85}

@media(max-width:768px){
  .grid{grid-template-columns:1fr;gap:40px}
  h1{font-size:30px}
}

/* NAVBAR */
.nav{
  position:fixed;
  top:0;
  left:0;
  width:100%;
  display:flex;
  justify-content:center;
  padding:20px 0;
  z-index:100;
  background:rgba(11,11,11,0.6); /* ADD THIS */
  backdrop-filter: blur(10px);
}

.nav img{
  height:28px;
  width:auto;
  opacity:0.9;
}

.collab{
  margin-top:70px;
  text-align:center;
}

.collab h3{
  font-size:18px;
  color:#aaa;
  margin-bottom:14px;
  font-weight:400;
}

.logos{
  display:flex;
  justify-content:center;
  gap:40px;
  flex-wrap:wrap;
}

.logos img{
  height:40px;
  opacity:0.7;
  transition:0.3s ease;
}

.logos img:hover{
  opacity:1;
  transform:scale(1.05);
}

.logos img:hover{
  opacity:1;
}

/* FEATURE */
.featured-project {
  margin-top:80px;
  max-width:700px;
  margin-left:auto;
  margin-right:auto;
}

.fp-header {
  display:flex;
  justify-content:space-between;
  align-items:center;
  cursor:pointer;
  padding:14px 0;
  border-bottom:1px solid #222;
  color:#ccc;
}

.fp-toggle {
  font-size:18px;
  transition:0.3s;
}

.fp-content {
  max-height:0;
  overflow:hidden;
  transition:0.4s ease;
  opacity:0;
}

.fp-content.active {
  max-height:500px;
  opacity:1;
  margin-top:20px;
}

.fp-content h3 {
  margin-bottom:10px;
}

.fp-content p {
  color:#aaa;
  margin-bottom:10px;
  line-height:1.6;
}

.fp-tag {
  font-size:12px;
  color:#6ba36f;
}

/* FOOTER */
    .footer {
      margin-top:120px;
      padding:40px 0 30px;
      text-align:center;
      color:#666;
      font-size:13px;
    }

    .footer span {
      color:#aaa;
    }

    body.light .footer { color:#888; }
