:root{
  --bg:#000;
  --text:#f6f6f6;
  --muted:#9a9a9a;
  --line:rgba(255,255,255,.13);
  --green:#a6ff00;
  --green-soft:rgba(166,255,0,.16);
}

*{box-sizing:border-box}

html{scroll-behavior:smooth}

body{
  margin:0;
  background:var(--bg);
  color:var(--text);
  font-family:"Inter",system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
  overflow-x:hidden;
}

body::before{
  content:"";
  position:fixed;
  inset:0;
  pointer-events:none;
  background:
    radial-gradient(circle at 70% 10%, rgba(166,255,0,.12), transparent 28%),
    radial-gradient(circle at 20% 80%, rgba(255,255,255,.05), transparent 26%);
  z-index:-2;
}

.page-grid{
  position:fixed;
  inset:0;
  pointer-events:none;
  z-index:-1;
  background-image:
    linear-gradient(rgba(255,255,255,.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.035) 1px, transparent 1px);
  background-size:72px 72px;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.75), transparent 85%);
}

a{color:inherit}

.caps,
h1,
h2,
h3,
.eyebrow,
.card-label,
.card-value,
.contact-link,
.video-title,
.watch-btn,
.lang-btn{
  font-family:"Inter",sans-serif;
  font-weight:900;
  letter-spacing:-0.04em;
  text-transform:uppercase;
}

.site-header,
main,
.site-footer{
  width:min(1240px, calc(100% - 32px));
  margin:0 auto;
}

.site-header{
  min-height:92px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  border-bottom:1px solid var(--line);
}

.brand{
  display:flex;
  align-items:center;
  gap:14px;
  text-decoration:none;
}

.brand-logo{
  width:48px;
  height:48px;
  object-fit:contain;
}

.brand-name{
  color:var(--green);
  font-size:22px;
  font-weight:900;
  letter-spacing:-0.04em;
  text-transform:none;
}

.top-actions{
  display:flex;
  gap:8px;
  padding:5px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.lang-btn{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  padding:9px 12px;
  font-size:13px;
}

.lang-btn.active{
  background:var(--green);
  color:#000;
}

.section-line{
  border-bottom:1px solid var(--line);
}

.hero{
  min-height:560px;
  display:grid;
  grid-template-columns:1.15fr .85fr;
  gap:36px;
  align-items:center;
  padding:82px 0;
}

.eyebrow{
  margin:0 0 18px;
  color:var(--green);
  font-size:15px;
}

h1{
  margin:0;
  max-width:760px;
  font-size:clamp(54px, 8.4vw, 124px);
  line-height:.84;
}

h1 span{
  display:block;
}

.accent{
  color:var(--green);
}

.hero-text{
  max-width:620px;
  margin:28px 0 0;
  color:#d7d7d7;
  font-size:20px;
  line-height:1.45;
}

.contact-row{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:34px;
}

.contact-link{
  text-decoration:none;
  border:1px solid var(--line);
  padding:13px 18px;
  color:#fff;
  background:rgba(255,255,255,.03);
  transition:.22s ease;
}

.contact-link:hover{
  border-color:var(--green);
  color:#000;
  background:var(--green);
  transform:translateY(-2px);
}

.hero-card{
  justify-self:end;
  width:min(420px,100%);
  min-height:420px;
  border:0;
  background:
    linear-gradient(145deg, rgba(166,255,0,.10), transparent 42%),
    rgba(255,255,255,.015);
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  padding:34px;
  box-shadow:0 0 70px rgba(166,255,0,.08);
}

.hero-logo{
  width:220px;
  height:220px;
  object-fit:contain;
  filter:drop-shadow(0 0 24px rgba(255,255,255,.12));
}

.card-label{
  color:var(--green);
  margin:0 0 6px;
  font-size:14px;
}

.card-value{
  margin:0;
  font-size:38px;
}

.portfolio{
  padding:72px 0 80px;
}

.section-head{
  display:flex;
  align-items:end;
  justify-content:space-between;
  gap:24px;
  padding-bottom:28px;
  border-bottom:1px solid var(--line);
}

.section-head h2{
  margin:0;
  font-size:clamp(44px, 7vw, 96px);
  line-height:.9;
}

.work-section{
  padding-top:48px;
}

.category-title{
  display:flex;
  align-items:center;
  justify-content:space-between;
  margin-bottom:20px;
}

.category-title h3{
  margin:0;
  color:var(--green);
  font-size:32px;
}

.category-title span{
  color:var(--muted);
  font-weight:800;
}

.works-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0, 1fr));
  gap:22px;
}

.work-card{
  border:1px solid var(--line);
  background:rgba(255,255,255,.025);
  padding:10px;
  transition:.22s ease;
}

.work-card:hover{
  border-color:rgba(166,255,0,.8);
  box-shadow:0 0 34px rgba(166,255,0,.13);
  transform:translateY(-4px);
}

.thumb-button{
  display:block;
  width:100%;
  padding:0;
  margin:0;
  border:0;
  background:none;
  cursor:pointer;
  overflow:hidden;
}

.thumb-button img{
  display:block;
  width:100%;
  aspect-ratio:16/9;
  object-fit:cover;
  transition:.3s ease;
}

.work-card:hover .thumb-button img{
  transform:scale(1.035);
}

.video-title{
  display:block;
  margin:12px 2px 3px;
  color:#fff;
  text-decoration:none;
  font-size:17px;
  line-height:1.15;
  transition:.2s ease;
}

.video-title:hover{
  color:var(--green);
}

.site-footer{
  min-height:120px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:24px;
}

.footer-name{
  margin:0;
  color:var(--green);
  font-weight:900;
  letter-spacing:-.04em;
  font-size:28px;
}

.footer-links{
  display:flex;
  flex-wrap:wrap;
  gap:18px;
}

.footer-links a{
  color:var(--muted);
  text-decoration:none;
  transition:.2s ease;
}

.footer-links a:hover{
  color:var(--green);
}

.lightbox{
  position:fixed;
  inset:0;
  display:none;
  align-items:center;
  justify-content:center;
  z-index:100;
  padding:28px;
}

.lightbox.active{
  display:flex;
}

.lightbox-backdrop{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.86);
  backdrop-filter:blur(8px);
}

.lightbox-content{
  position:relative;
  z-index:1;
  width:min(1180px,100%);
  display:flex;
  flex-direction:column;
  align-items:center;
  animation:pop .18s ease;
}

@keyframes pop{
  from{opacity:0;transform:scale(.98)}
  to{opacity:1;transform:scale(1)}
}

.lightbox-content img{
  display:block;
  width:100%;
  max-height:76vh;
  object-fit:contain;
  border:1px solid rgba(255,255,255,.18);
  box-shadow:0 0 60px rgba(166,255,0,.13);
}

.lightbox-close{
  position:absolute;
  right:-8px;
  top:-52px;
  width:42px;
  height:42px;
  border:1px solid var(--line);
  background:#000;
  color:#fff;
  font-size:32px;
  line-height:1;
  cursor:pointer;
}

#lightboxTitle{
  margin-top:18px;
  color:#fff;
  text-align:center;
  text-decoration:none;
  font-weight:900;
  letter-spacing:-.04em;
  text-transform:uppercase;
  font-size:clamp(19px, 2.4vw, 34px);
}

#lightboxTitle:hover{
  color:var(--green);
}

.watch-btn{
  margin-top:12px;
  padding:12px 18px;
  background:var(--green);
  color:#000;
  text-decoration:none;
  font-size:14px;
}

@media (max-width: 820px){
  .site-header{
    min-height:78px;
  }

  .brand-logo{
    width:42px;
    height:42px;
  }

  .hero{
    grid-template-columns:1fr;
    padding:54px 0;
    min-height:auto;
  }

  .hero-card{
    justify-self:stretch;
    min-height:260px;
  }

  .hero-logo{
    width:150px;
    height:150px;
  }

  .works-grid{
    grid-template-columns:1fr;
  }

  .section-head{
    display:block;
  }

  .site-footer{
    align-items:flex-start;
    flex-direction:column;
    padding:28px 0;
  }
}

@media (max-width: 520px){
  .site-header,
  main,
  .site-footer{
    width:min(100% - 22px, 1240px);
  }

  h1{
    font-size:48px;
  }

  .hero-text{
    font-size:17px;
  }

  .contact-link{
    width:100%;
    text-align:center;
  }

  .category-title h3{
    font-size:26px;
  }

  .video-title{
    font-size:15px;
  }
}


.hero-name{
  color:var(--green);
}

.title-row{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin:12px 2px 3px;
}

.title-row .video-title{
  margin:0;
  flex:1;
}

.views{
  display:none;
  align-items:center;
  gap:5px;
  white-space:nowrap;
  color:var(--green);
  font-weight:900;
  letter-spacing:-0.04em;
  font-size:15px;
  line-height:1.15;
}

.views.visible{
  display:inline-flex;
}

.views::before{
  content:"◉";
  font-size:10px;
  line-height:1;
}

@media (max-width: 520px){
  .title-row{
    gap:10px;
  }

  .views{
    font-size:13px;
  }
}


/* FIXES */

.hero-name{
font-size:120px;
text-transform:none !important;
letter-spacing:-0.05em;
}

.hero-card{
border:none !important;
background:none !important;
box-shadow:none !important;
display:flex;
align-items:center;
justify-content:center;
}

.hero-card div{display:none!important;}

.hero-logo{
width:300px;
}

.icon{
display:inline-flex;
width:50px;
height:50px;
align-items:center;
justify-content:center;
border:1px solid rgba(255,255,255,0.1);
}

.icon img{
width:24px;
height:24px;
object-fit:contain;
}

.video-title{
font-weight:500 !important;
letter-spacing:0 !important;
text-transform:none !important;
font-size:15px !important;
}



/* FINAL VISUAL UPDATE */
body,
button,
a,
p,
h1,
h2,
h3,
span,
div {
  font-family: Helvetica, Arial, sans-serif !important;
}

.page-grid{
  position:fixed !important;
  inset:0 !important;
  pointer-events:none !important;
  z-index:-1 !important;
  background-image:radial-gradient(rgba(255,255,255,.16) 1px, transparent 1px) !important;
  background-size:6px 6px !important;
  opacity:.25 !important;
  mask-image:linear-gradient(to bottom, rgba(0,0,0,.95), rgba(0,0,0,.65) 70%, transparent 100%) !important;
}

.hero{
  min-height:560px !important;
  display:grid !important;
  grid-template-columns:1.15fr .85fr !important;
  align-items:center !important;
  gap:0 !important;
  padding:72px 0 !important;
}

.hero-copy{
  align-self:center !important;
  padding-right:42px !important;
}

.hero-name{
  color:#fff !important;
  text-transform:none !important;
  font-family: Helvetica, Arial, sans-serif !important;
  font-size:clamp(86px, 10vw, 148px) !important;
  line-height:.82 !important;
  letter-spacing:-0.075em !important;
  font-weight:900 !important;
  margin:0 !important;
}

.hero-card{
  border:0 !important;
  border-left:1px solid rgba(255,255,255,.10) !important;
  background:transparent !important;
  box-shadow:none !important;
  padding:0 !important;
  min-height:420px !important;
  display:flex !important;
  align-items:center !important;
  justify-content:center !important;
  align-self:center !important;
}

.hero-card > div{
  display:none !important;
}

.hero-logo{
  width:min(390px, 78%) !important;
  height:auto !important;
  max-height:390px !important;
  object-fit:contain !important;
  filter:none !important;
}

.icon{
  display:inline-flex !important;
  width:50px !important;
  height:50px !important;
  align-items:center !important;
  justify-content:center !important;
  border:1px solid rgba(255,255,255,.12) !important;
  background:rgba(255,255,255,.02) !important;
  padding:0 !important;
}

.icon img{
  width:24px !important;
  height:24px !important;
  object-fit:contain !important;
  display:block !important;
  filter:none !important;
  opacity:1 !important;
}

.video-title,
.title-row .video-title{
  font-family:"Inter", Helvetica, Arial, sans-serif !important;
  font-weight:600 !important;
  letter-spacing:0 !important;
  text-transform:none !important;
  font-size:15px !important;
  line-height:1.25 !important;
}

#lightboxTitle{
  font-family:"Inter", Helvetica, Arial, sans-serif !important;
  font-weight:700 !important;
  letter-spacing:0 !important;
  text-transform:none !important;
}

@media (max-width: 820px){
  .hero{
    grid-template-columns:1fr !important;
  }

  .hero-copy{
    padding-right:0 !important;
  }

  .hero-card{
    border-left:0 !important;
    border-top:1px solid rgba(255,255,255,.10) !important;
    min-height:260px !important;
    margin-top:36px !important;
  }

  .hero-logo{
    width:210px !important;
  }
}


/* FINAL INTER FIX */
body,
button,
a,
p,
h1,
h2,
h3,
span,
div {
  font-family:"Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif !important;
}

.brand-name{
  color:#fff !important;
  text-transform:none !important;
  letter-spacing:-0.04em !important;
  font-family:"Inter", system-ui, sans-serif !important;
}

.hero-name{
  color:var(--green) !important;
  text-transform:none !important;
  font-family:"Inter", system-ui, sans-serif !important;
  font-weight:900 !important;
  letter-spacing:-0.075em !important;
}

.hero-text{
  color:#f2f2f2 !important;
  font-size:23px !important;
  line-height:1.42 !important;
  max-width:700px !important;
}

.video-title,
.title-row .video-title{
  font-family:"Inter", system-ui, sans-serif !important;
  font-weight:600 !important;
  letter-spacing:0 !important;
  text-transform:none !important;
}



/* FINAL V4 FIXES */

.top-bar{
  width:min(1240px, calc(100% - 32px));
  margin:0 auto;
  height:78px;
  display:flex;
  align-items:center;
  justify-content:flex-end;
  border-bottom:1px solid var(--line);
}

.top-actions{
  display:flex;
  gap:8px;
  padding:5px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}

.lang-btn{
  appearance:none;
  border:0;
  background:transparent;
  color:var(--muted);
  cursor:pointer;
  padding:9px 12px;
  font-size:13px;
  font-family:"Inter", system-ui, sans-serif !important;
  font-weight:900;
  letter-spacing:-0.04em;
  text-transform:uppercase;
}

.lang-btn.active{
  background:var(--green);
  color:#000;
}

/* hover for contact icons */
.icon{
  transition:transform .18s ease, border-color .18s ease, background .18s ease;
}

.icon:hover{
  transform:scale(1.12);
  border-color:var(--green) !important;
  background:rgba(166,255,0,.08) !important;
}

.icon img{
  transition:transform .18s ease;
}

.icon:hover img{
  transform:scale(1.05);
}

@media (max-width: 520px){
  .top-bar{
    height:66px;
    width:min(100% - 22px, 1240px);
  }
}


/* YouTube title + views auto data */
.views::before{
  content:none !important;
}

.views{
  display:none;
  align-items:center;
  gap:6px;
  white-space:nowrap;
}

.views.visible{
  display:inline-flex;
}

.view-icon{
  width:14px;
  height:14px;
  object-fit:contain;
  display:block;
  flex:0 0 14px;
}
