.inner-hero {
  min-height: 720px;
  background: #050505;
  color: #fff;
  padding: 110px 7vw 80px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.inner-hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.02) brightness(1.08);
  transform: scale(1.01);
}
.inner-hero:after {
  content: "";
  inset: 0;
  position: absolute;
  pointer-events: none;
  background:
    linear-gradient(
      90deg,
      rgba(2, 4, 8, 0.82) 0%,
      rgba(2, 4, 8, 0.58) 49%,
      rgba(2, 4, 8, 0.18) 100%
    ),
    linear-gradient(0deg, rgba(2, 4, 8, 0.46), transparent 52%);
}
.inner-tag {
  color: var(--yellow);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 12px;
  font-weight: 700;
  position: relative;
  z-index: 2;
}
.inner-hero h1 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(55px, 7vw, 105px);
  line-height: 0.93;
  letter-spacing: -0.07em;
  margin: 22px 0 28px;
  position: relative;
  z-index: 2;
}
.inner-hero h1 em {
  font-style: normal;
  color: var(--yellow);
}
.inner-hero > p {
  max-width: 610px;
  color: #aaa;
  font-size: 18px;
  line-height: 1.65;
  position: relative;
  z-index: 2;
}
.inner-scroll {
  position: absolute;
  z-index: 3;
  right: 7vw;
  bottom: 45px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
}
.inner-scroll b {
  color: var(--yellow);
  margin-left: 20px;
}
.services-detail {
  padding: 130px 7vw;
  background: #f5f5f2;
}
.service-intro {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  column-gap: 3vw;
  row-gap: 42px;
  align-items: end;
  margin-bottom: 85px;
  padding: 46px 48px 50px;
  overflow: hidden;
  background: rgba(255,255,255,.78);
  border: 1px solid rgba(7,26,56,.12);
  border-top: 3px solid var(--blue);
  box-shadow: 0 24px 70px rgba(7,26,56,.055);
}
.service-intro::before {
  content: "360°";
  position: absolute;
  top: 5px;
  right: 26px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23,102,216,.07);
  font: 800 clamp(90px, 13vw, 190px)/1 "Manrope", sans-serif;
  letter-spacing: -.08em;
  pointer-events: none;
}
.service-intro::after {
  content: "";
  position: absolute;
  left: 48px;
  bottom: 0;
  width: 92px;
  height: 4px;
  background: var(--yellow);
}
.service-intro > .section-mark {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
}
.service-intro > h2 {
  position: relative;
  z-index: 1;
  grid-column: 1 / span 8;
}
.service-intro > p {
  position: relative;
  z-index: 1;
  grid-column: 9 / -1;
  margin: 0 0 4px;
}
.service-intro h2,
.portfolio-intro h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 5vw, 74px);
  line-height: 1.02;
  letter-spacing: -0.055em;
  margin: 0;
}
.service-intro h2 em,
.portfolio-intro h2 em {
  font-style: normal;
  color: var(--blue);
}
.service-intro p,
.portfolio-intro p {
  font-size: 17px;
  line-height: 1.75;
  color: #606060;
}
.service-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  counter-reset: expertise-card;
}
.detail-row {
  counter-increment: expertise-card;
  position: relative;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 34px 38px 36px;
  overflow: hidden;
  color: #090909;
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(7,26,56,.11);
  box-shadow: 0 18px 50px rgba(7,26,56,.035);
  transition:
    transform .45s cubic-bezier(.2,.8,.2,1),
    border-color .35s ease,
    box-shadow .45s ease,
    background .35s ease;
}
.detail-row::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: var(--blue);
  transform: scaleY(.18);
  transform-origin: top;
  transition: transform .45s cubic-bezier(.2,.8,.2,1);
}
.detail-row::after {
  content: "0" counter(expertise-card);
  position: absolute;
  right: 28px;
  bottom: -23px;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23,102,216,.07);
  font: 800 112px/1 "Manrope", sans-serif;
  letter-spacing: -.08em;
  pointer-events: none;
}
.detail-row:nth-child(even) {
  padding: 34px 38px 36px;
}
.detail-row:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  min-height: 285px;
  display: grid;
  grid-template-columns: 80px minmax(0, .9fr) minmax(320px, 1.1fr);
  column-gap: 34px;
  align-items: start;
}
.detail-row:last-child:nth-child(odd) > span {
  grid-column: 1;
  margin: 4px 0 0;
}
.detail-row:last-child:nth-child(odd) > div {
  grid-column: 2;
}
.detail-row:last-child:nth-child(odd) > ul {
  grid-column: 3;
  margin: 7px 58px 0 0;
}
.detail-row > span {
  font-size: 13px;
  letter-spacing: 0.16em;
  color: var(--blue);
  font-weight: 700;
  margin-bottom: 42px;
}
.detail-row h3 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(29px, 2.5vw, 40px);
  line-height: 1.02;
  letter-spacing: -0.04em;
  margin: 0 0 16px;
}
.detail-row p {
  color: #686868;
  line-height: 1.65;
  max-width: 520px;
  margin: 0 0 30px;
}
.detail-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 9px 20px;
  list-style: none;
  margin: auto 0 0;
  padding: 0;
  color: #3f3f3f;
}
.detail-row li {
  position: relative;
  padding-left: 12px;
  font-size: 13px;
  line-height: 1.45;
}
.detail-row li::before {
  content: "";
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--yellow);
  border-radius: 50%;
}
.detail-row > b {
  position: absolute;
  top: 29px;
  right: 30px;
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  font-size: 18px;
  color: var(--blue);
  transition:
    transform 0.4s ease,
    color 0.3s ease;
}
.detail-row:nth-child(even) > b {
  right: 30px;
}
.detail-row:hover {
  background: #fff;
  border-color: rgba(23,102,216,.24);
  box-shadow: 0 25px 65px rgba(7,26,56,.08);
  transform: translateY(-4px);
}
.detail-row:hover::before {
  transform: scaleY(1);
}
.detail-row:hover > b {
  transform: translate(3px, -3px);
  color: var(--yellow);
}
.expertise-method {
  background: #050505;
  color: #fff;
  padding: 120px 7vw;
  display: grid;
  grid-template-columns: 1.05fr 0.75fr;
  gap: 10vw;
}
.method-lead h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 5.8vw, 82px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 20px 0;
}
.method-lead h2 em {
  font-style: normal;
  color: var(--yellow);
}
.method-copy > p {
  font-size: 18px;
  line-height: 1.7;
  color: #aaa;
  margin: 0 0 45px;
}
.method-copy > div {
  display: grid;
  grid-template-columns: 45px 1fr;
  padding: 20px 0;
  border-top: 1px solid #292929;
}
.method-copy > div span {
  color: var(--yellow);
  font-size: 12px;
}
.method-copy strong {
  font-size: 16px;
}
.expertise-banner {
  height: 700px;
  position: relative;
  overflow: hidden;
}
.expertise-banner > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.expertise-banner:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.88), rgba(0, 0, 0, 0.25));
}
.expertise-banner > div {
  position: absolute;
  z-index: 2;
  left: 7vw;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
}
.expertise-banner span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--yellow);
  font-size: 11px;
}
.expertise-banner h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5.7vw, 82px);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 20px 0 35px;
}
.expertise-banner h2 em {
  font-style: normal;
  color: var(--yellow);
}
.expertise-banner a {
  display: inline-flex;
  gap: 40px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 20px;
  font-weight: 700;
}
.portfolio-hero:after {
  content: "";
}
.portfolio-intro {
  padding: 125px 7vw;
  display: grid;
  grid-template-columns: 0.4fr 1.2fr 0.8fr;
  gap: 5vw;
}
.portfolio-grid {
  padding: 0 7vw 130px;
  background: #fff;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
}
.websites-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f3f5f8;
  background-image:
    linear-gradient(rgba(23, 102, 216, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 102, 216, .025) 1px, transparent 1px),
    radial-gradient(circle at 86% 13%, rgba(23, 102, 216, .08), transparent 27%);
  background-size: 46px 46px, 46px 46px, auto;
  padding: 118px 7vw 130px;
}
.websites-showcase::after {
  content: "{ 01 }\A{ 10 }\A{ 11 }";
  position: absolute;
  z-index: -1;
  right: 2vw;
  bottom: 50px;
  color: rgba(23, 102, 216, .06);
  font: 700 clamp(42px, 6vw, 90px)/.86 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  white-space: pre;
  pointer-events: none;
}
.web-code-studio {
  position: absolute;
  z-index: -1;
  top: 42px;
  right: 4vw;
  width: min(520px, 43vw);
  color: rgba(20, 75, 151, .42);
  background: rgba(255,255,255,.38);
  border: 1px solid rgba(23, 102, 216, .12);
  box-shadow: 0 24px 70px rgba(13, 38, 75, .045);
  font: 600 clamp(9px, .8vw, 12px)/1.65 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  opacity: .55;
  transform: rotate(-1.2deg);
  pointer-events: none;
}
.code-studio-bar {
  height: 34px;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 12px;
  border-bottom: 1px solid rgba(23, 102, 216, .1);
}
.code-studio-bar i { width: 6px; height: 6px; border-radius: 50%; background: rgba(23, 102, 216, .24); }
.code-studio-bar span { margin-left: 8px; color: rgba(20, 75, 151, .3); }
.code-studio-body { display: grid; padding: 13px 16px 17px; }
.code-studio-body span { white-space: nowrap; }
.code-studio-body b { display: inline-block; width: 30px; color: rgba(20, 75, 151, .18); font-weight: 500; }
.websites-heading,
.website-grid { position: relative; z-index: 1; }
.websites-heading {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 58px;
}
.websites-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 6vw, 86px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 18px 0 0;
}
.websites-heading h2 em {
  color: var(--blue);
  font-style: normal;
}
.websites-heading p {
  color: #626262;
  font-size: 17px;
  line-height: 1.7;
  margin: 0;
}
.website-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 30px 22px;
}
.website-card-featured { grid-column: 1 / -1; }
.website-card-featured .website-visual { aspect-ratio: 2.25; }
.website-card {
  display: block;
  color: #090909;
  border-top: 1px solid rgba(18, 46, 86, .16);
  padding-top: 12px;
}
.website-visual {
  aspect-ratio: 1.55;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  background: #dfe5ec;
  border: 1px solid rgba(13, 38, 75, .12);
  box-shadow: 0 16px 42px rgba(13, 38, 75, .08);
  transition: transform 0.45s cubic-bezier(.2,.8,.2,1), box-shadow 0.45s ease;
}
.website-card:hover .website-visual {
  transform: translateY(-6px);
  box-shadow: 0 24px 55px rgba(13, 25, 56, 0.16);
}
.browser-bar {
  position: absolute;
  inset: 0 0 auto;
  height: 38px;
  padding: 0 15px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid rgba(0,0,0,.08);
  z-index: 3;
  backdrop-filter: blur(12px);
}
.browser-bar i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #c8c8c8;
}
.browser-bar b {
  margin-left: 10px;
  color: #777;
  font-size: 10px;
  letter-spacing: .08em;
  font-weight: 600;
}
.website-visual > img {
  position: absolute;
  inset: 38px 0 0;
  width: 100%;
  height: calc(100% - 38px);
  object-fit: cover;
  object-position: top center;
  transition: transform .7s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.website-card:hover .website-visual > img { transform: scale(1.025); filter: saturate(1.04); }
.website-index {
  position: absolute;
  z-index: 2;
  top: 54px;
  right: 16px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(10, 31, 62, .82);
  color: #fff;
  font: 700 10px/1 "Manrope", sans-serif;
  letter-spacing: .08em;
  backdrop-filter: blur(8px);
}
.website-open {
  position: absolute;
  z-index: 2;
  right: 16px;
  bottom: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: #132644;
  font-size: 11px;
  font-weight: 800;
  box-shadow: 0 10px 30px rgba(11, 32, 63, .18);
  transform: translateY(7px);
  opacity: 0;
  transition: opacity .35s ease, transform .35s ease;
}
.website-card:hover .website-open,
.website-card:focus-visible .website-open { opacity: 1; transform: translateY(0); }
.website-meta {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: end;
  padding: 20px 2px 4px;
}
.website-meta span {
  text-transform: uppercase;
  color: #747474;
  letter-spacing: .13em;
  font-size: 10px;
}
.website-meta h3 {
  font-family: "Manrope", sans-serif;
  font-size: 27px;
  letter-spacing: -.035em;
  margin: 5px 0 0;
}
.website-meta > b {
  white-space: nowrap;
  color: var(--blue);
  font-size: 12px;
  padding-bottom: 5px;
  border-bottom: 1px solid currentColor;
}
.campaigns-showcase {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #0b1222;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    radial-gradient(circle at 12% 8%, rgba(255, 189, 23, .08), transparent 23%);
  background-size: 64px 64px, 64px 64px, auto;
  color: #fff;
  padding: 120px 7vw 135px;
}
.campaigns-showcase::after {
  content: "X  1480     Y  1024     W  1080     H  1350";
  position: absolute;
  z-index: -1;
  left: 7vw;
  bottom: 48px;
  color: rgba(255,255,255,.11);
  font: 600 10px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .16em;
  pointer-events: none;
}
.design-studio {
  position: absolute;
  z-index: -1;
  top: 44px;
  right: 4vw;
  width: min(630px, 48vw);
  height: 330px;
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.018);
  border: 1px solid rgba(255,255,255,.09);
  opacity: .42;
  pointer-events: none;
}
.design-studio-top {
  height: 34px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 12px;
  border-bottom: 1px solid rgba(255,255,255,.08);
  font: 600 8px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .12em;
}
.design-studio-top b { color: rgba(255,189,23,.8); font-weight: 600; }
.design-toolbar {
  position: absolute;
  inset: 34px auto 0 0;
  width: 36px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 19px;
  padding-top: 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  font: 500 12px/1 ui-monospace, monospace;
}
.design-canvas {
  position: absolute;
  left: 74px;
  top: 67px;
  width: 42%;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,.15);
  background-image:
    linear-gradient(90deg, transparent 49.8%, rgba(23,102,216,.36) 50%, transparent 50.2%),
    linear-gradient(transparent 49.8%, rgba(23,102,216,.36) 50%, transparent 50.2%);
}
.design-canvas::before,
.design-canvas::after,
.design-canvas i::before,
.design-canvas i::after {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  border: 1px solid rgba(255,255,255,.35);
  background: #070707;
}
.design-canvas::before { left: -4px; top: -4px; }
.design-canvas::after { right: -4px; top: -4px; }
.design-canvas i::before { left: -4px; bottom: -4px; }
.design-canvas i::after { right: -4px; bottom: -4px; }
.design-canvas span { position: absolute; left: 9px; top: -17px; font: 600 7px/1 ui-monospace, monospace; letter-spacing: .1em; }
.design-panels { position: absolute; inset: 34px 0 0 auto; width: 34%; border-left: 1px solid rgba(255,255,255,.08); }
.design-tabs { height: 38px; display: flex; align-items: center; gap: 12px; padding: 0 11px; border-bottom: 1px solid rgba(255,255,255,.08); font-size: 7px; letter-spacing: .1em; }
.design-tabs b { color: var(--yellow); }
.layer-row { display: flex; align-items: center; gap: 9px; height: 39px; padding: 0 10px; border-bottom: 1px solid rgba(255,255,255,.055); font-size: 8px; }
.layer-row i { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.04); }
.design-swatches { display: flex; gap: 7px; padding: 18px 10px; }
.design-swatches i { width: 18px; height: 18px; border: 1px solid rgba(255,255,255,.16); }
.design-swatches i:nth-child(1) { background: var(--blue); }
.design-swatches i:nth-child(2) { background: var(--yellow); }
.design-swatches i:nth-child(3) { background: #fff; }
.design-swatches i:nth-child(4) { background: #111; }
.campaigns-heading,
.campaign-grid { position: relative; z-index: 1; }
.campaigns-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 60px;
}
.campaigns-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5.7vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  margin: 18px 0 0;
}
.campaigns-heading h2 em { color: var(--yellow); font-style: normal; }
.campaigns-copy > p { color: #aaa; font-size: 17px; line-height: 1.7; margin: 0 0 30px; }
.campaign-grid { columns: 4 230px; column-gap: 16px; }
.campaign-card {
  width: 100%;
  display: block;
  break-inside: avoid;
  margin: 0 0 16px;
  padding: 0;
  border: 0;
  background: #151515;
  cursor: zoom-in;
  overflow: hidden;
}
.campaign-card img { display: block; width: 100%; height: auto; transition: transform .55s cubic-bezier(.2,.8,.2,1), opacity .35s ease; }
.campaign-card:hover img { transform: scale(1.025); opacity: .88; }
.campaign-lightbox {
  width: min(92vw, 760px);
  max-height: 92vh;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fff;
  overflow: visible;
}
.campaign-lightbox::backdrop { background: rgba(0,0,0,.9); backdrop-filter: blur(8px); }
.campaign-lightbox img { display: block; max-width: 100%; max-height: 82vh; margin: auto; object-fit: contain; }
.campaign-lightbox p { margin: 12px 0 0; text-align: center; font-size: 13px; letter-spacing: .08em; }

.inside-jgad {
  position: relative;
  isolation: isolate;
  background-color: var(--blue);
  background-image:
    linear-gradient(115deg, transparent 0 67%, rgba(4, 29, 73, .09) 67% 67.15%, transparent 67.15%),
    radial-gradient(circle at 84% 10%, rgba(255, 189, 23, .13), transparent 21%);
  color: #fff;
  padding: 82px 5vw 72px;
  overflow: hidden;
}
.inside-jgad::before {
  content: "00:00:24:12";
  position: absolute;
  z-index: -1;
  top: 48px;
  right: 5vw;
  color: rgba(255,255,255,.1);
  font: 600 clamp(34px, 6vw, 92px)/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: -.06em;
  pointer-events: none;
}
.inside-jgad::after {
  content: "REC  ●      IN  00:00      OUT  00:15      JGAD / CUT 04";
  position: absolute;
  z-index: -1;
  left: 5vw;
  right: 5vw;
  bottom: 24px;
  color: rgba(255,255,255,.12);
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 11px;
  font: 600 9px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .14em;
  pointer-events: none;
}
.inside-jgad-heading { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(280px, .55fr); gap: 8vw; align-items: end; margin-bottom: 38px; }
.inside-jgad-heading h2 { font-family: "Manrope", sans-serif; font-size: clamp(42px, 5vw, 72px); line-height: .94; letter-spacing: -.06em; margin: 16px 0 0; }
.inside-jgad-heading h2 em { color: var(--yellow); font-style: normal; }
.inside-jgad-intro p { color: rgba(255,255,255,.78); font-size: 17px; line-height: 1.7; margin: 0 0 26px; }
.inside-jgad-intro a, .inside-jgad-footer a { color: #fff; font-size: 15px; font-weight: 800; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,.4); padding-bottom: 7px; }
.inside-video-surface { border-top: 1px solid rgba(255,255,255,.32); padding-top: 22px; }
.inside-video-rail { color: rgba(255,255,255,.72); display: flex; justify-content: space-between; align-items: center; gap: 20px; padding-bottom: 28px; font-size: 10px; font-weight: 700; letter-spacing: .14em; }
.inside-video-rail b { color: var(--yellow); font-size: 16px; margin-left: 8px; }
.inside-video-grid { display: flex; flex-wrap: nowrap; justify-content: flex-start; align-items: flex-start; gap: 16px; max-width: 1160px; margin: 0 auto; overflow-x: auto; padding-bottom: 8px; scroll-snap-type: x mandatory; scrollbar-width: none; }
.inside-video-grid::-webkit-scrollbar { display: none; }
.inside-video-card { flex: 1 0 190px; width: auto; max-width: 220px; background: transparent; border: 1px solid rgba(255,255,255,.35); padding: 0; overflow: hidden; scroll-snap-align: start; }
.inside-video-card iframe { display: block; width: 100%; aspect-ratio: 9 / 16; border: 0; background: #000; }
.inside-video-card > div { display: flex; justify-content: space-between; align-items: center; gap: 12px; border-top: 1px solid rgba(255,255,255,.25); padding: 14px 13px; }
.inside-video-card span { color: rgba(255,255,255,.64); display: flex; align-items: center; gap: 8px; font-size: 9px; font-weight: 600; letter-spacing: .07em; text-transform: uppercase; }
.inside-video-card span b { color: var(--yellow); font-family: "Manrope", sans-serif; font-size: 15px; font-weight: 700; letter-spacing: -.02em; }
.inside-video-card a { color: #fff; font-size: 10px; font-weight: 700; text-decoration: none; white-space: nowrap; }
.inside-jgad-footer { border-top: 1px solid rgba(255,255,255,.28); display: flex; justify-content: space-between; align-items: center; margin-top: 28px; padding-top: 22px; }
.inside-jgad-footer p { color: rgba(255,255,255,.72); margin: 0; }
.video-reportages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 118px 7vw 130px;
  color: #fff;
  background-color: #0d1a32;
  background-image:
    linear-gradient(90deg, transparent 49.95%, rgba(255,255,255,.035) 50%, transparent 50.05%),
    radial-gradient(circle at 88% 12%, rgba(23,102,216,.2), transparent 26%);
}
.video-reportages::before {
  content: "REC   00:14:28:06    25 FPS    4K";
  position: absolute;
  z-index: -1;
  top: 52px;
  right: 7vw;
  color: rgba(255,255,255,.13);
  font: 600 9px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .14em;
}
.video-reportages-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 56px;
}
.video-reportages-heading h2 {
  margin: 18px 0 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5.7vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
}
.video-reportages-heading h2 em { color: var(--yellow); font-style: normal; }
.video-reportages-heading > p { margin: 0; color: rgba(255,255,255,.66); font-size: 17px; line-height: 1.7; }
.video-reportages-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.7fr) minmax(290px, .55fr);
  gap: 20px;
  align-items: stretch;
}
.video-reportages-player {
  min-width: 0;
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.035);
}
.video-player-frame { position: relative; background: #02050a; }
.video-player-frame::before,
.video-player-frame::after { content: ""; position: absolute; z-index: 1; width: 22px; height: 22px; pointer-events: none; }
.video-player-frame::before { top: 12px; left: 12px; border-top: 1px solid rgba(255,255,255,.45); border-left: 1px solid rgba(255,255,255,.45); }
.video-player-frame::after { right: 12px; bottom: 12px; border-right: 1px solid rgba(255,255,255,.45); border-bottom: 1px solid rgba(255,255,255,.45); }
.video-player-frame iframe { display: block; width: 100%; aspect-ratio: 16 / 9; border: 0; }
.video-player-meta {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  padding: 15px 17px;
  border-top: 1px solid rgba(255,255,255,.1);
}
.video-player-meta span { color: rgba(255,255,255,.62); font-size: 10px; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.video-player-meta span b { color: var(--yellow); margin-right: 10px; font-family: "Manrope", sans-serif; font-size: 15px; }
.video-player-meta a { color: #fff; white-space: nowrap; font-size: 11px; font-weight: 700; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 4px; }
.video-reportages-list {
  display: grid;
  grid-template-rows: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(255,255,255,.14);
}
.video-reportage-choice {
  min-width: 0;
  display: grid;
  grid-template-columns: 102px minmax(0, 1fr);
  gap: 13px;
  align-items: center;
  padding: 10px 9px;
  color: #fff;
  text-align: left;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.14);
  background: transparent;
  cursor: pointer;
  transition: background .25s ease, padding-left .25s ease;
}
.video-reportage-choice:hover,
.video-reportage-choice.active { background: rgba(255,255,255,.075); padding-left: 13px; }
.video-reportage-choice img { display: block; width: 102px; aspect-ratio: 16 / 9; object-fit: cover; filter: saturate(.72) brightness(.8); }
.video-reportage-choice.active img { filter: none; }
.video-reportage-choice span { min-width: 0; display: grid; gap: 4px; }
.video-reportage-choice b { color: var(--yellow); font: 700 14px/1 "Manrope", sans-serif; }
.video-reportage-choice small { overflow: hidden; color: rgba(255,255,255,.72); font-size: 9px; font-weight: 700; letter-spacing: .06em; text-overflow: ellipsis; text-transform: uppercase; white-space: nowrap; }
.video-reportage-choice i { color: rgba(255,255,255,.4); font-size: 9px; font-style: normal; }
.lightbox-close {
  position: absolute;
  right: 0;
  top: -38px;
  border: 0;
  background: transparent;
  color: #fff;
  font: inherit;
  cursor: pointer;
}
.photo-reportages {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #f5f5f2;
  background-image:
    linear-gradient(90deg, transparent 49.94%, rgba(10,10,10,.035) 50%, transparent 50.06%),
    radial-gradient(circle at 88% 7%, rgba(23, 102, 216, .07), transparent 22%);
  color: #0a0a0a;
  padding: 125px 7vw 135px;
}
.photo-reportages::before {
  content: "ISO 100     1/250     f/2.8     50 mm";
  position: absolute;
  z-index: -1;
  top: 66px;
  right: 7vw;
  color: rgba(10,10,10,.12);
  font: 600 10px/1 ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  letter-spacing: .13em;
  pointer-events: none;
}
.photo-reportages::after {
  content: "+";
  position: absolute;
  z-index: -1;
  top: 42px;
  left: 50%;
  width: 58px;
  height: 58px;
  color: rgba(10,10,10,.12);
  border: 1px solid rgba(10,10,10,.07);
  border-radius: 50%;
  font: 300 24px/56px ui-monospace, monospace;
  text-align: center;
  transform: translateX(-50%);
  pointer-events: none;
}
.photo-heading {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 8vw;
  align-items: end;
  margin-bottom: 72px;
}
.photo-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(45px, 5.7vw, 82px);
  line-height: .98;
  letter-spacing: -.06em;
  margin: 18px 0 0;
}
.photo-heading h2 em { color: var(--blue); font-style: normal; }
.photo-heading > p { color: #626262; font-size: 17px; line-height: 1.7; margin: 0; }
.photo-project { border-top: 1px solid #cfd1d4; padding-top: 28px; }
.photo-project + .photo-project { margin-top: 110px; }
.photo-project.maxi-project { border-top-color: rgba(249, 155, 55, .65); }
.photo-project-head {
  display: grid;
  grid-template-columns: .65fr 1fr .55fr;
  gap: 6vw;
  align-items: end;
  margin-bottom: 35px;
}
.photo-project-head span { color: var(--blue); font-size: 10px; font-weight: 800; letter-spacing: .16em; }
.photo-project-head h3 { font-family: "Manrope", sans-serif; font-size: clamp(36px, 4vw, 58px); letter-spacing: -.055em; margin: 8px 0 0; }
.photo-project-head > p { color: #626262; line-height: 1.65; margin: 0; }
.photo-project-meta { display: flex; flex-direction: column; align-items: flex-end; gap: 7px; text-align: right; }
.photo-project-meta b { font-size: 13px; }
.photo-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}
.photo-card {
  aspect-ratio: 4 / 5;
  border: 0;
  padding: 0;
  overflow: hidden;
  background: #ddd;
  cursor: zoom-in;
}
.photo-card.wide-photo { grid-column: span 2; aspect-ratio: 2 / 1; }
.photo-card img { width: 100%; height: 100%; display: block; object-fit: cover; transition: transform .6s cubic-bezier(.2,.8,.2,1), filter .35s ease; }
.photo-card:hover img { transform: scale(1.035); filter: brightness(.88); }
.portfolio-card {
  height: 620px;
  position: relative;
  overflow: hidden;
  background: #111;
  color: #fff;
}
.portfolio-card.wide {
  grid-column: span 1;
}
.portfolio-card:nth-child(3) {
  grid-column: 2;
}
.portfolio-card:nth-child(4) {
  grid-column: 1;
}
.portfolio-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.7s;
}
.portfolio-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(transparent 25%, rgba(0, 0, 0, 0.94));
}
.project-meta {
  position: absolute;
  z-index: 2;
  left: 38px;
  right: 38px;
  bottom: 35px;
}
.project-meta > span {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 11px;
  color: var(--yellow);
}
.project-meta h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(32px, 3.3vw, 50px);
  letter-spacing: -0.05em;
  margin: 10px 0;
}
.project-meta p {
  max-width: 570px;
  color: #ccc;
  line-height: 1.6;
}
.project-meta b {
  font-size: 13px;
  border-bottom: 1px solid var(--yellow);
  padding-bottom: 6px;
}
.portfolio-card > i {
  position: absolute;
  z-index: 3;
  right: 28px;
  top: 28px;
  font-style: normal;
  font-size: 12px;
}
.portfolio-card:hover > img {
  transform: scale(1.045);
}
.portfolio-statement {
  background: var(--yellow);
  padding: 120px 7vw;
}
.portfolio-statement > div {
  max-width: 1050px;
}
.portfolio-statement h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 6vw, 88px);
  line-height: 1;
  letter-spacing: -0.065em;
  margin: 20px 0;
}
.portfolio-statement p {
  font-size: 20px;
  max-width: 650px;
  line-height: 1.6;
  color: #51430d;
}
@media (max-width: 900px) {
  .inner-hero {
    min-height: 680px;
    padding: 90px 6vw 70px;
  }
  .inner-hero h1 {
    font-size: 52px;
  }
  .service-intro,
  .portfolio-intro {
    grid-template-columns: 1fr;
  }
  .service-intro {
    row-gap: 30px;
    padding: 38px;
  }
  .service-intro > .section-mark,
  .service-intro > h2,
  .service-intro > p {
    grid-column: 1;
  }
  .service-intro::after { left: 38px; }
  .services-detail,
  .portfolio-intro {
    padding: 85px 6vw;
  }
  .detail-row {
    min-height: 350px;
  }
  .detail-row:last-child:nth-child(odd) {
    grid-template-columns: 58px minmax(0, .9fr) minmax(270px, 1.1fr);
    column-gap: 22px;
  }
  .expertise-method {
    grid-template-columns: 1fr;
    padding: 85px 6vw;
  }
  .expertise-banner {
    height: 600px;
  }
  .portfolio-grid {
    grid-template-columns: 1fr;
    padding: 0 6vw 85px;
  }
  .websites-showcase { padding: 85px 6vw 95px; }
  .web-code-studio { top: 30px; right: 4vw; width: 62vw; opacity: .4; }
  .websites-showcase::after { right: -2vw; bottom: 28px; }
  .websites-heading { grid-template-columns: 1fr; gap: 24px; }
  .campaigns-showcase { padding: 85px 6vw 95px; }
  .design-studio { top: 32px; right: 3vw; width: 66vw; height: 280px; opacity: .3; }
  .campaigns-showcase::after { left: 6vw; bottom: 28px; }
  .campaigns-heading { grid-template-columns: 1fr; gap: 28px; }
  .inside-jgad-heading { grid-template-columns: 1fr; gap: 28px; }
  .video-reportages { padding: 85px 6vw 95px; }
  .video-reportages-heading { grid-template-columns: 1fr; gap: 28px; }
  .video-reportages-gallery { grid-template-columns: 1fr; }
  .video-reportages-list { grid-template-columns: repeat(5, minmax(0, 1fr)); grid-template-rows: none; }
  .video-reportage-choice { grid-template-columns: 1fr; gap: 8px; border-top: 1px solid rgba(255,255,255,.14); border-right: 1px solid rgba(255,255,255,.1); }
  .video-reportage-choice img { width: 100%; }
  .photo-reportages { padding: 85px 6vw 95px; }
  .photo-reportages::before { top: 38px; right: 6vw; }
  .photo-reportages::after { top: 22px; width: 46px; height: 46px; font-size: 19px; line-height: 44px; }
  .photo-heading, .photo-project-head { grid-template-columns: 1fr; gap: 25px; }
  .photo-project-meta { align-items: flex-start; text-align: left; }
  .photo-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .portfolio-card,
  .portfolio-card:nth-child(3),
  .portfolio-card:nth-child(4) {
    grid-column: 1;
    height: 520px;
  }
}
@media (max-width: 560px) {
  .inner-hero h1 {
    font-size: 42px;
  }
  .service-intro {
    padding: 28px 24px 34px;
    row-gap: 24px;
  }
  .service-intro::before {
    top: 16px;
    right: 18px;
    font-size: 88px;
  }
  .service-intro::after { left: 24px; width: 70px; }
  .service-intro h2 { font-size: 40px; }
  .inner-scroll {
    display: none;
  }
  .detail-row {
    min-height: 0;
    padding: 28px 24px 30px;
  }
  .detail-row:nth-child(even) {
    padding: 28px 24px 30px;
  }
  .detail-row:nth-child(even):hover,
  .detail-row:hover {
    transform: none;
  }
  .detail-row > b,
  .detail-row:nth-child(even) > b {
    right: 20px;
  }
  .detail-row > span {
    margin-bottom: 38px;
  }
  .detail-row p {
    font-size: 15px;
  }
  .service-stack {
    grid-template-columns: 1fr;
    gap: 12px;
  }
  .detail-row:last-child:nth-child(odd) {
    grid-column: auto;
    min-height: 0;
    display: flex;
  }
  .detail-row:last-child:nth-child(odd) > span {
    margin: 0 0 38px;
  }
  .detail-row:last-child:nth-child(odd) > ul {
    margin: auto 0 0;
  }
  .detail-row::after {
    right: 18px;
    bottom: -16px;
    font-size: 86px;
  }
  .portfolio-card {
    height: 460px;
  }
  .website-grid { grid-template-columns: 1fr; }
  .website-card-featured { grid-column: auto; }
  .website-card-featured .website-visual { aspect-ratio: 1.55; }
  .website-meta { align-items: center; }
  .web-code-studio { top: 22px; right: -7vw; width: 92vw; opacity: .26; transform: rotate(-1deg) scale(.88); transform-origin: top right; }
  .code-studio-body { padding: 10px 12px 13px; }
  .design-studio { top: 24px; right: -12vw; width: 96vw; height: 245px; opacity: .2; transform: scale(.86); transform-origin: top right; }
  .design-canvas { left: 62px; top: 60px; }
  .design-toolbar { gap: 14px; padding-top: 16px; }
  .campaign-grid { columns: 2 150px; gap: 12px; }
  .campaign-card { margin-bottom: 12px; }
  .inside-jgad { padding: 68px 6vw 60px; }
  .inside-jgad::before { top: 30px; right: 6vw; font-size: 12vw; opacity: .7; }
  .inside-jgad::after { left: 6vw; right: 6vw; bottom: 17px; overflow: hidden; white-space: nowrap; }
  .inside-video-surface { margin-right: -6vw; overflow: hidden; padding-top: 18px; }
  .inside-video-rail { margin-right: 6vw; padding-bottom: 20px; font-size: 9px; }
  .inside-video-grid { flex-wrap: nowrap; justify-content: flex-start; gap: 14px; max-width: none; overflow-x: auto; padding: 0 6vw 12px 0; scroll-padding-left: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .inside-video-grid::-webkit-scrollbar { display: none; }
  .inside-video-card { flex: 0 0 62vw; width: 62vw; max-width: 245px; }
  .inside-jgad-footer { align-items: flex-start; flex-direction: column; gap: 20px; }
  .video-reportages-list { display: flex; gap: 10px; margin-right: -6vw; overflow-x: auto; padding-right: 6vw; border-top: 0; scroll-snap-type: x mandatory; scrollbar-width: none; }
  .video-reportages-list::-webkit-scrollbar { display: none; }
  .video-reportage-choice { flex: 0 0 46vw; padding: 8px; border: 1px solid rgba(255,255,255,.14); scroll-snap-align: start; }
  .video-reportage-choice:hover,
  .video-reportage-choice.active { padding-left: 8px; }
  .video-player-meta { padding: 13px 14px; }
  .photo-card.wide-photo { grid-column: span 2; }
  .project-meta {
    left: 25px;
    right: 25px;
    bottom: 25px;
  }
  .expertise-banner {
    height: 560px;
  }
}
