@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600&family=Manrope:wght@500;600;700;800&display=swap");
:root {
  --yellow: #ffbd17;
  --blue: #1766d8;
  --black: #050505;
  --white: #fff;
  --soft: #f4f4f1;
  --grey: #a5a5a5;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: #fff;
  color: #0a0a0a;
  font-family: "DM Sans", sans-serif;
}
a {
  text-decoration: none;
  color: inherit;
}
.home-nav {
  height: 92px;
  padding: 0 5.5vw;
  display: flex;
  align-items: center;
  gap: 42px;
  background: #050505;
  color: #fff;
  position: relative;
  z-index: 50;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.brand {
  display: flex;
  width: 138px;
  height: 58px;
  align-items: center;
  overflow: hidden;
}
.brand img {
  width: 132px;
  height: 52px;
  object-fit: contain;
  background: #fff;
  padding: 5px 7px;
}
.home-links {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 34px;
}
.home-links a {
  font-size: 15px;
  color: #ccc;
  transition: 0.25s;
}
.home-links a:hover,
.home-links a.active {
  color: #fff;
}
.nav-cta {
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-size: 14px;
}
.nav-cta b {
  color: var(--yellow);
  margin-left: 12px;
}
.menu {
  display: none;
  background: none;
  border: 0;
}
.showcase {
  height: calc(100vh - 92px);
  min-height: 680px;
  background: #000;
  position: relative;
  overflow: hidden;
}
.home-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 1s ease,
    visibility 1s;
}
.home-slide.active {
  opacity: 1;
  visibility: visible;
}
.home-slide > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86) contrast(1.02) brightness(1.08);
}
.shade {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.48) 48%,
    rgba(0, 0, 0, 0.12) 100%
  );
}
.grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.12;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.5'/%3E%3C/svg%3E");
}
.slide-content {
  position: absolute;
  left: 7vw;
  top: 47%;
  transform: translateY(-50%);
  z-index: 3;
  color: white;
  max-width: 950px;
}
.kicker {
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 12px;
  font-weight: 700;
  color: var(--yellow);
}
.slide-content h1,
.slide-content h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(52px, 6.5vw, 102px);
  line-height: 0.94;
  letter-spacing: -0.065em;
  margin: 22px 0 28px;
  font-weight: 800;
}
.slide-content h1 em,
.slide-content h2 em {
  font-style: normal;
  color: var(--yellow);
}
.slide-content p {
  max-width: 600px;
  color: #dedede;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 34px;
}
.outline-btn {
  position: relative;
  z-index: 4;
  display: inline-flex;
  gap: 38px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  padding: 16px 19px;
  font-size: 14px;
  font-weight: 600;
  transition: 0.25s;
}
.outline-btn:hover {
  background: var(--yellow);
  color: #000;
  border-color: var(--yellow);
}
.slide-number {
  position: absolute;
  right: 6vw;
  bottom: 52px;
  color: #fff;
  z-index: 4;
  font-size: 12px;
  letter-spacing: 0.16em;
}
.slider-nav {
  position: absolute;
  z-index: 8;
  left: 7vw;
  bottom: 46px;
  display: flex;
  gap: 8px;
}
.slider-dot {
  width: 45px;
  height: 3px;
  border: 0;
  background: rgba(255, 255, 255, 0.3);
  padding: 0;
  cursor: pointer;
}
.slider-dot.active {
  background: var(--yellow);
}
.scroll-cue {
  position: absolute;
  z-index: 8;
  right: 5vw;
  top: 45%;
  color: #fff;
  display: flex;
  align-items: center;
  gap: 16px;
  transform: rotate(90deg);
  transform-origin: right;
}
.scroll-cue span {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.scroll-cue i {
  font-style: normal;
  color: var(--yellow);
}
.section-mark {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 11px;
  font-weight: 700;
  color: #2467bc;
}
.section-mark.light {
  color: var(--yellow);
}
.about-home {
  padding: 130px 7vw;
  display: grid;
  grid-template-columns: 0.5fr 1.15fr 1fr;
  gap: 6vw;
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background-color: #fafbfc;
  background-image:
    radial-gradient(circle at 86% 18%, rgba(255, 189, 23, 0.11) 0 2px, transparent 3px),
    linear-gradient(rgba(23, 102, 216, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23, 102, 216, 0.035) 1px, transparent 1px),
    radial-gradient(circle at 78% 38%, rgba(23, 102, 216, 0.055), transparent 31%);
  background-size: auto, 54px 54px, 54px 54px, auto;
}
.about-home::before {
  content: "JGAD";
  position: absolute;
  z-index: -1;
  right: -0.04em;
  bottom: -0.28em;
  font-family: "Manrope", sans-serif;
  font-size: clamp(180px, 25vw, 430px);
  font-weight: 800;
  line-height: 1;
  letter-spacing: -0.09em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(23, 102, 216, 0.07);
  text-stroke: 1px rgba(23, 102, 216, 0.07);
  pointer-events: none;
  user-select: none;
}
.about-home::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 60px;
  right: 7vw;
  width: 52px;
  height: 52px;
  border-top: 1px solid rgba(23, 102, 216, 0.28);
  border-right: 1px solid rgba(23, 102, 216, 0.28);
  pointer-events: none;
}
.about-title > span {
  font-family: Georgia, serif;
  font-size: 22px;
  font-style: italic;
  color: #888;
}
.about-title h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(42px, 4.7vw, 72px);
  line-height: 1.04;
  letter-spacing: -0.05em;
  margin: 12px 0;
}
.about-title strong {
  color: var(--blue);
}
.about-copy {
  padding-top: 42px;
}
.about-copy p {
  font-size: 17px;
  line-height: 1.75;
  color: #555;
}
.text-link {
  display: inline-flex;
  gap: 35px;
  margin-top: 20px;
  font-weight: 700;
  border-bottom: 2px solid var(--yellow);
  padding-bottom: 8px;
}
.expertise-home {
  background: #0b1222;
  color: white;
  padding: 120px 7vw;
  position: relative;
  overflow: hidden;
}
.expertise-home:before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.11) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.11) 1px, transparent 1px);
  background-size: 72px 72px;
}
.expertise-home > * {
  position: relative;
  z-index: 1;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 50px;
  margin-bottom: 65px;
}
.section-heading h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 15px 0 0;
}
.section-heading h2 em {
  font-style: normal;
  color: var(--yellow);
}
.section-heading > p {
  max-width: 430px;
  color: #aaa;
  font-size: 17px;
  line-height: 1.7;
}
.expertise-list {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}
.section-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 34px;
  padding: 16px 0 13px;
  border-top: 1px solid rgba(7,26,56,.18);
  border-bottom: 1px solid rgba(7,26,56,.18);
  color: #071a38;
  font-size: 13px;
  font-weight: 700;
  transition: color .25s ease, border-color .25s ease;
}
.section-link b { color: var(--blue); font-size: 12px; }
.section-link:hover { color: var(--blue); border-color: var(--blue); }
.expertise-home .section-link,
.video-reportages .section-link { color: #fff; border-color: rgba(255,255,255,.2); }
.expertise-home .section-link b,
.video-reportages .section-link b { color: var(--yellow); }
.expertise-home .section-link:hover,
.video-reportages .section-link:hover { color: var(--yellow); border-color: var(--yellow); }
.expertise-row {
  --card-accent: var(--yellow);
  display: grid;
  grid-column: span 4;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  gap: 24px;
  min-height: 310px;
  padding: 28px;
  overflow: hidden;
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(14, 14, 14, 0.9);
  transition:
    transform 0.35s ease,
    border-color 0.35s ease,
    background 0.35s ease;
}
.expertise-row:nth-child(2),
.expertise-row:nth-child(5) {
  --card-accent: var(--blue);
}
.expertise-row > span {
  color: var(--card-accent);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.expertise-row h3 {
  font-family: "Manrope", sans-serif;
  grid-column: 1 / -1;
  align-self: end;
  max-width: 430px;
  font-size: clamp(27px, 2.6vw, 42px);
  line-height: 0.98;
  letter-spacing: -0.055em;
  margin: 18px 0 0;
}
.expertise-row p {
  max-width: 330px;
  color: #aaa;
  line-height: 1.55;
  margin: 0;
}
.expertise-row b {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--card-accent);
  font-size: 20px;
  transition: 0.3s ease;
}
.expertise-row:after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -65px;
  width: 155px;
  height: 155px;
  border: 1px solid color-mix(in srgb, var(--card-accent) 36%, transparent);
  border-radius: 50%;
  color: transparent;
  transition: 0.35s ease;
}
.expertise-row:hover,
.expertise-row:focus-visible {
  transform: translateY(-6px);
  border-color: color-mix(in srgb, var(--card-accent) 65%, transparent);
  background: #151515;
  outline: none;
}
.expertise-row:hover b,
.expertise-row:focus-visible b {
  border-color: var(--card-accent);
  background: var(--card-accent);
  color: #050505;
  transform: translate(5px, -5px);
}
.expertise-row:hover:after,
.expertise-row:focus-visible:after {
  transform: scale(1.12);
  background: color-mix(in srgb, var(--card-accent) 8%, transparent);
}
.process-home {
  padding: 120px 7vw;
  background: var(--yellow);
  position: relative;
  overflow: hidden;
}
.section-heading.dark .section-mark {
  color: #111;
}
.section-heading.dark h2 em {
  color: #fff;
}
.section-heading.dark > p {
  color: #443815;
}
.process-progress {
  width: 100%;
  height: 2px;
  overflow: hidden;
  background: rgba(0, 0, 0, 0.16);
}
.process-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: #050505;
  transform: scaleX(0);
  transform-origin: left;
}
.process-home.is-active .process-progress i {
  animation: process-line 1.25s cubic-bezier(0.2, 0.75, 0.25, 1) forwards;
}
.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.step {
  padding: 26px 30px 30px;
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  min-height: 300px;
  position: relative;
  overflow: hidden;
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.65s ease,
    transform 0.65s cubic-bezier(0.2, 0.75, 0.25, 1),
    color 0.4s ease,
    background 0.4s ease;
}
.step:first-child {
  padding-left: 0;
}
.process-home.is-active .step {
  opacity: 1;
  transform: translateY(0);
}
.process-home.is-active .step:nth-child(2) {
  transition-delay: 0.12s;
}
.process-home.is-active .step:nth-child(3) {
  transition-delay: 0.24s;
}
.process-home.is-active .step:nth-child(4) {
  transition-delay: 0.36s;
}
.step > span {
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.15em;
}
.step-icon {
  font-size: 38px;
  margin: 45px 0 30px;
  transform-origin: center;
  transition: transform 0.45s cubic-bezier(0.2, 0.75, 0.25, 1);
}
.step h3 {
  font-family: "Manrope", sans-serif;
  font-size: 28px;
  margin: 0 0 15px;
}
.step p {
  line-height: 1.6;
  color: #554812;
  transition: color 0.4s ease;
}
.step:after {
  content: "";
  position: absolute;
  width: 150px;
  height: 150px;
  right: -95px;
  bottom: -95px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  transform: scale(0.72);
  transition: transform 0.45s ease;
}
.step:hover,
.step:focus-within {
  color: #fff;
  background: #050505;
}
.step:hover p,
.step:focus-within p {
  color: #cfcfcf;
}
.step:hover .step-icon,
.step:focus-within .step-icon {
  transform: translateY(-7px) rotate(12deg) scale(1.14);
}
.step:hover:after,
.step:focus-within:after {
  transform: scale(1.3);
}
@keyframes process-line {
  to {
    transform: scaleX(1);
  }
}
.work-home {
  padding: 108px 7vw 120px;
  position: relative;
  overflow: hidden;
  background-color: #f6f7f9;
  background-image:
    linear-gradient(rgba(23,102,216,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(23,102,216,.025) 1px, transparent 1px);
  background-size: 54px 54px;
}
.work-home .section-heading {
  margin-bottom: 42px;
  padding-top: 24px;
  border-top: 1px solid rgba(7, 26, 56, .15);
}
.work-home .section-heading h2 {
  font-size: clamp(44px, 4.8vw, 70px);
}
.light-link {
  align-self: end;
}
.work-home .light-link {
  display: inline-flex;
  align-items: center;
  gap: 34px;
  min-width: 220px;
  padding: 15px 0;
  border-top: 1px solid rgba(7, 26, 56, .18);
  border-bottom-color: var(--yellow);
}
.work-home .light-link span {
  margin-left: auto;
  transition: transform .3s ease;
}
.work-home .light-link:hover span { transform: translate(3px, -3px); }
.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: 390px 340px;
  gap: 16px;
}
.work-card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: #07101f;
  border: 1px solid rgba(7,26,56,.12);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset;
  transition: transform .45s cubic-bezier(.2,.8,.2,1), box-shadow .45s ease;
}
.work-web { grid-column: span 7; }
.work-campaign { grid-column: span 5; }
.work-photo { grid-column: span 4; }
.work-video { grid-column: span 8; }
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .65s cubic-bezier(.2,.8,.2,1), filter .45s ease;
}
.work-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2,7,15,.02) 28%, rgba(2,7,15,.92) 100%);
}
.work-meta {
  position: absolute;
  z-index: 3;
  left: 28px;
  right: 28px;
  bottom: 25px;
  color: white;
}
.work-meta span {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--yellow);
}
.work-meta h3 {
  font-family: "Manrope", sans-serif;
  max-width: 560px;
  font-size: clamp(27px, 3vw, 43px);
  line-height: 1.02;
  letter-spacing: -.045em;
  margin: 8px 0 12px;
}
.work-meta > b { display: inline-block; color: rgba(255,255,255,.72); font-size: 11px; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 4px; }
.work-card:hover { transform: translateY(-5px); box-shadow: 0 24px 55px rgba(7,26,56,.16); }
.work-card:hover img { transform: scale(1.035); filter: saturate(1.04); }
.work-browser {
  position: absolute;
  inset: 0;
  color: #fff;
  background:
    radial-gradient(circle at 84% 18%, rgba(23,102,216,.7), transparent 30%),
    linear-gradient(135deg, #071a38, #0a326e);
}
.work-browser > span { height: 42px; display: flex; align-items: center; gap: 7px; padding: 0 16px; border-bottom: 1px solid rgba(255,255,255,.13); }
.work-browser > span i { width: 7px; height: 7px; border-radius: 50%; background: rgba(255,255,255,.32); }
.work-browser > span b { margin-left: 8px; color: rgba(255,255,255,.4); font: 600 9px/1 ui-monospace, monospace; letter-spacing: .1em; }
.work-browser > div { position: absolute; inset: 42px 0 90px; display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; padding: 0 6%; }
.work-browser strong { color: transparent; -webkit-text-stroke: 1px rgba(255,255,255,.22); font: 800 clamp(50px, 6vw, 94px)/1 "Manrope", sans-serif; letter-spacing: -.08em; text-align: center; }
.work-web::before { content: "<build>  strategy + design + code  </build>"; position: absolute; z-index: 2; top: 63px; right: 25px; color: rgba(255,255,255,.23); font: 600 9px/1 ui-monospace, monospace; letter-spacing: .06em; }
.work-campaign {
  background:
    radial-gradient(circle at 82% 20%, rgba(231, 174, 54, .22), transparent 40%),
    linear-gradient(135deg, #071a38 0%, #111827 48%, #271507 100%);
}
.work-campaign img {
  width: 61%;
  margin-left: auto;
  object-position: center;
}
.work-campaign::after {
  background: linear-gradient(90deg, rgba(3, 10, 22, .97) 0%, rgba(3, 10, 22, .78) 40%, rgba(3, 10, 22, .08) 82%);
}
.work-campaign .work-meta h3 { max-width: 64%; }
.work-photo img { object-position: center; }
.work-video img { filter: saturate(.78) brightness(.82); }
.work-play { position: absolute; z-index: 3; left: 28px; top: 25px; width: 45px; height: 45px; display: grid; place-items: center; padding-left: 2px; color: #07101f; background: var(--yellow); border-radius: 50%; font-size: 13px; box-shadow: 0 10px 30px rgba(0,0,0,.2); }
.work-video:hover .work-play { transform: scale(1.07); }
.work-play { transition: transform .3s ease; }
.proof-home {
  padding: 76px 7vw 88px;
  background: #f6f7f9;
}
.proof-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(7, 26, 56, .16);
}
.proof-head > h2 {
  font-family: "Manrope", sans-serif;
  margin: 0;
  font-size: clamp(44px, 4.8vw, 70px);
  line-height: .98;
  letter-spacing: -.055em;
  color: #050505;
}
.proof-head > h2 em {
  color: var(--yellow);
  font-style: normal;
}
.proof-head > span {
  color: #7f8792;
  font-size: 12px;
  letter-spacing: .08em;
}
.logo-line {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 26px;
  border-top: 1px solid rgba(7, 26, 56, .1);
  border-left: 1px solid rgba(7, 26, 56, .1);
}
.logo-item {
  display: grid;
  place-items: center;
  min-width: 0;
  height: 154px;
  padding: 22px 34px;
  background: rgba(255,255,255,.68);
  border-right: 1px solid rgba(7, 26, 56, .1);
  border-bottom: 1px solid rgba(7, 26, 56, .1);
  transition: background .3s ease;
}
.logo-item img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: saturate(.88);
  transition: transform .35s ease, filter .35s ease;
}
.logo-item--novasys img {
  width: 82%;
  height: auto;
  max-width: 220px;
  max-height: 88px;
}
.logo-item:hover { background: #fff; }
.logo-item:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}
.final-cta {
  padding: 130px 7vw;
  background: var(--blue);
  color: #fff;
  text-align: center;
}
.final-cta > span {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: #dbe7ff;
}
.final-cta h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(48px, 6.3vw, 90px);
  line-height: 0.98;
  letter-spacing: -0.06em;
  margin: 20px 0 40px;
}
.final-cta h2 em {
  font-style: normal;
  color: var(--yellow);
}
.final-cta > a {
  display: inline-flex;
  gap: 45px;
  background: var(--yellow);
  color: #111;
  padding: 18px 22px;
  font-weight: 700;
}
.home-footer {
  background: #050505;
  color: #fff;
  padding: 76px 7vw 28px;
  display: grid;
  grid-template-columns: 1.35fr .95fr .95fr 1.1fr;
  gap: 48px;
  border-top: 2px solid var(--yellow);
}
.home-footer img {
  width: 116px;
  background: #fff;
  padding: 6px;
}
.home-footer span {
  display: block;
  color: #777;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
}
.home-footer a,
.home-footer p {
  display: block;
  color: #bbb;
  line-height: 1.9;
  margin: 0;
}
.home-footer small {
  grid-column: 1/-1;
  border-top: 1px solid #222;
  padding-top: 22px;
  color: #666;
}
.footer-shortcuts {
  grid-column: auto;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  padding: 0;
  border-top: 0;
}
.footer-shortcuts span {
  margin: 0 0 8px;
  color: #777;
}
.footer-shortcuts a {
  position: relative;
  color: #bdbdbd;
  font-size: 13px;
  transition: color .25s ease;
}
.footer-shortcuts a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: -5px;
  height: 1px;
  background: var(--yellow);
  transition: right .25s ease;
}
.footer-shortcuts a:hover { color: #fff; }
.footer-shortcuts a:hover::after { right: 0; }
.footer-social {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 14px;
  margin-top: 18px;
  padding-top: 16px;
  border-top: 1px solid #222;
}
.footer-social span {
  flex-basis: 100%;
  margin: 0 0 2px;
}
.footer-social a { font-size: 12px; }
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.7s ease,
    transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: none;
}
@media (max-width: 1250px) and (min-width: 901px) {
  .home-nav { gap: 20px; padding-left: 3.5vw; padding-right: 3.5vw; }
  .home-links { gap: 18px; }
  .home-links a { font-size: 13px; }
  .nav-cta { padding: 12px 14px; font-size: 12px; white-space: nowrap; }
}
@media (max-width: 900px) {
  .home-nav {
    height: 80px;
    padding: 0 5vw;
  }
  .brand {
    width: 102px;
  }
  .brand img {
    width: 98px;
    height: 42px;
  }
  .home-links,
  .nav-cta {
    display: none;
  }
  .menu {
    display: flex;
    margin-left: auto;
    flex-direction: column;
    gap: 6px;
  }
  .menu span {
    display: block;
    width: 26px;
    height: 2px;
    background: #fff;
  }
  .home-links.open {
    display: flex;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: #050505;
    padding: 25px 6vw;
    flex-direction: column;
    align-items: flex-start;
  }
  .showcase {
    height: 760px;
    min-height: 0;
  }
  .slide-content {
    left: 6vw;
    right: 6vw;
  }
  .slide-content h1,
  .slide-content h2 {
    font-size: 52px;
  }
  .slide-content p {
    font-size: 16px;
  }
  .scroll-cue {
    display: none;
  }
  .slider-nav {
    left: 6vw;
  }
  .about-home {
    grid-template-columns: 1fr;
    padding: 85px 6vw;
    gap: 22px;
    background-size: auto, 42px 42px, 42px 42px, auto;
  }
  .about-home::before {
    right: -0.08em;
    bottom: -0.08em;
    font-size: clamp(130px, 42vw, 220px);
    -webkit-text-stroke-color: rgba(23, 102, 216, 0.055);
  }
  .about-home::after {
    top: 34px;
    right: 6vw;
    width: 34px;
    height: 34px;
  }
  .about-copy {
    padding-top: 0;
  }
  .section-heading {
    align-items: flex-start;
    flex-direction: column;
  }
  .expertise-home,
  .process-home,
  .work-home {
    padding: 85px 6vw;
  }
  .expertise-row {
    grid-column: span 6 !important;
    min-height: 270px;
  }
  .expertise-row p {
    grid-column: 1;
  }
  .steps {
    grid-template-columns: 1fr 1fr;
  }
  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
  }
  .work-card {
    grid-column: 1;
    min-height: 420px;
  }
  .work-campaign img {
    width: 100%;
    margin-left: 0;
    object-position: center 32%;
  }
  .work-campaign::after {
    background: linear-gradient(180deg, rgba(2,7,15,.04) 24%, rgba(2,7,15,.94) 100%);
  }
  .work-campaign .work-meta h3 { max-width: 100%; }
  .home-footer {
    grid-template-columns: 1fr;
  }
  .home-footer small {
    grid-column: 1;
  }
  .footer-shortcuts {
    grid-column: 1;
    align-items: flex-start;
    gap: 10px;
    padding-top: 22px;
    border-top: 1px solid #222;
  }
  .footer-shortcuts span { margin: 0 0 5px; }
  .final-cta {
    padding: 95px 6vw;
  }
  .logo-line {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}
@media (max-width: 620px) {
  .expertise-list {
    grid-template-columns: 1fr;
  }
  .expertise-row {
    grid-column: 1 !important;
    min-height: 245px;
    padding: 24px;
  }
  .expertise-row h3 {
    font-size: 31px;
  }
}
@media (max-width: 560px) {
  .proof-home { padding: 60px 6vw 70px; }
  .proof-head { align-items: flex-start; flex-direction: column; gap: 8px; }
  .proof-head > h2 { font-size: 42px; }
  .logo-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .logo-item { height: 126px; padding: 18px; }
  .logo-item--novasys img { width: 86%; }
  .logo-item:last-child:nth-child(odd) { grid-column: 1 / -1; }
  .process-progress {
    display: none;
  }
  .steps {
    grid-template-columns: 1fr;
  }
  .step {
    border-right: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.25);
    padding-left: 0 !important;
    min-height: 250px;
  }
  .slide-content h1,
  .slide-content h2 {
    font-size: 43px;
  }
  .slide-number {
    display: none;
  }
  .work-card {
    min-height: 350px;
  }
  .work-meta { left: 22px; right: 22px; bottom: 21px; }
  .work-browser > div { grid-template-columns: repeat(2, 1fr); inset: 42px 0 105px; }
  .work-browser strong { font-size: 16vw; }
  .work-web::before { left: 22px; right: auto; max-width: calc(100% - 44px); overflow: hidden; white-space: nowrap; }
}
@media (prefers-reduced-motion: reduce) {
  .process-progress i,
  .process-home.is-active .process-progress i {
    animation: none;
    transform: scaleX(1);
  }
  .step,
  .process-home.is-active .step {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
