:root{
  --bg0:#05070E;
  --txt:rgba(255,255,255,.94);
  --muted:rgba(255,255,255,.76);
  --muted2:rgba(255,255,255,.60);

  --barH:88px;
  --radius:18px;
}

*{ box-sizing:border-box; }
html,body{ height:100%; }
html{
  scroll-behavior:smooth;
}
body{
  margin:0;
  background:var(--bg0);
  color:var(--txt);
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
}

.wrap{
  width:min(1120px, 92vw);
  margin:0 auto;
}

a{ color:inherit; }

/* Buttons / links */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding: 12px 16px;
  border-radius: 14px;
  text-decoration:none;
  font-weight: 900;
  letter-spacing:.2px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.06);
  transition: transform .12s ease, background .12s ease, border-color .12s ease;
}
.btn:hover{ transform: translateY(-1px); }
.btn:active{ transform: translateY(0); }

.btn--primary{
  background: rgba(255,255,255,.92);
  color: rgba(0,0,0,.92);
  border-color: rgba(255,255,255,.50);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
  border-color: rgba(255,255,255,.16);
}
.btn--full{ width:100%; }

.textlink{
  color: rgba(255,255,255,.80);
  text-decoration:none;
  border-bottom: 1px solid rgba(255,255,255,.22);
  padding-bottom:2px;
  font-weight: 900;
}
.textlink:hover{
  color: rgba(255,255,255,.94);
  border-bottom-color: rgba(255,255,255,.40);
}

/* TOPBAR */
.topbar{
  position:fixed;
  top:0; left:0; right:0;
  height:var(--barH);
  z-index:100;
  background: rgba(0,0,0,.45);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar__inner{
  height:100%;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 16px;
}

/* BRAND (readable) */
.brand{
  display:flex;
  align-items:center;
  gap: 14px;
  text-decoration:none;
  min-width: 220px;
}

.brand__mark{
  width: 52px;
  height: 52px;
  border-radius: 16px;
  padding: 7px;
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.14);
  box-shadow:
    0 12px 32px rgba(0,0,0,.55),
    inset 0 1px 0 rgba(255,255,255,.10);
}
.brand__mark img{
  width:100%;
  height:100%;
  display:block;
  object-fit:cover;
  border-radius: 12px;
}

.brand__text{ display:flex; flex-direction:column; line-height:1.05; }
.brand__name{
  font-weight: 1000;
  letter-spacing: .18em;
  font-size: 19px;
}
.brand__sub{
  margin-top: 6px;
  display:flex;
  align-items:center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: .08em;
  color: rgba(255,255,255,.74);
  font-weight: 900;
}
.brand__subStrong{
  color: rgba(255,255,255,.90);
  letter-spacing: .14em;
}
.brand__sep{ opacity:.65; }
.brand__tag{ opacity:.90; }

.topbar__nav{
  display:flex;
  align-items:center;
  gap: 16px;
}
.navlink{
  color: rgba(255,255,255,.78);
  text-decoration:none;
  font-weight: 900;
  letter-spacing:.02em;
}
.navlink:hover{ color: rgba(255,255,255,.94); }

/* HERO */
.hero{
  position:relative;
  min-height: 100vh;
  padding-top: var(--barH);
  overflow:hidden;
  background: #000;
}

.hero__bg{
  position:absolute;
  inset:0;
  background-image: url("assets/scr_5.jpg");
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}

.hero__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1200px 700px at 18% 22%, rgba(0,0,0,.78), transparent 58%),
    linear-gradient(180deg, rgba(0,0,0,.35), rgba(0,0,0,.84));
}

.hero__content{
  position:relative;
  padding: clamp(52px, 8vw, 96px) 0 120px;
}

.hero__badge{
  display:inline-block;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.26);
  backdrop-filter: blur(10px);
  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .22em;
  color: rgba(255,255,255,.82);
}

.hero__title{
  margin: 14px 0 10px;
  font-size: clamp(40px, 5.2vw, 68px);
  line-height: .96;
  letter-spacing: -0.8px;
  text-transform: uppercase;
  text-shadow: 0 22px 70px rgba(0,0,0,.70);
}

.hero__lead{
  margin: 0;
  max-width: 68ch;
  font-size: 18px;
  line-height: 1.65;
  color: rgba(255,255,255,.86);
  text-shadow: 0 16px 50px rgba(0,0,0,.70);
}

.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items:center;
  margin-top: 18px;
}

.hero__hint{
  margin-top: 34px;
  display:inline-flex;     
  align-items:center;
  gap: 10px;

  font-size: 12px;
  font-weight: 1000;
  letter-spacing: .22em;

  color: rgba(255,255,255,.80);
  text-decoration:none;    

  cursor:pointer;
  user-select:none;
}

.hero__hint:hover{
  color: rgba(255,255,255,.95);
}

.hero__hint:hover .chev{
  border-color: rgba(255,255,255,.35);
  background: rgba(255,255,255,.06);
}
.chev{
  width: 30px;
  height: 30px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.22);
  background: rgba(0,0,0,.20);
  position: relative;
}
.chev::before{
  content:"";
  position:absolute;
  left: 50%;
  top: 50%;
  width: 10px;
  height: 10px;
  border-right: 2px solid rgba(255,255,255,.78);
  border-bottom: 2px solid rgba(255,255,255,.78);
  transform: translate(-50%,-56%) rotate(45deg);
}

.hero__fade{
  position:absolute;
  left:0; right:0; bottom:0;
  height: 140px;
  background: linear-gradient(180deg, transparent, rgba(5,7,14,1));
}

/* PROJECT */
.project{
  padding: 56px 0 28px;
  background: rgba(5,7,14,1);
}
.project__wrap{ padding-top: 6px; }
.project__logo{
  width: min(840px, 92vw);
  height:auto;
  display:block;
  margin: 0 0 18px;
  filter: drop-shadow(0 18px 60px rgba(0,0,0,.7));
}

.project__grid{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 16px;
  align-items:start;
}

.panel{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.22);
  border-radius: 22px;
  padding: 22px;
  backdrop-filter: blur(12px);
}
.panel p{
  margin: 0 0 14px;
  color: var(--muted);
  line-height: 1.75;
  font-size: 15.5px;
}
.panel strong{ color: rgba(255,255,255,.95); }
.finalline{
  margin-top: 18px;
  text-align:center;
  font-size: 22px;
  font-weight: 950;
  color: rgba(255,255,255,.95);
}

.side{ display:flex; flex-direction:column; gap: 14px; }
.card{
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.18);
  border-radius: 22px;
  padding: 18px;
  backdrop-filter: blur(12px);
}
.card__title{
  font-weight: 1000;
  margin-bottom: 12px;
  letter-spacing:.02em;
}
.card__text{
  margin: 0 0 12px;
  color: rgba(255,255,255,.72);
  line-height: 1.6;
  font-size: 13.5px;
}

.chips{ display:flex; flex-wrap:wrap; gap: 10px; }
.chip{
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.06);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 13px;
  color: rgba(255,255,255,.74);
  font-weight: 850;
}

/* GALLERY */
.gallery{ padding: 18px 0 0; }
.gallery__head{ padding: 20px 0 18px; }
.gallery__kicker{
  font-size: 12px;
  letter-spacing: .22em;
  font-weight: 1000;
  color: rgba(255,255,255,.62);
}
.gallery__title{
  margin: 10px 0 8px;
  font-size: 34px;
  letter-spacing: -0.6px;
}
.gallery__sub{
  margin:0;
  color: rgba(255,255,255,.70);
  line-height: 1.65;
}

.shot{
  position: relative;
  min-height: 86vh;
  overflow:hidden;
  border-top: 1px solid rgba(255,255,255,.08);
  display:flex;
  align-items:flex-end;
}
.shot__bg{
  position:absolute;
  inset:0;
  background-image: var(--bg);
  background-size: cover;
  background-position: center;
  transform: translateZ(0);
}
.shot__overlay{
  position:absolute;
  inset:0;
  background:
    radial-gradient(1000px 700px at 20% 20%, rgba(0,0,0,.10), transparent 55%),
    linear-gradient(180deg, rgba(0,0,0,.06), rgba(0,0,0,.76));
}
.shot__content{
  position:relative;
  padding: 0 0 34px;
}
.shot__tag{
  display:inline-block;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(0,0,0,.22);
  backdrop-filter: blur(10px);
  border-radius: 999px;
  padding: 8px 10px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.78);
  font-weight: 950;
}
.shot__title{
  margin: 12px 0 14px;
  font-size: 36px;
  letter-spacing: -0.6px;
  text-shadow: 0 18px 52px rgba(0,0,0,.70);
}

/* FOOTER */
.footer{
  padding: 26px 0 88px;
  border-top: 1px solid rgba(255,255,255,.08);
  background: rgba(0,0,0,.16);
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap: 16px;
  flex-wrap: wrap;
}
.footer__brand{ font-weight: 1000; letter-spacing:.02em; }
.footer__muted{ color: rgba(255,255,255,.62); font-size: 12.5px; margin-top: 4px; }

/* Bottom support bar */
.supportbar{
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 120;
  pointer-events: none;
}
.supportbar__inner{
  pointer-events:auto;
  width: min(980px, 100%);
  margin: 0 auto;
  padding: 10px 12px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.12);
  background: rgba(0,0,0,.32);
  backdrop-filter: blur(14px);
  color: rgba(255,255,255,.72);
  font-size: 13px;
}

/* Responsive */
@media (max-width: 980px){
  .topbar{ height: 82px; }
  :root{ --barH:82px; }

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

  .navlink{ display:none; } 
}

@media (max-width: 640px){
  .brand__name{ font-size: 17px; }
  .brand__sub{ font-size: 12px; }

  .shot{ min-height: 76vh; }
  .shot__title{ font-size: 28px; }
}
