:root {
  --blue: #4733B0;
  --blue-2: #654FE2;
  --mist: #F2ECF7;
  --black: #0B0425;
  --ink: #160B36;
  --muted: #786F91;
  --white: #FFFFFF;
  --line: rgba(71, 51, 176, .16);
  --line-light: rgba(255,255,255,.14);
  --shadow: 0 24px 70px rgba(11, 4, 37, .18);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 16px;
  --container: min(1180px, calc(100vw - 40px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  color: var(--black);
  background:
    radial-gradient(circle at 10% 0%, rgba(71,51,176,.14), transparent 32rem),
    radial-gradient(circle at 95% 12%, rgba(242,236,247,.9), transparent 32rem),
    var(--mist);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: .07;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.75' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.65'/%3E%3C/svg%3E");
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { color: var(--muted); line-height: 1.75; }
h1, h2, h3, h4 { font-family: 'Montserrat', 'Poppins', sans-serif; line-height: 1.02; color: inherit; margin: 0; }
h1 { font-size: clamp(3rem, 7vw, 7.4rem); letter-spacing: -.08em; }
h2 { font-size: clamp(2.15rem, 4.8vw, 5.2rem); letter-spacing: -.06em; }
h3 { font-size: clamp(1.3rem, 2vw, 2.1rem); letter-spacing: -.04em; }

::selection { background: var(--blue); color: var(--white); }

.preloader {
  position: fixed;
  inset: 0;
  z-index: 999;
  display: grid;
  place-items: center;
  background: var(--black);
  transition: opacity .55s ease, visibility .55s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__logo { width: 82px; animation: pulseLogo 1.25s ease-in-out infinite alternate; }
@keyframes pulseLogo { from { transform: scale(.94) rotate(-3deg); opacity: .7; } to { transform: scale(1.04) rotate(3deg); opacity: 1; } }

.cursor-dot,
.cursor-ring {
  position: fixed;
  pointer-events: none;
  z-index: 1000;
  transform: translate(-50%, -50%);
  display: none;
}
.cursor-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--blue); }
.cursor-ring { width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(71, 51, 176, .55); transition: width .2s ease, height .2s ease, border-color .2s ease; }
.cursor-ring.is-hover { width: 58px; height: 58px; border-color: rgba(71, 51, 176, .18); background: rgba(71, 51, 176, .08); }
@media (hover:hover) and (pointer:fine) { .cursor-dot, .cursor-ring { display: block; } }

.site-header {
  position: fixed;
  top: 18px;
  left: 50%;
  transform: translateX(-50%);
  width: var(--container);
  height: 72px;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(255,255,255,.55);
  border-radius: 999px;
  background: rgba(255,255,255,.66);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 55px rgba(11, 4, 37, .08);
  transition: transform .35s ease, background .35s ease, box-shadow .35s ease;
}
.site-header.is-scrolled { background: rgba(242,236,247,.84); box-shadow: var(--shadow); }
.brand { display: flex; align-items: center; min-width: 150px; }
.brand img { width: 172px; height: auto; }
.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font: 700 13px/1 'Montserrat', sans-serif;
  padding: 13px 14px;
  border-radius: 999px;
  color: rgba(11,4,37,.70);
  transition: background .25s ease, color .25s ease, transform .25s ease;
}
.main-nav a:hover, .main-nav a.is-active { background: var(--black); color: var(--white); transform: translateY(-1px); }
.nav-cta {
  padding: 14px 18px;
  border-radius: 999px;
  background: var(--blue);
  color: var(--white);
  font: 800 12px/1 'Montserrat', sans-serif;
  white-space: nowrap;
  box-shadow: 0 13px 35px rgba(71,51,176,.28);
}
.nav-toggle { display: none; width: 48px; height: 48px; border: 0; border-radius: 50%; background: var(--black); padding: 0 14px; }
.nav-toggle span { display: block; height: 2px; width: 20px; background: var(--white); margin: 5px auto; transition: transform .25s ease; }

.section,
.hero,
.page-hero,
.case-hero,
.about-hero,
.contact-hero {
  width: var(--container);
  margin-inline: auto;
}

.hero {
  min-height: 100svh;
  padding: 144px 0 70px;
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  align-items: center;
  gap: clamp(32px, 5vw, 80px);
}
.section-kicker,
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font: 800 12px/1 'Montserrat', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  margin-bottom: 18px;
}
.section-kicker::before,
.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--blue);
}
.hero__lead { max-width: 650px; font-size: clamp(1rem, 1.5vw, 1.22rem); color: rgba(11,4,37,.72); margin: 26px 0 0; }
.hero__actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.hero__actions.center { justify-content: center; }
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font: 800 13px/1 'Montserrat', sans-serif;
  cursor: pointer;
  transition: transform .25s ease, box-shadow .25s ease, background .25s ease, color .25s ease;
}
.btn--primary { background: var(--blue); color: var(--white); box-shadow: 0 18px 42px rgba(71,51,176,.26); }
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 22px 55px rgba(71,51,176,.34); }
.btn--ghost { border-color: rgba(11,4,37,.16); background: rgba(255,255,255,.48); color: var(--black); }
.btn--ghost:hover { background: var(--black); color: var(--white); transform: translateY(-2px); }
.text-link { font-weight: 800; color: var(--blue); }
.hero__meta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 40px; }
.hero__meta span {
  display: inline-grid;
  gap: 2px;
  min-width: 135px;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.46);
  color: var(--muted);
  font-size: .82rem;
}
.hero__meta strong { font: 900 1.45rem/1 'Montserrat', sans-serif; color: var(--black); }

.hero__visual { position: relative; min-height: 640px; display: grid; place-items: end center; }
.portrait-card {
  position: relative;
  width: min(520px, 88vw);
  height: 620px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 62% 18%, rgba(255,255,255,.16), transparent 22rem),
    linear-gradient(145deg, var(--black), #1A0D4A 55%, var(--blue));
  overflow: hidden;
  box-shadow: 0 38px 100px rgba(11,4,37,.32);
}
.portrait-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -1px -20%;
  height: 36%;
  background: linear-gradient(180deg, transparent, rgba(11,4,37,.92));
}
.portrait-card img { position: absolute; bottom: -1px; left: 50%; transform: translateX(-50%); width: 112%; max-width: none; z-index: 1; }
.hero-orbit {
  position: absolute;
  z-index: 4;
  width: 210px;
  border: 8px solid rgba(255,255,255,.72);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.hero-orbit img { aspect-ratio: 16/11; object-fit: cover; }
.hero-orbit--one { top: 84px; left: 0; animation-delay: .2s; }
.hero-orbit--two { top: 188px; right: -8px; animation-delay: 1s; }
.hero-orbit--three { bottom: 84px; left: 22px; animation-delay: 1.8s; }
@keyframes float { 0%,100% { transform: translateY(0) rotate(-1deg); } 50% { transform: translateY(-16px) rotate(1.5deg); } }
.hero-badge {
  position: absolute;
  right: 12px;
  bottom: 26px;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 15px 12px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.72);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,.56);
  box-shadow: var(--shadow);
  font: 800 12px/1 'Montserrat', sans-serif;
}
.hero-badge img { width: 36px; }

.marquee-section { padding: 0 0 44px; }
.marquee {
  overflow: hidden;
  border-block: 1px solid var(--line);
  background: rgba(255,255,255,.35);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee 25s linear infinite;
}
.marquee span {
  padding: 20px 24px;
  font: 900 clamp(1.1rem, 2vw, 2rem)/1 'Montserrat', sans-serif;
  letter-spacing: -.04em;
  color: rgba(11,4,37,.38);
  white-space: nowrap;
}
.marquee span:nth-child(2n) { color: var(--blue); }
@keyframes marquee { to { transform: translateX(-50%); } }

.section { padding: 92px 0; }
.section--dark {
  width: 100%;
  padding: 100px max(20px, calc((100vw - 1180px) / 2));
  background:
    radial-gradient(circle at 20% 0, rgba(71,51,176,.55), transparent 32rem),
    linear-gradient(135deg, var(--black), #130844 60%, var(--black));
  color: var(--white);
}
.section--dark p { color: rgba(255,255,255,.68); }
.section--dark .section-kicker { color: #CBBFFF; }
.section--dark .section-kicker::before { background: #CBBFFF; }
.section-head { max-width: 820px; margin-bottom: 44px; }
.section-head p { max-width: 670px; }
.section-head--split { max-width: none; display: flex; align-items: end; justify-content: space-between; gap: 24px; }

.expertise-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.expertise-grid--tracks { gap: 22px; }
.expertise-card {
  position: relative;
  overflow: hidden;
  min-height: 390px;
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: 0 18px 70px rgba(11,4,37,.08);
  isolation: isolate;
  transform: translateZ(0);
}
.expertise-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 78% 18%, rgba(255,255,255,.32), transparent 13rem),
    linear-gradient(180deg, rgba(11,4,37,.04), rgba(11,4,37,.34));
}
.track-card__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.track-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 28px;
  opacity: .22;
  filter: saturate(.78) contrast(.94);
  transition: transform .7s ease, opacity .7s ease;
}
.track-card__visual {
  position: absolute;
  inset: 28px 26px 118px;
  z-index: 2;
  pointer-events: none;
}
.track-card__visual span,
.track-card__visual i {
  position: absolute;
  display: block;
}
.track-card__content {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 28px;
  color: var(--white);
}
.track-card__number,
.track-card__tag {
  position: absolute;
  top: -230px;
  font: 900 12px/1 'Montserrat', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: rgba(255,255,255,.76);
}
.track-card__number { left: 28px; }
.track-card__tag { right: 28px; }
.expertise-card h3 { margin-bottom: 10px; font-size: clamp(1.55rem, 2.3vw, 2.45rem); }
.expertise-card p { color: rgba(255,255,255,.78); margin: 0; max-width: 310px; }
.expertise-card:hover .track-card__bg img { transform: scale(1.02); opacity: .32; }
.expertise-card:hover .track-card__visual { transform: translateY(-4px); }

.expertise-card--brand {
  background:
    linear-gradient(135deg, #ffffff 0%, #f2ecf7 58%, #dcd3ff 100%);
  color: var(--black);
}
.expertise-card--brand::before { background: linear-gradient(180deg, rgba(255,255,255,.24), rgba(71,51,176,.30)); }
.expertise-card--brand .track-card__content { color: var(--black); }
.expertise-card--brand p { color: rgba(11,4,37,.62); }
.expertise-card--brand .track-card__number,
.expertise-card--brand .track-card__tag { color: var(--blue); }
.identity-mark {
  left: 50%; top: 40%; transform: translate(-50%, -50%);
  width: 118px; height: 118px; border-radius: 36px;
  display: grid !important; place-items: center;
  background: var(--black); color: var(--white);
  font: 900 58px/1 'Montserrat', sans-serif;
  box-shadow: 0 22px 45px rgba(11,4,37,.23);
}
.identity-tile { width: 88px; height: 54px; border-radius: 18px; background: rgba(255,255,255,.72); border: 1px solid rgba(71,51,176,.18); }
.identity-tile--one { left: 0; top: 14px; }
.identity-tile--two { right: 0; top: 44px; }
.identity-tile--three { left: 34px; bottom: 4px; }
.identity-swatch { bottom: 20px; right: 16px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); box-shadow: -34px 0 0 #0B0425, -68px 0 0 #F2ECF7; border: 2px solid rgba(255,255,255,.8); }
.identity-swatch + .identity-swatch,
.identity-swatch + .identity-swatch + .identity-swatch { display: none; }

.expertise-card--direction {
  background: linear-gradient(135deg, #120832, #4733B0 105%);
}
.expertise-card--direction::before { background: radial-gradient(circle at 55% 12%, rgba(255,255,255,.18), transparent 11rem), linear-gradient(180deg, rgba(0,0,0,.06), rgba(11,4,37,.64)); }
.mood-frame { border: 1px solid rgba(255,255,255,.24); background: rgba(255,255,255,.08); backdrop-filter: blur(8px); box-shadow: 0 22px 50px rgba(0,0,0,.18); }
.mood-frame--hero { left: 56px; top: 12px; width: 150px; height: 190px; border-radius: 22px; transform: rotate(-5deg); }
.mood-frame--small { right: 22px; top: 62px; width: 112px; height: 138px; border-radius: 18px; transform: rotate(7deg); }
.mood-note { left: 12px; bottom: 28px; width: 132px; height: 42px; border-radius: 999px; background: rgba(255,255,255,.82); box-shadow: 0 16px 36px rgba(0,0,0,.12); }
.spotlight-beam { inset: -42px auto auto 100px; width: 170px; height: 270px; background: linear-gradient(180deg, rgba(255,255,255,.20), transparent); clip-path: polygon(42% 0, 58% 0, 100% 100%, 0 100%); transform: rotate(11deg); }

.expertise-card--social {
  background: linear-gradient(135deg, #f6f2ff, #bfc0ff 54%, #4733B0 140%);
}
.expertise-card--social::before { background: linear-gradient(180deg, rgba(255,255,255,.15), rgba(71,51,176,.44)); }
.phone-frame { left: 50%; top: 50%; transform: translate(-50%, -52%); width: 118px; height: 190px; border-radius: 28px; background: rgba(11,4,37,.88); border: 8px solid rgba(255,255,255,.86); box-shadow: 0 24px 55px rgba(11,4,37,.22); }
.phone-frame i:nth-child(1) { left: 19px; top: 34px; width: 64px; height: 42px; border-radius: 12px; background: var(--blue); }
.phone-frame i:nth-child(2) { left: 19px; top: 88px; width: 64px; height: 10px; border-radius: 10px; background: rgba(255,255,255,.68); }
.phone-frame i:nth-child(3) { left: 19px; top: 112px; width: 42px; height: 10px; border-radius: 10px; background: rgba(255,255,255,.42); }
.post-card { width: 98px; height: 124px; border-radius: 20px; background: rgba(255,255,255,.78); border: 1px solid rgba(255,255,255,.66); box-shadow: 0 18px 45px rgba(11,4,37,.16); }
.post-card--one { left: 8px; top: 18px; transform: rotate(-8deg); }
.post-card--two { right: 4px; top: 42px; transform: rotate(8deg); }
.post-card--three { left: 38px; bottom: 0; width: 128px; height: 52px; border-radius: 18px; }

.expertise-card--video {
  background: radial-gradient(circle at 75% 18%, rgba(101,79,226,.75), transparent 13rem), linear-gradient(135deg, #09021f, #2d1a7a);
}
.edit-window { left: 12px; right: 12px; top: 10px; height: 142px; border-radius: 24px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.16); backdrop-filter: blur(10px); }
.edit-window i { left: 50%; top: 50%; transform: translate(-42%, -50%); width: 0; height: 0; border-top: 24px solid transparent; border-bottom: 24px solid transparent; border-left: 35px solid rgba(255,255,255,.9); }
.timeline-track { left: 16px; right: 16px; height: 16px; border-radius: 999px; background: rgba(255,255,255,.18); overflow: hidden; }
.timeline-track::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 58%; background: rgba(255,255,255,.62); border-radius: inherit; }
.timeline-track--one { bottom: 54px; }
.timeline-track--two { bottom: 30px; left: 54px; }
.timeline-track--three { bottom: 6px; right: 60px; }
.play-cut { right: 24px; bottom: 18px; width: 52px; height: 52px; border-radius: 50%; background: var(--blue); box-shadow: 0 12px 32px rgba(0,0,0,.22); }
.play-cut::after { content: ""; position: absolute; left: 21px; top: 15px; border-top: 11px solid transparent; border-bottom: 11px solid transparent; border-left: 16px solid white; }

.expertise-card--event {
  background: linear-gradient(135deg, #ffffff, #efe9ff 48%, #4733B0 145%);
}
.expertise-card--event::before { background: linear-gradient(180deg, rgba(255,255,255,.20), rgba(11,4,37,.44)); }
.stage-screen { left: 28px; right: 28px; top: 18px; height: 106px; border-radius: 20px; background: linear-gradient(135deg, rgba(71,51,176,.94), rgba(11,4,37,.9)); box-shadow: 0 22px 45px rgba(11,4,37,.20); }
.stage-screen::after { content: "EVENT"; position: absolute; left: 22px; top: 38px; color: white; font: 900 22px/1 'Montserrat', sans-serif; letter-spacing: -.04em; }
.rollup { bottom: 8px; width: 56px; height: 146px; border-radius: 24px 24px 8px 8px; background: rgba(255,255,255,.78); border: 1px solid rgba(71,51,176,.18); box-shadow: 0 18px 40px rgba(11,4,37,.14); }
.rollup::after { content: ""; position: absolute; left: 50%; bottom: -18px; width: 2px; height: 18px; background: rgba(11,4,37,.42); }
.rollup--left { left: 46px; transform: rotate(-5deg); }
.rollup--right { right: 46px; transform: rotate(5deg); }
.floor-grid { left: -20px; right: -20px; bottom: -28px; height: 76px; background: linear-gradient(90deg, transparent 0 18%, rgba(255,255,255,.3) 18% 19%, transparent 19% 100%), linear-gradient(rgba(255,255,255,.26), rgba(255,255,255,0)); transform: perspective(260px) rotateX(58deg); }

.expertise-card--government {
  background: linear-gradient(135deg, #09021f, #160B36 54%, #4733B0 160%);
}
.expertise-card--government::before { background: radial-gradient(circle at 80% 10%, rgba(255,255,255,.14), transparent 10rem), linear-gradient(180deg, rgba(11,4,37,.05), rgba(11,4,37,.72)); }
.official-doc { border-radius: 18px; background: rgba(255,255,255,.9); box-shadow: 0 18px 48px rgba(0,0,0,.20); }
.official-doc--main { left: 52px; top: 18px; width: 158px; height: 204px; transform: rotate(-3deg); }
.official-doc--main::before { content: ""; position: absolute; left: 22px; top: 26px; width: 74px; height: 11px; border-radius: 99px; background: var(--blue); box-shadow: 0 30px 0 rgba(11,4,37,.22), 0 55px 0 rgba(11,4,37,.14), 0 80px 0 rgba(11,4,37,.14); }
.official-doc--side { right: 26px; top: 72px; width: 112px; height: 144px; transform: rotate(7deg); opacity: .62; }
.official-seal { right: 58px; top: 40px; width: 64px; height: 64px; border-radius: 50%; background: var(--blue); border: 8px solid rgba(255,255,255,.75); box-shadow: 0 14px 35px rgba(0,0,0,.20); }
.security-line { left: 22px; right: 22px; height: 1px; background: linear-gradient(90deg, transparent, rgba(255,255,255,.44), transparent); }
.security-line--one { bottom: 42px; }
.security-line--two { bottom: 24px; }


.project-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.project-grid--featured { grid-template-columns: repeat(6, 1fr); }
.project-card { grid-column: span 2; border-radius: var(--radius-lg); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); overflow: hidden; box-shadow: 0 22px 60px rgba(11,4,37,.16); }
.work-board .project-card { background: rgba(255,255,255,.65); border-color: rgba(71,51,176,.12); }
.project-card--large { grid-column: span 3; grid-row: span 2; }
.project-card__media { position: relative; display: grid; place-items: center; overflow: hidden; aspect-ratio: 16/10; background: linear-gradient(135deg, rgba(242,236,247,.92), rgba(255,255,255,.92)); }
.project-card--large .project-card__media { aspect-ratio: 16/12.4; }
.project-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 12px; transition: transform .55s ease, filter .55s ease; }
.project-card:hover .project-card__media img { transform: scale(1.025); filter: saturate(1.08) contrast(1.04); }
.project-card__badge,
.project-card__status {
  position: absolute;
  top: 16px;
  left: 16px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(14px);
  font: 800 11px/1 'Montserrat', sans-serif;
  color: var(--black);
}
.project-card__status { left: auto; right: 16px; background: var(--black); color: var(--white); }
.project-card__body { padding: 24px; }
.project-card__body h3 { margin-bottom: 12px; }
.project-card__body p { margin: 0 0 18px; color: rgba(255,255,255,.66); }
.work-board .project-card__body p { color: var(--muted); }
.work-board .project-card__body, .work-board .project-card__body h3 { color: var(--black); }
.tag-row { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-row span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(71,51,176,.16);
  background: rgba(71,51,176,.07);
  color: var(--blue);
  font: 800 11px/1 'Montserrat', sans-serif;
}
.section--dark .tag-row span, .selected-work .tag-row span { border-color: rgba(255,255,255,.13); background: rgba(255,255,255,.1); color: rgba(255,255,255,.85); }
.tag-row--large span { padding: 12px 15px; font-size: 12px; }

.video-feature {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  align-items: center;
  gap: 34px;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.6);
}
.video-feature__copy { padding: clamp(12px, 3vw, 42px); }
.video-feature__thumb { position: relative; overflow: hidden; border-radius: 28px; box-shadow: 0 25px 65px rgba(11,4,37,.18); }
.video-feature__thumb img { width: 100%; aspect-ratio: 16/10; object-fit: contain; background: linear-gradient(135deg, rgba(242,236,247,.92), rgba(255,255,255,.92)); transition: transform .55s ease; }
.video-feature__thumb:hover img { transform: scale(1.02); }
.play-button {
  position: absolute;
  inset: 50% auto auto 50%;
  transform: translate(-50%, -50%);
  width: 76px;
  height: 76px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(71,51,176,.34);
  font-size: 1.3rem;
}

.stats-band { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.stats-band--top { margin-top: clamp(-24px, -2vw, -10px); margin-bottom: clamp(36px, 5vw, 70px); }
.stats-band--top .stat { background: rgba(255,255,255,.72); }
.stat {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.64);
  border: 1px solid rgba(255,255,255,.66);
  box-shadow: 0 18px 50px rgba(11,4,37,.07);
}
.stat strong { display: block; font: 900 clamp(2.3rem, 4vw, 4.2rem)/.9 'Montserrat', sans-serif; letter-spacing: -.06em; color: var(--blue); margin-bottom: 12px; }
.stat span { color: var(--muted); line-height: 1.45; }
.compact .stat { padding: 22px; }

.about-card,
.mofa-note,
.restricted-panel,
.next-project,
.split-card,
.summary-card {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 5vw, 58px);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.65);
  box-shadow: var(--shadow);
}
.about-card > div { max-width: 780px; }
.final-cta { text-align: center; max-width: 850px; }
.final-cta p { max-width: 560px; margin-inline: auto; }

.page-hero {
  padding: 165px 0 72px;
  min-height: 60svh;
  display: grid;
  align-items: end;
}
.page-hero > div { max-width: 980px; }
.page-hero p { max-width: 720px; font-size: 1.08rem; }
.filter-bar { position: sticky; top: 105px; z-index: 12; display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 34px; padding: 12px; border-radius: 999px; background: rgba(255,255,255,.75); border: 1px solid rgba(255,255,255,.72); backdrop-filter: blur(16px); box-shadow: 0 15px 40px rgba(11,4,37,.08); }
.filter-chip { border: 0; padding: 12px 15px; border-radius: 999px; background: transparent; color: var(--muted); font: 800 12px/1 'Montserrat', sans-serif; cursor: pointer; transition: background .2s ease, color .2s ease; }
.filter-chip.is-active, .filter-chip:hover { background: var(--black); color: var(--white); }
.project-card.is-hidden { display: none; }

.case-hero { padding: 150px 0 70px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 40px; }
.case-hero__copy p { max-width: 620px; font-size: 1.06rem; }
.case-hero__image { position: relative; border-radius: var(--radius-xl); overflow: hidden; box-shadow: var(--shadow); background: var(--white); }
.case-hero__image img { width: 100%; aspect-ratio: 16/11; object-fit: contain; padding: 18px; background: linear-gradient(135deg, rgba(242,236,247,.92), rgba(255,255,255,.92)); }
.case-meta { display: grid; grid-template-columns: repeat(2, 1fr); gap: 12px; margin-top: 32px; }
.case-meta div { padding: 16px; border-radius: 18px; border: 1px solid var(--line); background: rgba(255,255,255,.55); }
.case-meta span { display: block; font: 800 11px/1 'Montserrat', sans-serif; color: var(--blue); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; }
.case-meta strong { font-size: .92rem; }
.restricted-note { position: absolute; left: 18px; right: 18px; bottom: 18px; padding: 18px; border-radius: 20px; background: rgba(11,4,37,.84); color: var(--white); backdrop-filter: blur(12px); display: grid; gap: 5px; }
.restricted-note span { color: rgba(255,255,255,.72); }
.case-overview { display: grid; grid-template-columns: 320px 1fr; gap: 42px; }
.case-text-grid { display: grid; gap: 18px; }
.case-text-grid article { padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.66); }
.case-text-grid p { margin: 0; font-size: 1.03rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 20px; }
.gallery-item { display: block; overflow: hidden; border-radius: var(--radius-lg); background: var(--white); box-shadow: 0 18px 55px rgba(11,4,37,.10); }
.gallery-item img { width: 100%; height: 100%; aspect-ratio: 16/10.5; object-fit: contain; padding: 14px; transition: transform .45s ease; background: linear-gradient(135deg, rgba(242,236,247,.78), rgba(255,255,255,.96)); }
.gallery-item:hover img { transform: scale(1.02); }
.restricted-panel { display: block; }
.restricted-panel code { background: var(--black); color: var(--white); padding: 3px 8px; border-radius: 999px; }
.next-project { text-align: center; display: grid; place-items: center; }

.video-card-grid { display: grid; gap: 26px; }
.video-card { display: grid; grid-template-columns: 1.05fr .95fr; gap: 0; overflow: hidden; border-radius: var(--radius-xl); background: rgba(255,255,255,.7); border: 1px solid rgba(255,255,255,.66); box-shadow: var(--shadow); }
.video-card:nth-child(even) .video-card__media { order: 2; }
.video-card__media { position: relative; overflow: hidden; min-height: 420px; }
.video-card__media img { width: 100%; height: 100%; object-fit: contain; padding: 18px; background: linear-gradient(135deg, rgba(242,236,247,.92), rgba(255,255,255,.92)); transition: transform .55s ease; }
.video-card:hover .video-card__media img { transform: scale(1.02); }
.video-card__body { padding: clamp(30px, 5vw, 60px); display: flex; flex-direction: column; align-items: flex-start; justify-content: center; }
.video-card__body .btn { margin-top: 24px; }

.cv-summary { display: grid; grid-template-columns: .95fr 1.05fr; gap: 22px; align-items: stretch; }
.summary-card { align-items: flex-start; display: block; }
.summary-card p { font-size: 1.06rem; margin-bottom: 0; }
.stat-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.timeline { position: relative; display: grid; gap: 24px; }
.timeline::before { content: ""; position: absolute; left: 19px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { position: relative; display: grid; grid-template-columns: 40px 1fr; gap: 20px; }
.timeline-marker { width: 40px; height: 40px; position: relative; z-index: 1; border-radius: 50%; background: var(--blue); border: 8px solid var(--mist); box-shadow: 0 0 0 1px var(--line); }
.timeline-card { padding: 30px; border-radius: var(--radius-lg); background: rgba(255,255,255,.72); border: 1px solid rgba(255,255,255,.65); box-shadow: 0 18px 55px rgba(11,4,37,.08); }
.period { display: inline-flex; margin-bottom: 12px; color: var(--blue); font: 800 12px/1 'Montserrat', sans-serif; }
.company { margin: 10px 0 18px; color: var(--black); font-weight: 700; }
ul { padding-left: 20px; color: var(--muted); line-height: 1.72; }
.capability-grid, .philosophy-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.philosophy-grid { grid-template-columns: repeat(3, 1fr); }
.capability-card { padding: 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.12); }
.philosophy .capability-card { background: rgba(255,255,255,.7); border-color: rgba(255,255,255,.65); }
.capability-card h3 { margin-bottom: 12px; }
.tools-education { display: grid; gap: 22px; }
.split-card { align-items: center; }
.split-card p { margin: 0; }

.about-hero { min-height: 100svh; padding: 145px 0 72px; display: grid; grid-template-columns: .9fr 1.1fr; align-items: center; gap: 52px; }
.about-hero__image { border-radius: var(--radius-xl); background: linear-gradient(145deg, var(--black), var(--blue)); overflow: hidden; box-shadow: var(--shadow); min-height: 620px; position: relative; }
.about-hero__image img { position: absolute; bottom: 0; left: 50%; transform: translateX(-50%); width: 115%; max-width: none; }
.about-hero__copy p { font-size: 1.08rem; }
.industry-cloud { display: flex; flex-wrap: wrap; gap: 12px; }
.industry-cloud span { padding: 18px 22px; border-radius: 999px; color: var(--white); background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.13); font: 900 clamp(1.1rem, 2vw, 2rem)/1 'Montserrat', sans-serif; letter-spacing: -.04em; }

.contact-hero { min-height: 100svh; padding: 150px 0 80px; display: grid; grid-template-columns: .9fr 1.1fr; gap: 40px; align-items: center; }
.contact-copy p { font-size: 1.08rem; max-width: 640px; }
.contact-links { display: grid; gap: 12px; margin-top: 30px; }
.contact-links a { display: grid; gap: 6px; padding: 18px; border-radius: 18px; background: rgba(255,255,255,.65); border: 1px solid rgba(255,255,255,.72); transition: transform .25s ease, background .25s ease; }
.contact-links a:hover { transform: translateX(4px); background: var(--white); }
.contact-links span { color: var(--blue); font: 800 11px/1 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: .08em; }
.contact-form { padding: clamp(24px, 4vw, 44px); border-radius: var(--radius-xl); background: rgba(255,255,255,.74); border: 1px solid rgba(255,255,255,.72); box-shadow: var(--shadow); }
.form-row { display: grid; gap: 9px; margin-bottom: 18px; }
.two-columns { grid-template-columns: 1fr 1fr; }
label { font: 800 12px/1 'Montserrat', sans-serif; color: var(--black); }
input, select, textarea { width: 100%; border: 1px solid rgba(71,51,176,.15); background: rgba(255,255,255,.72); border-radius: 16px; padding: 15px 16px; font: 500 15px/1.35 'Poppins', sans-serif; color: var(--black); outline: none; transition: border-color .2s ease, box-shadow .2s ease; }
textarea { resize: vertical; }
input:focus, select:focus, textarea:focus { border-color: var(--blue); box-shadow: 0 0 0 4px rgba(71,51,176,.1); }
.form-message { min-height: 20px; margin: 14px 0 0; font-weight: 700; color: var(--blue); }
.hp-field { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form-message.is-success { color: #247A4E; }
.form-message.is-error { color: #B23B3B; }
button:disabled { opacity: .6; cursor: not-allowed; }
.admin-link-note { font-size: .9rem; color: var(--muted); }


.site-footer { width: var(--container); margin: 0 auto; padding: 50px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.15fr repeat(3, 1fr); gap: 24px; padding: 28px 30px; border-radius: var(--radius-xl); background: var(--black); color: var(--white); }
.footer-logo { width: 170px; margin-bottom: 14px; }
.footer-logo--official { width: 102px; max-width: 100%; display: block; }
.muted { color: rgba(255,255,255,.62); }
.footer-tagline { display: inline-flex !important; align-items: center; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,.78) !important; font-weight: 700; letter-spacing: -.01em; }
.footer-tagline span { display: inline-flex; align-items: center; gap: 8px; }
.footer-tagline span::before, .footer-tagline span::after { content: ''; width: 5px; height: 5px; border-radius: 999px; background: rgba(203,191,255,.9); box-shadow: 0 0 18px rgba(203,191,255,.55); }
.footer-label { display: block; color: #CBBFFF; font: 800 10px/1 'Montserrat', sans-serif; letter-spacing: .08em; text-transform: uppercase; margin-bottom: 13px; }
.footer-grid a, .footer-grid p { display: block; color: rgba(255,255,255,.72); margin: 0 0 8px; font-size: .94rem; line-height: 1.55; }
.footer-grid a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 18px; padding-top: 18px; color: var(--muted); font-size: .84rem; }
.footer-bottom a { color: var(--blue); font-weight: 800; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1050px) {
  .main-nav, .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .site-header.nav-open { border-radius: 30px; height: auto; align-items: flex-start; }
  .site-header.nav-open .main-nav { position: absolute; left: 14px; right: 14px; top: 72px; display: grid; gap: 6px; padding: 12px; border-radius: 24px; background: rgba(255,255,255,.94); box-shadow: var(--shadow); }
  .site-header.nav-open .main-nav a { padding: 16px; }
  .hero, .case-hero, .about-hero, .contact-hero, .video-feature, .cv-summary { grid-template-columns: 1fr; }
  .hero__visual { min-height: 560px; order: -1; }
  .portrait-card { height: 560px; }
  .expertise-grid, .project-grid, .stats-band, .capability-grid, .philosophy-grid { grid-template-columns: repeat(2, 1fr); }
  .project-grid--featured { grid-template-columns: repeat(2, 1fr); }
  .project-card, .project-card--large { grid-column: span 1; grid-row: auto; }
  .case-overview { grid-template-columns: 1fr; }
  .video-card, .video-card:nth-child(even) { grid-template-columns: 1fr; }
  .video-card:nth-child(even) .video-card__media { order: initial; }
  .footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 720px) {
  :root { --container: min(100% - 24px, 1180px); }
  .site-header { top: 10px; height: 64px; padding: 8px 10px 8px 14px; }
  .brand img { width: 145px; }
  h1 { font-size: clamp(2.65rem, 13vw, 4.3rem); }
  h2 { font-size: clamp(2rem, 10vw, 3.4rem); }
  .hero, .page-hero, .case-hero, .about-hero, .contact-hero { padding-top: 115px; }
  .hero__visual { min-height: 440px; }
  .portrait-card { height: 430px; border-radius: 30px; }
  .portrait-card img { width: 126%; }
  .hero-orbit { width: 150px; border-width: 6px; border-radius: 18px; }
  .hero-orbit--one { top: 34px; }
  .hero-orbit--two { top: 130px; right: 0; }
  .hero-orbit--three { bottom: 52px; left: 0; }
  .hero-badge { bottom: 4px; }
  .hero__meta, .expertise-grid, .project-grid, .project-grid--featured, .stats-band, .gallery-grid, .stat-grid, .capability-grid, .philosophy-grid, .footer-grid { grid-template-columns: 1fr; }
  .hero__meta span { width: 100%; }
  .section { padding: 62px 0; }
  .section--dark { padding: 72px 12px; }
  .section-head--split, .about-card, .mofa-note, .split-card { flex-direction: column; align-items: flex-start; }
  .expertise-card { min-height: 300px; }
  .filter-bar { top: 82px; border-radius: 24px; }
  .case-meta { grid-template-columns: 1fr; }
  .video-card__media { min-height: 260px; }
  .two-columns { grid-template-columns: 1fr; }
  .footer-grid { padding: 24px; gap: 18px; }
  .footer-bottom { flex-direction: column; }
}

/* Refinement: cleaner landing hero after review */
.hero--refined {
  grid-template-columns: minmax(0, .92fr) minmax(360px, .78fr);
  gap: clamp(40px, 6vw, 92px);
  padding-top: 138px;
  align-items: center;
}
.hero--refined .hero__content {
  max-width: 740px;
}
.hero--refined h1 {
  max-width: 720px;
  font-size: clamp(3.4rem, 5.55vw, 6.15rem);
  line-height: .96;
  letter-spacing: -.072em;
}
.hero--refined .hero__lead {
  max-width: 610px;
  margin-top: 24px;
}
.hero__visual--clean {
  min-height: 560px;
  place-items: center;
}
.portrait-card--clean {
  width: min(470px, 100%);
  height: 560px;
  border-radius: 38px;
  box-shadow: 0 34px 88px rgba(11,4,37,.26);
}
.portrait-card--clean img {
  width: 108%;
}
.hero-badge--clean {
  right: 50%;
  bottom: 22px;
  transform: translateX(50%);
  max-width: calc(100% - 34px);
  white-space: nowrap;
  background: rgba(255,255,255,.82);
}
.hero-badge--clean span {
  overflow: hidden;
  text-overflow: ellipsis;
}

@media (max-width: 980px) {
  .hero--refined {
    grid-template-columns: 1fr;
    padding-top: 124px;
  }
  .hero__visual--clean {
    order: -1;
    min-height: 500px;
  }
  .portrait-card--clean {
    width: min(430px, 92vw);
    height: 500px;
  }
  .hero--refined h1 {
    max-width: 760px;
    font-size: clamp(3rem, 10vw, 5.5rem);
  }
}

@media (max-width: 640px) {
  .hero--refined {
    padding-top: 112px;
  }
  .hero--refined h1 {
    font-size: clamp(2.75rem, 13vw, 4.25rem);
    letter-spacing: -.065em;
  }
  .hero__visual--clean {
    min-height: 410px;
  }
  .portrait-card--clean {
    height: 410px;
    border-radius: 30px;
  }
  .hero-badge--clean {
    bottom: 12px;
    font-size: 10px;
  }
}

/* Added: trusted brands logo wall on landing page */
.trusted-brands {
  display: grid;
  grid-template-columns: minmax(260px, .42fr) minmax(0, 1fr);
  gap: clamp(24px, 4vw, 58px);
  align-items: stretch;
  padding-top: clamp(36px, 4vw, 58px);
  padding-bottom: clamp(54px, 6vw, 86px);
}
.trusted-brands__copy {
  position: relative;
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(8px, 2vw, 24px) 0;
}
.trusted-brands__copy h2 {
  font-size: clamp(2.4rem, 4.2vw, 4.85rem);
  color: var(--blue);
}
.trusted-brands__copy p {
  max-width: 330px;
  margin: 22px 0 0;
}
.trusted-brands__panel {
  position: relative;
  overflow: hidden;
  min-height: 310px;
  padding: clamp(18px, 2.4vw, 30px);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 16% 0%, rgba(71,51,176,.08), transparent 20rem),
    linear-gradient(135deg, rgba(255,255,255,.78), rgba(255,255,255,.48));
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 24px 70px rgba(11,4,37,.08);
}
.trusted-brands__panel::before {
  content: "";
  position: absolute;
  inset: -35% auto auto 58%;
  width: 360px;
  height: 360px;
  border-radius: 50%;
  background: rgba(71,51,176,.08);
  filter: blur(3px);
}
.trusted-brands__topline {
  position: relative;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 22px;
  color: rgba(11,4,37,.58);
  font: 800 11px/1 'Montserrat', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.logo-marquee-wall {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 14px;
  padding: 2px 0;
}
.logo-marquee {
  position: relative;
  overflow: hidden;
  border-radius: 26px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
.logo-marquee__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: logoSlideLeft 34s linear infinite;
}
.logo-marquee--right .logo-marquee__track {
  animation-name: logoSlideRight;
  animation-duration: 40s;
}
.logo-marquee:hover .logo-marquee__track {
  animation-play-state: paused;
}
.logo-marquee__set {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
  padding-right: 12px;
}
.client-logo {
  position: relative;
  flex: 0 0 clamp(142px, 13vw, 190px);
  min-height: 86px;
  display: grid;
  place-items: center;
  padding: 18px;
  border-radius: 22px;
  background: rgba(255,255,255,.58);
  border: 1px solid rgba(71,51,176,.09);
  box-shadow: 0 10px 30px rgba(11,4,37,.04);
  transition: transform .25s ease, background .25s ease, border-color .25s ease, box-shadow .25s ease;
}
.client-logo--priority {
  flex-basis: clamp(166px, 15vw, 218px);
  min-height: 92px;
  background: rgba(255,255,255,.74);
  border-color: rgba(71,51,176,.15);
  box-shadow: 0 14px 36px rgba(11,4,37,.06);
}
.client-logo::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 16px;
  border: 1px solid transparent;
  transition: border-color .25s ease;
  pointer-events: none;
}
.client-logo img {
  max-width: 100%;
  max-height: 42px;
  object-fit: contain;
  opacity: .78;
  filter: saturate(.35);
  transition: opacity .25s ease, transform .25s ease, filter .25s ease;
}
.client-logo--priority img {
  max-height: 48px;
  opacity: .9;
  filter: saturate(.7);
}
.client-logo:hover {
  transform: translateY(-4px);
  background: rgba(255,255,255,.9);
  border-color: rgba(71,51,176,.20);
  box-shadow: 0 18px 44px rgba(11,4,37,.08);
}
.client-logo:hover::after { border-color: rgba(71,51,176,.12); }
.client-logo:hover img {
  opacity: 1;
  transform: scale(1.04);
  filter: saturate(1);
}
@keyframes logoSlideLeft {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@keyframes logoSlideRight {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .logo-marquee__track { animation: none; transform: none; }
}

@media (max-width: 1050px) {
  .trusted-brands { grid-template-columns: 1fr; }
  .trusted-brands__copy { padding: 0; }
  .trusted-brands__copy p { max-width: 620px; }
  .client-logo { flex-basis: 158px; }
  .client-logo--priority { flex-basis: 178px; }
}

@media (max-width: 720px) {
  .trusted-brands { gap: 22px; padding-top: 42px; }
  .trusted-brands__panel { padding: 16px; border-radius: 26px; }
  .trusted-brands__topline { flex-direction: column; line-height: 1.35; }
  .logo-marquee-wall { gap: 10px; }
  .logo-marquee { border-radius: 20px; }
  .client-logo { flex-basis: 132px; min-height: 74px; padding: 14px; border-radius: 18px; }
  .client-logo--priority { flex-basis: 148px; min-height: 78px; }
  .client-logo img { max-height: 34px; }
  .client-logo--priority img { max-height: 38px; }
}


.client-logo--text {
  min-width: 210px;
  height: 86px;
  display: grid;
  place-items: center;
  padding: 0 26px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(71,51,176,.12);
}
.client-logo--text span {
  color: var(--black);
  font: 900 clamp(.92rem, 1.4vw, 1.18rem)/1.1 'Montserrat', sans-serif;
  letter-spacing: -.035em;
  text-align: center;
  white-space: normal;
}
.client-logo--priority.client-logo--text {
  min-width: 260px;
  height: 96px;
  background: rgba(255,255,255,.9);
  box-shadow: 0 18px 45px rgba(71,51,176,.14);
}
.client-logo--priority.client-logo--text span {
  color: var(--blue);
  font-size: clamp(1.02rem, 1.55vw, 1.28rem);
}

/* Work page restructure: division-first archive, no oversized intro hero */
.work-divisions {
  padding-top: 142px;
}
.work-division-nav {
  position: sticky;
  top: 104px;
  z-index: 18;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 42px;
  padding: 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.76);
  border: 1px solid rgba(255,255,255,.72);
  backdrop-filter: blur(18px);
  box-shadow: 0 15px 42px rgba(11,4,37,.08);
}
.division-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 16px;
  border-radius: 999px;
  font: 900 12px/1 'Montserrat', sans-serif;
  color: rgba(11,4,37,.66);
  border: 1px solid rgba(71,51,176,.10);
  background: rgba(255,255,255,.44);
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
}
.division-pill:hover {
  transform: translateY(-2px);
  background: var(--black);
  border-color: var(--black);
  color: var(--white);
}
.work-category-stack {
  display: grid;
  gap: clamp(34px, 5vw, 76px);
}
.work-category-section {
  scroll-margin-top: 130px;
  padding: clamp(28px, 4.5vw, 52px);
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.52);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 20px 60px rgba(11,4,37,.08);
}
.work-category-head {
  display: grid;
  grid-template-columns: .78fr 1fr;
  gap: 26px;
  align-items: end;
  margin-bottom: 30px;
}
.work-category-head h1 {
  font-size: clamp(2.55rem, 5.8vw, 6.4rem);
  letter-spacing: -.08em;
}
.work-category-head p {
  max-width: 610px;
  margin: 0 0 8px auto;
  font-size: 1.02rem;
}
.work-division-grid {
  grid-template-columns: repeat(6, 1fr);
}
.work-division-grid .project-card {
  grid-column: span 3;
  background: rgba(255,255,255,.72);
  border-color: rgba(71,51,176,.13);
}
.work-division-grid .project-card__body,
.work-division-grid .project-card__body h3 {
  color: var(--black);
}
.work-division-grid .project-card__body p {
  color: var(--muted);
}
.empty-division {
  display: grid;
  gap: 6px;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(11,4,37,.04);
  color: var(--muted);
}
.empty-division strong { color: var(--black); }

/* Case study structure: requested client/year/brief/problem/thinking/solution/steps/results flow */
.case-external-link { margin-top: 22px; }
.case-deep-dive {
  display: grid;
  grid-template-columns: 310px 1fr;
  gap: 32px;
  align-items: start;
}
.case-deep-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.case-info-card,
.step-card {
  padding: clamp(22px, 3vw, 32px);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.68);
  box-shadow: 0 18px 50px rgba(11,4,37,.07);
}
.case-info-card p,
.step-card p { margin: 0; }
.steps-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
}
.step-card {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 210px;
}
.step-card span {
  font: 900 clamp(2rem, 4vw, 3.8rem)/.85 'Montserrat', sans-serif;
  letter-spacing: -.07em;
  color: var(--blue);
}
.case-gallery .section-head h2 {
  max-width: 980px;
  font-size: clamp(1.9rem, 3.3vw, 3.9rem);
  letter-spacing: -.055em;
}

@media (max-width: 1050px) {
  .work-category-head,
  .case-deep-dive {
    grid-template-columns: 1fr;
  }
  .work-category-head p {
    margin-left: 0;
  }
  .work-division-grid,
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .work-division-grid .project-card {
    grid-column: span 1;
  }
}

@media (max-width: 720px) {
  .work-divisions {
    padding-top: 112px;
  }
  .work-division-nav {
    top: 82px;
    border-radius: 24px;
    overflow-x: auto;
    flex-wrap: nowrap;
    justify-content: flex-start;
  }
  .division-pill {
    flex: 0 0 auto;
  }
  .work-category-section {
    padding: 24px 16px;
    border-radius: 26px;
  }
  .work-category-head h1 {
    font-size: clamp(2.4rem, 15vw, 4.2rem);
  }
  .work-division-grid,
  .case-deep-grid,
  .steps-grid {
    grid-template-columns: 1fr;
  }
  .step-card {
    min-height: auto;
  }
}


/* Final title audit: balanced, aligned, and responsive headings */
h1, h2, h3 {
  text-wrap: balance;
  overflow-wrap: anywhere;
}
h1 {
  font-size: clamp(2.85rem, 5.6vw, 5.9rem);
  line-height: .96;
  letter-spacing: -.075em;
}
h2 {
  font-size: clamp(2rem, 3.6vw, 4.25rem);
  line-height: 1;
  letter-spacing: -.055em;
}
h3 {
  font-size: clamp(1.22rem, 1.7vw, 1.86rem);
  line-height: 1.08;
}
.section-head,
.about-card,
.final-cta,
.video-feature__copy,
.contact-copy,
.page-hero > div,
.case-hero__copy {
  text-align: left;
}
.final-cta { text-align: center; }
.final-cta .section-kicker { justify-content: center; }
.hero--refined h1 {
  max-width: 780px;
  font-size: clamp(3.25rem, 6.4vw, 6.15rem);
  line-height: .94;
  letter-spacing: -.078em;
}
.trusted-brands__copy h2 {
  font-size: clamp(2.1rem, 3.5vw, 4.05rem);
  line-height: 1.02;
  letter-spacing: -.055em;
}
.section-head h2 {
  max-width: 880px;
}
.work-category-head h1 {
  font-size: clamp(2.45rem, 4.9vw, 5.35rem);
  line-height: .96;
}
.case-hero h1,
.page-hero h1,
.about-hero h1,
.contact-hero h1 {
  max-width: 900px;
  font-size: clamp(2.75rem, 5vw, 5.45rem);
}
.case-gallery .section-head h2 {
  font-size: clamp(1.8rem, 2.9vw, 3.35rem);
}
.expertise-card h3 {
  font-size: clamp(1.45rem, 2vw, 2.05rem);
}
.project-card__body h3 {
  line-height: 1.08;
}
@media (max-width: 980px) {
  h1 { font-size: clamp(2.65rem, 9vw, 4.8rem); }
  h2 { font-size: clamp(1.9rem, 7vw, 3.7rem); }
  .hero--refined h1,
  .case-hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.75rem, 9vw, 4.85rem);
  }
}
@media (max-width: 720px) {
  h1 { font-size: clamp(2.35rem, 12vw, 4.1rem); }
  h2 { font-size: clamp(1.75rem, 9.5vw, 3.2rem); }
  h3 { font-size: clamp(1.15rem, 6vw, 1.65rem); }
  .section-head,
  .about-card,
  .video-feature__copy,
  .contact-copy,
  .page-hero > div,
  .case-hero__copy,
  .work-category-head {
    text-align: left;
  }
  .hero--refined h1,
  .case-hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .work-category-head h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.85rem);
    letter-spacing: -.065em;
  }
  .trusted-brands__copy h2 {
    font-size: clamp(2rem, 10vw, 3.15rem);
  }
}

/* Typography resize pass: smaller headings and cleaner reading scale across the full website */
body {
  font-size: 15px;
}
p,
li,
input,
select,
textarea {
  font-size: .95rem;
}
p,
ul {
  line-height: 1.65;
}
h1 {
  font-size: clamp(2.35rem, 4.6vw, 4.75rem);
  line-height: 1;
  letter-spacing: -.065em;
}
h2 {
  font-size: clamp(1.65rem, 3vw, 3.25rem);
  line-height: 1.04;
  letter-spacing: -.045em;
}
h3 {
  font-size: clamp(1.05rem, 1.35vw, 1.48rem);
  line-height: 1.16;
  letter-spacing: -.028em;
}
.hero--refined h1,
.case-hero h1,
.page-hero h1,
.about-hero h1,
.contact-hero h1 {
  font-size: clamp(2.35rem, 4.8vw, 4.8rem);
  line-height: .98;
  letter-spacing: -.066em;
}
.work-category-head h1 {
  font-size: clamp(2rem, 4vw, 4.15rem);
  line-height: 1;
}
.section-head h2,
.final-cta h2,
.about-card h2,
.split-card h2,
.video-feature__copy h2,
.contact-copy h1 {
  max-width: 780px;
}
.trusted-brands__copy h2 {
  font-size: clamp(1.85rem, 2.8vw, 3.2rem);
  line-height: 1.05;
}
.case-gallery .section-head h2 {
  font-size: clamp(1.55rem, 2.35vw, 2.75rem);
}
.expertise-card h3,
.capability-card h3,
.project-card__body h3,
.video-card__body h3,
.timeline-card h3 {
  font-size: clamp(1.08rem, 1.45vw, 1.6rem);
  line-height: 1.14;
}
.hero__lead,
.page-hero p,
.case-hero__copy p,
.about-hero__copy p,
.contact-copy p,
.summary-card p,
.case-text-grid p {
  font-size: clamp(.94rem, 1.05vw, 1rem);
}
.marquee span,
.industry-cloud span {
  font-size: clamp(.95rem, 1.45vw, 1.42rem);
  letter-spacing: -.025em;
}
.stat strong {
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  letter-spacing: -.052em;
}
.step-card span {
  font-size: clamp(1.7rem, 3vw, 2.9rem);
}
.client-logo--text span {
  font-size: clamp(.82rem, 1.05vw, 1rem);
}
.client-logo--priority.client-logo--text span {
  font-size: clamp(.9rem, 1.18vw, 1.08rem);
}

@media (max-width: 980px) {
  body {
    font-size: 14.5px;
  }
  h1,
  .hero--refined h1,
  .case-hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-hero h1 {
    font-size: clamp(2.15rem, 7.5vw, 3.9rem);
    letter-spacing: -.058em;
  }
  h2 {
    font-size: clamp(1.55rem, 5.6vw, 2.9rem);
  }
  .trusted-brands__copy h2,
  .work-category-head h1 {
    font-size: clamp(1.9rem, 7vw, 3.35rem);
  }
}

@media (max-width: 720px) {
  body {
    font-size: 14px;
  }
  h1,
  .hero--refined h1,
  .case-hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .work-category-head h1 {
    font-size: clamp(1.95rem, 10vw, 3.15rem);
    line-height: 1.02;
    letter-spacing: -.052em;
  }
  h2,
  .trusted-brands__copy h2,
  .case-gallery .section-head h2 {
    font-size: clamp(1.45rem, 7.4vw, 2.45rem);
    line-height: 1.08;
  }
  h3,
  .expertise-card h3,
  .capability-card h3,
  .project-card__body h3,
  .video-card__body h3,
  .timeline-card h3 {
    font-size: clamp(1rem, 4.8vw, 1.32rem);
    line-height: 1.18;
  }
  .hero__lead,
  .page-hero p,
  .case-hero__copy p,
  .about-hero__copy p,
  .contact-copy p,
  .summary-card p,
  .case-text-grid p {
    font-size: .93rem;
  }
  .marquee span,
  .industry-cloud span {
    font-size: clamp(.88rem, 4.2vw, 1.2rem);
  }
  .stat strong {
    font-size: clamp(1.55rem, 8vw, 2.35rem);
  }
}


/* WIP update: premium home portrait and single-row trusted brand logos */
.hero--refined {
  grid-template-columns: minmax(0, .82fr) minmax(430px, .92fr);
}
.hero__visual--clean {
  min-height: 650px;
}
.portrait-card--clean {
  width: min(560px, 100%);
  height: 650px;
  border-radius: 44px;
  box-shadow: 0 42px 110px rgba(11,4,37,.30);
}
.portrait-card--clean img {
  width: 118%;
  bottom: -3px;
}

.logo-marquee-wall--single {
  display: block;
  padding-top: clamp(12px, 2vw, 24px);
}
.logo-marquee--single {
  border-radius: 30px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logo-marquee--single .logo-marquee__track {
  animation-name: logoSlideLeft;
  animation-duration: 30s;
}
.logo-marquee--single .logo-marquee__set {
  gap: 14px;
  padding-right: 14px;
}
.trusted-brands__panel {
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.client-logo--image {
  flex: 0 0 clamp(158px, 13vw, 196px);
  height: 110px;
  min-height: 110px;
  padding: 20px 24px;
  border-radius: 24px;
  background: rgba(255,255,255,.74);
  border-color: rgba(71,51,176,.12);
  box-shadow: 0 14px 38px rgba(11,4,37,.045);
}
.client-logo--image img {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 66px;
  object-fit: contain;
  opacity: .86;
  filter: none;
}
.client-logo--horizontal { flex-basis: clamp(190px, 16vw, 230px); }
.client-logo--horizontal-wide { flex-basis: clamp(230px, 20vw, 300px); }
.client-logo--vertical { flex-basis: clamp(146px, 12vw, 178px); }
.client-logo--symbol { flex-basis: clamp(150px, 12vw, 188px); }
.client-logo--horizontal img { max-height: 54px; }
.client-logo--horizontal-wide img { max-height: 62px; }
.client-logo--vertical img { max-height: 74px; }
.client-logo--symbol img { max-height: 72px; }
.client-logo--image:hover img {
  opacity: 1;
  filter: none;
}

@media (max-width: 980px) {
  .hero--refined {
    grid-template-columns: 1fr;
  }
  .hero__visual--clean {
    min-height: 570px;
  }
  .portrait-card--clean {
    width: min(500px, 92vw);
    height: 570px;
  }
  .trusted-brands__panel {
    min-height: 238px;
  }
}

@media (max-width: 720px) {
  .logo-marquee-wall--single { padding-top: 10px; }
  .client-logo--image {
    flex-basis: 150px;
    height: 88px;
    min-height: 88px;
    padding: 16px 18px;
    border-radius: 20px;
  }
  .client-logo--horizontal { flex-basis: 178px; }
  .client-logo--horizontal-wide { flex-basis: 218px; }
  .client-logo--vertical,
  .client-logo--symbol { flex-basis: 142px; }
  .client-logo--image img { max-height: 50px; }
  .client-logo--horizontal img { max-height: 42px; }
  .client-logo--horizontal-wide img { max-height: 48px; }
  .client-logo--vertical img,
  .client-logo--symbol img { max-height: 56px; }
}

@media (max-width: 640px) {
  .hero__visual--clean {
    min-height: 500px;
  }
  .portrait-card--clean {
    width: min(410px, 96vw);
    height: 500px;
    border-radius: 32px;
  }
  .portrait-card--clean img {
    width: 123%;
  }
}

/* Final home spacing and premium portrait cleanup */
.hero--refined {
  min-height: auto;
  padding-top: clamp(122px, 10vw, 138px);
  padding-bottom: clamp(22px, 3vw, 38px);
  gap: clamp(28px, 4vw, 58px);
}

.hero--refined h1,
.case-hero h1,
.page-hero h1,
.about-hero h1,
.contact-hero h1,
h1 {
  line-height: 1.08;
  letter-spacing: -.055em;
}

h2,
.trusted-brands__copy h2,
.section-head h2,
.final-cta h2 {
  line-height: 1.12;
  letter-spacing: -.04em;
}

.hero__visual--clean {
  min-height: clamp(540px, 47vw, 620px);
  place-items: end center;
}

.portrait-card--clean {
  width: min(590px, 100%);
  height: clamp(540px, 47vw, 620px);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.portrait-card--clean::after {
  display: none;
}

.portrait-card--clean img {
  width: 124%;
  bottom: -8px;
  filter: drop-shadow(0 34px 52px rgba(11, 4, 37, .18));
}

.stats-band--top {
  padding-top: clamp(12px, 2vw, 24px);
  padding-bottom: clamp(18px, 2.4vw, 34px);
  margin-top: 0;
  margin-bottom: 0;
}

.stats-band {
  gap: clamp(12px, 1.6vw, 18px);
}

.trusted-brands {
  gap: clamp(18px, 2.5vw, 36px);
  padding-top: clamp(22px, 3vw, 36px);
  padding-bottom: clamp(42px, 5vw, 66px);
}

.trusted-brands__copy {
  padding: 0;
}

.trusted-brands__copy p {
  margin-top: 14px;
}

.trusted-brands__panel {
  min-height: 232px;
  padding: clamp(16px, 2vw, 24px);
}

.trusted-brands__topline {
  margin-bottom: 14px;
}

.logo-marquee-wall--single {
  padding-top: 6px;
}

.client-logo--image {
  height: 98px;
  min-height: 98px;
}

@media (max-width: 980px) {
  .hero--refined {
    padding-bottom: 18px;
    gap: 22px;
  }
  .hero__visual--clean {
    min-height: 500px;
  }
  .portrait-card--clean {
    width: min(500px, 92vw);
    height: 500px;
  }
  .portrait-card--clean img {
    width: 120%;
  }
  .stats-band--top {
    padding-top: 10px;
    padding-bottom: 24px;
  }
  .trusted-brands {
    padding-top: 20px;
    gap: 18px;
  }
}

@media (max-width: 640px) {
  .hero--refined h1,
  .case-hero h1,
  .page-hero h1,
  .about-hero h1,
  .contact-hero h1,
  .work-category-head h1,
  h1 {
    line-height: 1.1;
    letter-spacing: -.045em;
  }
  h2,
  .trusted-brands__copy h2,
  .case-gallery .section-head h2 {
    line-height: 1.14;
  }
  .hero__visual--clean {
    min-height: 440px;
  }
  .portrait-card--clean {
    width: min(390px, 96vw);
    height: 440px;
  }
  .portrait-card--clean img {
    width: 124%;
    bottom: -6px;
  }
  .hero__meta {
    margin-top: 26px;
  }
  .stats-band--top {
    padding-top: 6px;
    padding-bottom: 18px;
  }
  .trusted-brands {
    padding-top: 16px;
    padding-bottom: 42px;
  }
  .trusted-brands__panel {
    min-height: 200px;
  }
  .client-logo--image {
    height: 82px;
    min-height: 82px;
  }
}

/* Client update: clean home hero ending + simplified trusted brands wall */
.portrait-card--clean img {
  width: auto;
  height: 112%;
  max-width: none;
  max-height: none;
  bottom: -22px;
  filter: drop-shadow(0 30px 48px rgba(11, 4, 37, .16));
}

.trusted-brands__topline,
.trusted-brands__copy p {
  display: none !important;
}

.trusted-brands {
  align-items: center;
  gap: clamp(18px, 2.2vw, 30px);
  padding-top: clamp(18px, 2.4vw, 30px);
  padding-bottom: clamp(36px, 4.5vw, 56px);
}

.trusted-brands__copy {
  align-self: center;
}

.trusted-brands__panel {
  min-height: clamp(176px, 15vw, 210px);
  padding: clamp(14px, 1.8vw, 22px);
  justify-content: center;
}

.logo-marquee-wall--single {
  padding-top: 0;
}

.logo-marquee--single {
  border-radius: 28px;
}

.client-logo--image {
  height: 94px;
  min-height: 94px;
  padding: 18px 24px;
}

.client-logo--image img {
  opacity: .92;
}

.client-logo--vertical img { max-height: 68px; }
.client-logo--symbol img { max-height: 72px; }
.client-logo--horizontal img { max-height: 52px; }
.client-logo--horizontal-wide img { max-height: 58px; }

@media (max-width: 980px) {
  .portrait-card--clean img {
    height: 110%;
    bottom: -18px;
  }
  .trusted-brands__panel {
    min-height: 184px;
  }
}

@media (max-width: 640px) {
  .portrait-card--clean img {
    height: 108%;
    bottom: -14px;
  }
  .trusted-brands__panel {
    min-height: 172px;
  }
  .client-logo--image {
    height: 78px;
    min-height: 78px;
  }
}

/* Client update: center creative services strip */
.marquee-section {
  padding: clamp(10px, 1.4vw, 18px) 0 clamp(46px, 5vw, 66px);
}

.marquee {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 64px;
}

.marquee__track {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 2vw, 28px);
  padding: 0 clamp(18px, 3vw, 42px);
}

.marquee__track span:nth-child(n+8) {
  display: none;
}

.marquee span {
  flex: 0 0 auto;
  padding: 20px 0;
  font-size: clamp(.9rem, 1.18vw, 1.1rem);
  line-height: 1;
  letter-spacing: -.03em;
}

@media (max-width: 820px) {
  .marquee {
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }
  .marquee::-webkit-scrollbar { display: none; }
  .marquee__track {
    width: max-content;
    max-width: none;
    justify-content: flex-start;
    gap: 22px;
    padding-inline: 22px;
  }
}

/* Client update: replace creative tracks with clean premium service cards */
.creative-strip--clean {
  padding-top: clamp(48px, 6vw, 78px);
  padding-bottom: clamp(62px, 7vw, 96px);
}

.creative-strip--clean .section-head {
  max-width: 780px;
  margin-bottom: clamp(24px, 3.5vw, 42px);
}

.creative-strip--clean .section-head h2 {
  max-width: 760px;
  font-size: clamp(2.05rem, 4.2vw, 4.45rem);
}

.creative-strip--clean .section-head p {
  max-width: 640px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 24px);
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 370px;
  padding: 24px;
  border-radius: 30px;
  border: 1px solid rgba(71, 51, 176, .14);
  background:
    radial-gradient(circle at 78% 14%, rgba(255,255,255,.94), transparent 12rem),
    linear-gradient(145deg, rgba(255,255,255,.84), rgba(242,236,247,.78));
  box-shadow: 0 22px 65px rgba(11, 4, 37, .075);
  isolation: isolate;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(135deg, rgba(255,255,255,.88), rgba(255,255,255,0) 54%),
    radial-gradient(circle at 18% 80%, rgba(71,51,176,.12), transparent 13rem);
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -16% -30% auto;
  width: 190px;
  height: 190px;
  border-radius: 999px;
  background: rgba(71,51,176,.075);
  filter: blur(2px);
}

.service-card:hover {
  transform: translateY(-7px);
  border-color: rgba(71, 51, 176, .24);
  box-shadow: 0 28px 90px rgba(11, 4, 37, .12);
}

.service-card__meta {
  position: relative;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font: 900 11px/1 'Montserrat', sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
}

.service-card__meta span:last-child {
  color: rgba(11,4,37,.42);
}

.service-card__art {
  position: relative;
  z-index: 2;
  height: 178px;
  margin: 22px 0 18px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255,255,255,.72), rgba(255,255,255,.20)),
    radial-gradient(circle at 50% 24%, rgba(101,79,226,.20), transparent 10rem);
  border: 1px solid rgba(255,255,255,.64);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.8), 0 16px 42px rgba(11,4,37,.055);
}

.service-card__art span,
.service-card__art i {
  position: absolute;
  display: block;
}

.service-card__content {
  position: relative;
  z-index: 4;
}

.service-card__content h3 {
  margin-bottom: 10px;
  font-size: clamp(1.28rem, 1.65vw, 1.72rem);
  line-height: 1.14;
  letter-spacing: -.045em;
  color: var(--black);
}

.service-card__content p {
  max-width: 330px;
  margin: 0;
  font-size: .94rem;
  line-height: 1.58;
  color: rgba(11,4,37,.62);
}

.service-card--branding { background: linear-gradient(145deg, #ffffff, #f2ecf7 58%, #e6ddff); }
.service-card--social { background: linear-gradient(145deg, #ffffff, #f0ecff 48%, #ddd8ff); }
.service-card--advertising { background: linear-gradient(145deg, #fbf9ff, #ffffff 42%, #ebe5ff); }
.service-card--posters { background: linear-gradient(145deg, #ffffff, #f5efff 52%, #e9e2ff); }
.service-card--video { background: linear-gradient(145deg, #120832, #25135e 56%, #4733B0); }
.service-card--motion { background: linear-gradient(145deg, #0B0425, #1a0e4e 52%, #5f4ce0); }
.service-card--video .service-card__meta,
.service-card--motion .service-card__meta { color: rgba(255,255,255,.92); }
.service-card--video .service-card__meta span:last-child,
.service-card--motion .service-card__meta span:last-child { color: rgba(255,255,255,.58); }
.service-card--video .service-card__content h3,
.service-card--motion .service-card__content h3 { color: var(--white); }
.service-card--video .service-card__content p,
.service-card--motion .service-card__content p { color: rgba(255,255,255,.70); }
.service-card--video .service-card__art,
.service-card--motion .service-card__art {
  border-color: rgba(255,255,255,.13);
  background:
    linear-gradient(135deg, rgba(255,255,255,.12), rgba(255,255,255,.035)),
    radial-gradient(circle at 50% 18%, rgba(255,255,255,.16), transparent 10rem);
}

.brand-device {
  left: 32px;
  top: 24px;
  width: 108px;
  height: 130px;
  border-radius: 24px;
  background: rgba(255,255,255,.88);
  border: 1px solid rgba(71,51,176,.12);
  box-shadow: 18px 18px 0 rgba(71,51,176,.09);
}
.brand-mark {
  left: 65px;
  top: 50px;
  width: 68px;
  height: 68px;
  display: grid !important;
  place-items: center;
  border-radius: 22px;
  background: var(--black);
  color: var(--white);
  font: 900 34px/1 'Montserrat', sans-serif;
}
.brand-line { right: 28px; height: 12px; border-radius: 999px; background: rgba(11,4,37,.18); }
.brand-line--one { top: 54px; width: 86px; }
.brand-line--two { top: 78px; width: 56px; }
.brand-chip { bottom: 34px; width: 24px; height: 24px; border-radius: 50%; border: 3px solid rgba(255,255,255,.9); }
.brand-chip--one { right: 90px; background: var(--black); }
.brand-chip--two { right: 58px; background: var(--blue); }
.brand-chip--three { right: 26px; background: #dcd3ff; }

.social-phone {
  left: 50%;
  top: 50%;
  width: 86px;
  height: 142px;
  border-radius: 26px;
  transform: translate(-50%, -50%);
  background: var(--black);
  border: 7px solid rgba(255,255,255,.9);
  box-shadow: 0 20px 42px rgba(11,4,37,.18);
}
.social-phone::before,
.social-phone::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  height: 9px;
  border-radius: 999px;
  background: rgba(255,255,255,.42);
}
.social-phone::before { top: 72px; }
.social-phone::after { top: 94px; width: 32px; right: auto; }
.social-post { border-radius: 22px; background: rgba(255,255,255,.86); border: 1px solid rgba(71,51,176,.12); box-shadow: 0 17px 36px rgba(11,4,37,.10); }
.social-post--one { left: 22px; top: 26px; width: 72px; height: 92px; transform: rotate(-8deg); }
.social-post--two { right: 22px; top: 36px; width: 72px; height: 92px; transform: rotate(8deg); }
.social-post--three { left: 52px; bottom: 20px; width: 120px; height: 42px; border-radius: 18px; }
.social-like { right: 66px; bottom: 34px; width: 24px; height: 24px; border-radius: 50%; background: var(--blue); }

.ad-board {
  left: 26px;
  right: 26px;
  top: 30px;
  height: 94px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--blue), #6b58ec);
  box-shadow: 0 20px 48px rgba(71,51,176,.22);
}
.ad-pill {
  left: 48px;
  top: 56px;
  padding: 10px 18px;
  border-radius: 999px;
  background: rgba(255,255,255,.94);
  color: var(--blue);
  font: 900 20px/1 'Montserrat', sans-serif;
  letter-spacing: -.04em;
}
.ad-arrow {
  right: 58px;
  top: 56px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 3px solid rgba(255,255,255,.84);
}
.ad-arrow::after {
  content: "";
  position: absolute;
  left: 15px;
  top: 11px;
  width: 12px;
  height: 12px;
  border-top: 3px solid #fff;
  border-right: 3px solid #fff;
  transform: rotate(45deg);
}
.ad-target { right: 42px; bottom: 25px; width: 36px; height: 36px; border-radius: 50%; border: 6px solid rgba(71,51,176,.28); }
.ad-line { left: 48px; height: 10px; border-radius: 999px; background: rgba(11,4,37,.13); }
.ad-line--one { bottom: 46px; width: 132px; }
.ad-line--two { bottom: 26px; width: 90px; }

.poster-sheet { border-radius: 22px; background: rgba(255,255,255,.9); border: 1px solid rgba(71,51,176,.14); box-shadow: 0 19px 42px rgba(11,4,37,.12); }
.poster-sheet--back { left: 54px; top: 30px; width: 104px; height: 132px; transform: rotate(-7deg); opacity: .72; }
.poster-sheet--front { left: 94px; top: 18px; width: 112px; height: 142px; transform: rotate(5deg); }
.poster-type { left: 118px; height: 13px; border-radius: 999px; background: var(--blue); z-index: 2; }
.poster-type--one { top: 64px; width: 60px; }
.poster-type--two { top: 92px; width: 38px; background: rgba(11,4,37,.22); }
.poster-dot { right: 44px; top: 42px; width: 38px; height: 38px; border-radius: 50%; background: rgba(71,51,176,.18); }
.poster-dot::after { content: ""; position: absolute; inset: 10px; border-radius: inherit; background: var(--blue); }

.video-screen {
  left: 24px;
  right: 24px;
  top: 24px;
  height: 98px;
  border-radius: 24px;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.12);
  box-shadow: inset 0 1px 0 rgba(255,255,255,.10);
}
.video-play {
  left: 50%;
  top: 68px;
  width: 0;
  height: 0;
  transform: translate(-40%, -50%);
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 30px solid rgba(255,255,255,.9);
}
.video-timeline { left: 34px; height: 12px; border-radius: 999px; background: rgba(255,255,255,.17); overflow: hidden; }
.video-timeline::after { content: ""; position: absolute; inset: 0 auto 0 0; width: 62%; border-radius: inherit; background: rgba(255,255,255,.68); }
.video-timeline--one { bottom: 48px; width: 162px; }
.video-timeline--two { bottom: 28px; width: 112px; }
.video-timeline--three { bottom: 28px; left: 158px; width: 62px; }
.video-cut { right: 32px; bottom: 26px; width: 44px; height: 44px; border-radius: 50%; background: var(--blue-2); }
.video-cut::after { content: ""; position: absolute; left: 17px; top: 13px; border-top: 9px solid transparent; border-bottom: 9px solid transparent; border-left: 13px solid #fff; }

.motion-path {
  left: 28px;
  top: 78px;
  width: 210px;
  height: 76px;
  border: 2px dashed rgba(255,255,255,.30);
  border-color: rgba(255,255,255,.30) transparent transparent transparent;
  border-radius: 50% 50% 0 0;
  transform: rotate(-8deg);
}
.motion-node { width: 26px; height: 26px; border-radius: 50%; background: rgba(255,255,255,.92); box-shadow: 0 10px 25px rgba(0,0,0,.22); }
.motion-node--one { left: 32px; top: 114px; }
.motion-node--two { left: 128px; top: 48px; background: var(--blue-2); }
.motion-node--three { right: 36px; top: 98px; }
.motion-frame { border-radius: 22px; border: 1px solid rgba(255,255,255,.16); background: rgba(255,255,255,.09); backdrop-filter: blur(8px); }
.motion-frame--one { left: 62px; top: 28px; width: 86px; height: 72px; transform: rotate(-7deg); }
.motion-frame--two { right: 52px; top: 54px; width: 84px; height: 98px; transform: rotate(8deg); }
.motion-spark { right: 40px; top: 28px; width: 18px; height: 18px; background: rgba(255,255,255,.85); clip-path: polygon(50% 0, 62% 38%, 100% 50%, 62% 62%, 50% 100%, 38% 62%, 0 50%, 38% 38%); }

@media (max-width: 980px) {
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .service-card { min-height: 350px; }
}

@media (max-width: 820px) {
  .marquee__track span:nth-child(n+7) { display: none; }
}

@media (max-width: 640px) {
  .creative-strip--clean { padding-top: 42px; }
  .service-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { min-height: 330px; border-radius: 24px; padding: 20px; }
  .service-card__art { height: 160px; margin: 18px 0 16px; }
  .service-card__content h3 { font-size: 1.32rem; }
  .service-card__content p { font-size: .9rem; }
}

/* Keep the service strip clean after updating it to six items */
.marquee__track span:nth-child(n+7) {
  display: none;
}


/* Final home polish: moving centered service strip, tighter spacing, engaging about CTA */
.trusted-brands {
  padding-bottom: clamp(22px, 3vw, 36px) !important;
}

.marquee-section {
  padding: 0 0 clamp(20px, 2.4vw, 32px) !important;
  margin: 0 !important;
}

.marquee {
  min-height: 58px !important;
  overflow: hidden !important;
  justify-content: flex-start !important;
}

.marquee__track {
  width: max-content !important;
  max-width: none !important;
  margin: 0 !important;
  padding: 0 !important;
  display: flex !important;
  align-items: center !important;
  justify-content: flex-start !important;
  gap: clamp(34px, 5vw, 74px) !important;
  animation: servicesTicker 32s linear infinite !important;
  transform: translateX(0);
  will-change: transform;
}

.marquee__track span,
.marquee__track span:nth-child(n+7),
.marquee__track span:nth-child(n+8) {
  display: inline-flex !important;
}

.marquee span {
  flex: 0 0 auto !important;
  padding: 18px 0 !important;
  font-size: clamp(.95rem, 1.15vw, 1.14rem) !important;
  letter-spacing: -.025em !important;
  white-space: nowrap !important;
}

@keyframes servicesTicker {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-33.333%, 0, 0); }
}

.creative-strip--clean {
  padding-top: clamp(24px, 3.2vw, 42px) !important;
  padding-bottom: clamp(44px, 5vw, 66px) !important;
}

.creative-strip--clean .section-head {
  margin-bottom: clamp(24px, 3vw, 34px) !important;
}

.creative-strip--clean .section-head h2 {
  font-size: clamp(2rem, 3.35vw, 3.6rem) !important;
  line-height: 1.08 !important;
}

.service-grid--premium {
  gap: clamp(18px, 1.9vw, 24px) !important;
}

.service-grid--premium .service-card {
  min-height: 346px !important;
}

.selected-work.section--dark {
  padding-top: clamp(56px, 6vw, 78px) !important;
  padding-bottom: clamp(56px, 6vw, 78px) !important;
}

.about-cta--engaging {
  padding-top: clamp(42px, 4.6vw, 62px) !important;
  padding-bottom: clamp(34px, 4vw, 54px) !important;
}

.about-card--engaging {
  position: relative;
  overflow: hidden;
  align-items: center;
  min-height: 292px;
  padding: clamp(34px, 4.8vw, 64px) !important;
  background:
    radial-gradient(circle at 92% 20%, rgba(71, 51, 176, .18), transparent 13rem),
    radial-gradient(circle at 10% 92%, rgba(203, 191, 255, .34), transparent 14rem),
    linear-gradient(135deg, rgba(255,255,255,.86), rgba(255,255,255,.58));
  border: 1px solid rgba(255,255,255,.82);
  box-shadow: 0 28px 80px rgba(11, 4, 37, .095);
}

.about-card--engaging::before {
  content: "";
  position: absolute;
  right: clamp(110px, 18vw, 240px);
  top: 50%;
  width: 128px;
  height: 128px;
  border-radius: 50%;
  border: 1px solid rgba(71, 51, 176, .20);
  transform: translateY(-50%);
  background: rgba(255,255,255,.18);
}

.about-card--engaging::after {
  content: "";
  position: absolute;
  right: clamp(46px, 8vw, 98px);
  bottom: clamp(34px, 5vw, 58px);
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 28px -24px 0 rgba(71, 51, 176, .20), -34px -48px 0 rgba(203, 191, 255, .55);
}

.about-card__copy {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.about-card__copy h2 {
  max-width: 740px;
  margin-bottom: 16px;
}

.about-card__copy p {
  max-width: 690px;
}

.about-card__chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.about-card__chips span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(71, 51, 176, .08);
  border: 1px solid rgba(71, 51, 176, .12);
  color: var(--blue);
  font: 800 11px/1 'Montserrat', sans-serif;
  letter-spacing: .02em;
  text-transform: uppercase;
}

.about-card__btn {
  position: relative;
  z-index: 1;
  min-width: 164px;
  justify-content: center;
  padding: 17px 26px !important;
  font-size: 13px !important;
  box-shadow: 0 18px 44px rgba(71, 51, 176, .24);
}

.final-cta {
  padding-top: clamp(38px, 4.2vw, 58px) !important;
  padding-bottom: clamp(56px, 6vw, 78px) !important;
}

.final-cta h2 {
  font-size: clamp(2rem, 3.4vw, 3.7rem) !important;
  line-height: 1.1 !important;
}

@media (max-width: 820px) {
  .marquee {
    overflow: hidden !important;
  }
  .marquee__track {
    gap: 38px !important;
    animation-duration: 24s !important;
  }
  .about-card--engaging {
    min-height: 0;
  }
}

@media (max-width: 640px) {
  .trusted-brands { padding-bottom: 24px !important; }
  .marquee-section { padding-bottom: 24px !important; }
  .creative-strip--clean { padding-top: 28px !important; }
  .service-grid--premium .service-card { min-height: 310px !important; }
  .about-card--engaging {
    padding: 28px !important;
  }
  .about-card__btn {
    width: 100%;
  }
}

/* Site-wide subtle signature background line */
body {
  position: relative;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  opacity: .46;
  background-image:
    url('../images/social-background-line.png'),
    url('../images/social-background-line.png'),
    url('../images/social-background-line.png');
  background-repeat: no-repeat;
  background-size:
    min(62vw, 760px) auto,
    min(46vw, 560px) auto,
    min(52vw, 620px) auto;
  background-position:
    84% 92px,
    7% 820px,
    92% 1530px;
}

main,
.site-footer {
  position: relative;
  z-index: 1;
}

@media (max-width: 900px) {
  body::after {
    opacity: .36;
    background-size: 540px auto, 440px auto, 500px auto;
    background-position: 92% 120px, 2% 760px, 88% 1380px;
  }
}

@media (max-width: 560px) {
  body::after {
    opacity: .28;
    background-size: 390px auto, 340px auto, 380px auto;
    background-position: 118% 100px, -24% 700px, 112% 1260px;
  }
}


/* Footer final polish: compact bullets + single-line tagline */
.footer-tagline {
  display: flex !important;
  align-items: center !important;
  flex-wrap: nowrap !important;
  gap: 7px !important;
  white-space: nowrap !important;
  width: max-content;
  max-width: 100%;
  margin-top: 12px !important;
  margin-bottom: 0 !important;
  font-size: .92rem !important;
  line-height: 1 !important;
}
.footer-tagline span::before,
.footer-tagline span::after {
  content: none !important;
}
.footer-dot {
  display: inline-flex !important;
  color: #CBBFFF !important;
  font-size: .95em !important;
  line-height: 1 !important;
}
.footer-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.footer-list li {
  position: relative;
  padding-left: 16px;
  color: rgba(255,255,255,.72);
  font-size: .94rem;
  line-height: 1.42;
}
.footer-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: .58em;
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: #CBBFFF;
  box-shadow: 0 0 16px rgba(203,191,255,.5);
}
@media (max-width: 720px) {
  .footer-tagline {
    font-size: .86rem !important;
  }
}


/* Client fix: keep the creative services strip moving smoothly */
.marquee-section {
  overflow: hidden !important;
}

.marquee {
  overflow: hidden !important;
  cursor: default;
}

.marquee__track {
  width: max-content !important;
  max-width: none !important;
  min-width: max-content !important;
  justify-content: flex-start !important;
  transform: translate3d(0, 0, 0);
  animation: servicesTicker 26s linear infinite !important;
}

.marquee:hover .marquee__track {
  animation-play-state: running !important;
}

@media (max-width: 820px) {
  .marquee {
    overflow-x: hidden !important;
  }

  .marquee__track {
    animation-duration: 22s !important;
  }
}

/* Final request polish: Work coming soon, experience CV CTA, footer slogan */
.work-coming-soon {
  min-height: 72svh;
  display: grid;
  align-items: center;
  padding-top: 145px !important;
}
.coming-soon-card {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(42px, 8vw, 92px);
  text-align: center;
  border-radius: var(--radius-xl);
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: var(--shadow);
  position: relative;
  overflow: hidden;
}
.coming-soon-card::before {
  content: "";
  position: absolute;
  inset: auto 10% -28% 10%;
  height: 58%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(71,51,176,.18), rgba(71,51,176,0) 68%);
  pointer-events: none;
}
.coming-soon-card > * {
  position: relative;
  z-index: 1;
}
.coming-soon-card h1 {
  margin: 14px 0 18px;
  font-size: clamp(3.8rem, 12vw, 10rem);
  line-height: .88;
  letter-spacing: -.09em;
}
.coming-soon-card p {
  max-width: 620px;
  margin-inline: auto;
  font-size: 1.08rem;
}
.experience-start {
  padding-top: 150px !important;
}
.experience-download-section {
  padding-top: 34px !important;
}
.experience-download-card {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: clamp(24px, 5vw, 70px);
  padding: clamp(34px, 6vw, 70px);
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(11,4,37,.96), rgba(71,51,176,.88));
  color: var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}
.experience-download-card::after {
  content: "";
  position: absolute;
  width: 360px;
  height: 360px;
  right: -120px;
  top: -130px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,.20);
  box-shadow: inset 0 0 70px rgba(255,255,255,.08);
  pointer-events: none;
}
.experience-download-card .section-kicker,
.experience-download-card h2,
.experience-download-card p,
.experience-download-card a {
  position: relative;
  z-index: 1;
}
.experience-download-card .section-kicker {
  color: #CBBFFF;
}
.experience-download-card h2 {
  max-width: 760px;
  color: var(--white);
  font-size: clamp(2.35rem, 4.5vw, 5.2rem);
}
.experience-download-card p {
  max-width: 620px;
  color: rgba(255,255,255,.74);
  margin-bottom: 0;
}
.btn--cv {
  padding: 18px 26px !important;
  font-size: .95rem !important;
  white-space: nowrap;
  box-shadow: 0 18px 44px rgba(71,51,176,.34);
}
.footer-tagline {
  gap: 0 !important;
  letter-spacing: 0 !important;
}
.footer-dot {
  display: none !important;
}
@media (max-width: 820px) {
  .experience-download-card {
    grid-template-columns: 1fr;
    text-align: left;
  }
  .btn--cv {
    width: 100%;
    justify-content: center;
  }
}
@media (max-width: 560px) {
  .work-coming-soon,
  .experience-start {
    padding-top: 116px !important;
  }
  .coming-soon-card {
    padding: 38px 22px;
  }
}

/* About page final polish: tighter sections, refined photo, lighter industries, stronger CTA */
.about-hero--refined {
  min-height: auto !important;
  padding-top: clamp(124px, 12vw, 150px) !important;
  padding-bottom: clamp(34px, 5vw, 54px) !important;
  gap: clamp(34px, 5vw, 64px) !important;
  align-items: center !important;
}
.about-hero__image--photo {
  min-height: clamp(520px, 54vw, 660px) !important;
  background: linear-gradient(145deg, rgba(255,255,255,.72), rgba(242,236,247,.92)) !important;
  border: 1px solid rgba(255,255,255,.72);
  isolation: isolate;
}
.about-hero__image--photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(71,51,176,0) 55%, rgba(242,236,247,.26) 100%);
  pointer-events: none;
  z-index: 2;
}
.about-hero__image--photo img {
  position: absolute !important;
  inset: 0 !important;
  width: 100% !important;
  height: 100% !important;
  max-width: none !important;
  object-fit: cover !important;
  object-position: center 45% !important;
  transform: none !important;
  filter: saturate(.98) contrast(1.02);
}
.about-hero--refined h1 {
  max-width: 760px;
  font-size: clamp(3.2rem, 6.1vw, 7.2rem) !important;
  line-height: .94 !important;
}
.about-hero--refined .about-hero__copy p {
  max-width: 680px;
}
.about-tight-section,
.industries-section.about-tight-section,
.about-collaboration {
  padding-top: clamp(42px, 5vw, 66px) !important;
  padding-bottom: clamp(42px, 5vw, 66px) !important;
}
.about-tight-section .section-head,
.industries-section .section-head {
  margin-bottom: clamp(24px, 3vw, 34px) !important;
}
.industries-section .industry-cloud {
  gap: 10px !important;
}
.industries-section .industry-cloud span {
  padding: 14px 18px !important;
  font-weight: 600 !important;
  font-size: clamp(.94rem, 1.35vw, 1.28rem) !important;
  letter-spacing: -.018em !important;
  opacity: .92;
}
.about-collaboration {
  max-width: var(--container) !important;
  margin-inline: auto !important;
  padding-inline: clamp(28px, 6vw, 78px) !important;
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 12% 10%, rgba(203,191,255,.30), transparent 28rem),
    linear-gradient(135deg, rgba(255,255,255,.76), rgba(255,255,255,.56));
  border: 1px solid rgba(255,255,255,.74);
  box-shadow: 0 24px 70px rgba(11,4,37,.10);
}
.about-collaboration h2 {
  max-width: 900px;
  margin-inline: auto;
  font-size: clamp(2.35rem, 5vw, 5.1rem) !important;
}
.about-collaboration p {
  max-width: 690px !important;
  font-size: 1.03rem;
}
.about-collaboration__points {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin: 24px auto 26px;
}
.about-collaboration__points span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255,255,255,.68);
  border: 1px solid rgba(71,51,176,.14);
  color: var(--ink);
  font: 800 11px/1 'Montserrat', sans-serif;
  text-transform: uppercase;
  letter-spacing: .05em;
}
.about-collaboration__points span::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: var(--blue);
  box-shadow: 0 0 14px rgba(71,51,176,.45);
}
.about-collaboration .btn {
  padding: 17px 25px !important;
}
@media (max-width: 1050px) {
  .about-hero__image--photo {
    min-height: 560px !important;
    order: -1;
  }
}
@media (max-width: 720px) {
  .about-hero--refined {
    padding-top: 112px !important;
    padding-bottom: 28px !important;
  }
  .about-hero__image--photo {
    min-height: 470px !important;
  }
  .about-tight-section,
  .industries-section.about-tight-section,
  .about-collaboration {
    padding-top: 38px !important;
    padding-bottom: 38px !important;
  }
  .about-collaboration {
    padding-inline: 22px !important;
  }
}

/* Contact final polish: smaller headline, button-like contact links, clean project form */
.contact-hero {
  min-height: auto !important;
  padding-top: clamp(125px, 12vw, 150px) !important;
  padding-bottom: clamp(56px, 7vw, 82px) !important;
  align-items: start !important;
}
.contact-copy h1,
.contact-hero h1 {
  font-size: clamp(3.05rem, 5.45vw, 6.55rem) !important;
  line-height: .96 !important;
  letter-spacing: -.07em !important;
  max-width: 760px !important;
}
.contact-copy p {
  max-width: 610px !important;
  font-size: clamp(.98rem, 1.2vw, 1.08rem) !important;
}
.contact-links--buttons {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 12px !important;
  margin-top: 28px !important;
  max-width: 560px;
}
.contact-links--buttons .contact-action {
  display: grid !important;
  grid-template-columns: 48px 1fr auto !important;
  align-items: center !important;
  gap: 14px !important;
  min-height: 76px;
  padding: 14px 16px !important;
  border-radius: 22px !important;
  background: linear-gradient(135deg, rgba(255,255,255,.84), rgba(255,255,255,.58)) !important;
  border: 1px solid rgba(71,51,176,.16) !important;
  box-shadow: 0 16px 40px rgba(11,4,37,.06) !important;
  color: var(--black) !important;
}
.contact-links--buttons .contact-action:hover {
  transform: translateY(-3px) !important;
  background: var(--white) !important;
  border-color: rgba(71,51,176,.30) !important;
  box-shadow: 0 22px 54px rgba(71,51,176,.14) !important;
}
.contact-action__icon {
  width: 48px;
  height: 48px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: var(--blue);
  color: var(--white) !important;
  font: 900 13px/1 'Montserrat', sans-serif !important;
  letter-spacing: -.01em !important;
  text-transform: none !important;
  box-shadow: 0 14px 30px rgba(71,51,176,.28);
}
.contact-action__text {
  display: grid !important;
  gap: 5px !important;
  min-width: 0;
  color: inherit !important;
  font: inherit !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
}
.contact-action__text strong {
  display: block;
  color: var(--black);
  font: 900 15px/1.05 'Montserrat', sans-serif;
}
.contact-action__text small {
  display: block;
  color: rgba(11,4,37,.62);
  font: 500 14px/1.25 'Poppins', sans-serif;
  overflow-wrap: anywhere;
}
.contact-action__arrow {
  width: 36px;
  height: 36px;
  display: inline-grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(71,51,176,.08);
  color: var(--blue) !important;
  font: 900 16px/1 'Montserrat', sans-serif !important;
  letter-spacing: 0 !important;
  text-transform: none !important;
  transition: transform .25s ease, background .25s ease;
}
.contact-action:hover .contact-action__arrow {
  transform: translate(2px, -2px);
  background: rgba(71,51,176,.14);
}
.contact-form {
  align-self: start;
  padding: clamp(24px, 3.4vw, 38px) !important;
}
.contact-form .btn {
  width: 100%;
  justify-content: center;
  padding: 17px 24px !important;
}
@media (max-width: 1050px) {
  .contact-hero {
    gap: 32px !important;
  }
  .contact-copy h1,
  .contact-hero h1 {
    max-width: 820px !important;
  }
}
@media (max-width: 680px) {
  .contact-hero {
    padding-top: 112px !important;
    padding-bottom: 48px !important;
  }
  .contact-copy h1,
  .contact-hero h1 {
    font-size: clamp(2.35rem, 12.5vw, 3.7rem) !important;
    line-height: 1.02 !important;
  }
  .contact-links--buttons .contact-action {
    grid-template-columns: 42px 1fr !important;
    min-height: 70px;
    gap: 12px !important;
  }
  .contact-action__icon {
    width: 42px;
    height: 42px;
    border-radius: 14px;
  }
  .contact-action__arrow {
    display: none !important;
  }
}

/* Final launch polish: home case studies coming soon + real contact icons */
.selected-work--soon {
  padding-top: clamp(36px, 4vw, 56px) !important;
  padding-bottom: clamp(42px, 5vw, 68px) !important;
}
.coming-soon-card--home {
  max-width: 960px;
}
.coming-soon-card--home h2 {
  margin: 14px 0 14px !important;
  font-size: clamp(3rem, 8vw, 7.6rem) !important;
  line-height: .9 !important;
  letter-spacing: -.08em !important;
}
.coming-soon-card--home p {
  max-width: 560px;
}
.contact-action__icon svg {
  width: 23px;
  height: 23px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.contact-action__icon--whatsapp svg {
  width: 25px;
  height: 25px;
}
.contact-action__icon--linkedin svg {
  width: 24px;
  height: 24px;
  stroke-width: 2.15;
}
@media (max-width: 680px) {
  .coming-soon-card--home h2 {
    font-size: clamp(2.6rem, 15vw, 4.5rem) !important;
  }
}

/* Mobile hotfix: trusted logos + moving services strip fit cleanly on phones */
@media (max-width: 680px) {
  :root {
    --container: min(100% - 30px, 1180px);
  }

  html,
  body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
  }

  .site-header {
    top: 12px !important;
    width: min(calc(100vw - 30px), 1180px) !important;
    height: 66px !important;
    padding: 9px 10px 9px 14px !important;
    border-radius: 28px !important;
  }

  .brand {
    min-width: 0 !important;
  }

  .brand img {
    width: clamp(150px, 46vw, 178px) !important;
  }

  .nav-toggle {
    flex: 0 0 46px !important;
    width: 46px !important;
    height: 46px !important;
  }

  .trusted-brands {
    grid-template-columns: 1fr !important;
    width: min(calc(100vw - 30px), 1180px) !important;
    gap: 16px !important;
    padding-top: 28px !important;
    padding-bottom: 18px !important;
  }

  .trusted-brands__copy h2 {
    font-size: clamp(2.25rem, 11vw, 3.15rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -.052em !important;
  }

  .trusted-brands__panel {
    width: 100% !important;
    min-width: 0 !important;
    min-height: 128px !important;
    padding: 12px !important;
    border-radius: 26px !important;
    display: flex !important;
    align-items: center !important;
    overflow: hidden !important;
  }

  .logo-marquee-wall,
  .logo-marquee-wall--single,
  .logo-marquee,
  .logo-marquee--single {
    width: 100% !important;
    min-width: 0 !important;
    overflow: hidden !important;
  }

  .logo-marquee,
  .logo-marquee--single {
    min-height: 92px !important;
    border-radius: 22px !important;
    -webkit-mask-image: linear-gradient(90deg, #000 0%, #000 86%, transparent 100%) !important;
    mask-image: linear-gradient(90deg, #000 0%, #000 86%, transparent 100%) !important;
  }

  .logo-marquee__track {
    width: max-content !important;
    min-width: max-content !important;
    animation: logoSlideLeft 22s linear infinite !important;
    will-change: transform;
  }

  .logo-marquee__set {
    gap: 8px !important;
    padding-right: 8px !important;
  }

  .client-logo,
  .client-logo--image {
    flex: 0 0 122px !important;
    width: 122px !important;
    height: 72px !important;
    min-height: 72px !important;
    padding: 8px 10px !important;
    border-radius: 18px !important;
    background: rgba(255,255,255,.76) !important;
    border-color: rgba(71,51,176,.10) !important;
  }

  .client-logo--horizontal {
    flex-basis: 148px !important;
    width: 148px !important;
  }

  .client-logo--horizontal-wide {
    flex-basis: 174px !important;
    width: 174px !important;
  }

  .client-logo--vertical,
  .client-logo--symbol {
    flex-basis: 112px !important;
    width: 112px !important;
  }

  .client-logo img,
  .client-logo--image img {
    max-width: 94% !important;
    max-height: 46px !important;
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
  }

  .client-logo--horizontal img {
    max-height: 34px !important;
  }

  .client-logo--horizontal-wide img {
    max-height: 40px !important;
  }

  .client-logo--vertical img,
  .client-logo--symbol img {
    max-height: 48px !important;
  }

  .client-logo::after {
    inset: 5px !important;
    border-radius: 13px !important;
  }

  .marquee-section {
    width: 100vw !important;
    margin-left: calc(50% - 50vw) !important;
    padding: 0 0 18px !important;
    overflow: hidden !important;
  }

  .marquee {
    min-height: 52px !important;
    overflow: hidden !important;
  }

  .marquee__track {
    gap: 30px !important;
    animation-duration: 20s !important;
  }

  .marquee span {
    padding: 15px 0 !important;
    font-size: .98rem !important;
    line-height: 1 !important;
  }

  .creative-strip--clean {
    padding-top: 30px !important;
  }

  .creative-strip--clean .section-head {
    margin-bottom: 22px !important;
  }

  .creative-strip--clean .section-head h2 {
    font-size: clamp(2.05rem, 11.6vw, 3.1rem) !important;
    line-height: 1.04 !important;
    letter-spacing: -.052em !important;
  }

  .creative-strip--clean .section-head p {
    font-size: .95rem !important;
    line-height: 1.65 !important;
  }
}

@media (max-width: 420px) {
  .trusted-brands__panel {
    min-height: 122px !important;
  }

  .logo-marquee,
  .logo-marquee--single {
    min-height: 88px !important;
  }

  .client-logo,
  .client-logo--image {
    flex-basis: 116px !important;
    width: 116px !important;
    height: 68px !important;
    min-height: 68px !important;
  }

  .client-logo--horizontal {
    flex-basis: 140px !important;
    width: 140px !important;
  }

  .client-logo--horizontal-wide {
    flex-basis: 164px !important;
    width: 164px !important;
  }

  .client-logo--vertical,
  .client-logo--symbol {
    flex-basis: 106px !important;
    width: 106px !important;
  }
}

/* Portfolio Work implementation: final approved archive + silent media protection */
.work-intro {
  max-width: 1040px;
  margin: 0 auto clamp(28px, 4vw, 46px);
}
.work-intro h1 {
  max-width: 980px;
  margin: 12px 0 18px;
  font-size: clamp(3rem, 7vw, 7.8rem);
  line-height: .9;
  letter-spacing: -.085em;
}
.work-intro p {
  max-width: 720px;
  font-size: clamp(1rem, 1.25vw, 1.15rem);
}
.work-filter-banner {
  width: min(100%, 1040px);
  margin: 0 auto 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(11,4,37,.88);
  color: var(--white);
  box-shadow: 0 18px 50px rgba(11,4,37,.18);
}
.work-filter-banner strong {
  display: block;
  margin-top: 4px;
  font-size: 1.02rem;
}
.work-filter-banner .btn--ghost {
  color: var(--white);
  border-color: rgba(255,255,255,.24);
  background: rgba(255,255,255,.08);
}
.work-division-nav {
  margin-bottom: clamp(28px, 4vw, 52px);
}
.project-card__note {
  margin-top: -8px !important;
  padding: 12px 14px;
  border-radius: 16px;
  background: rgba(71,51,176,.08);
  border: 1px solid rgba(71,51,176,.12);
  color: rgba(11,4,37,.62) !important;
  font-size: .86rem;
}
.protected-media {
  position: relative;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
}
.protected-media img {
  -webkit-user-drag: none;
  user-select: none;
  pointer-events: none;
}
.protected-overlay {
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
  background: transparent;
}
.project-card__badge,
.project-card__status,
.restricted-note {
  z-index: 4;
}
.gallery-item {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,.72);
  border: 1px solid rgba(255,255,255,.72);
  box-shadow: 0 18px 55px rgba(11,4,37,.08);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  min-height: 340px;
  object-fit: contain;
  padding: 14px;
  background: linear-gradient(135deg, rgba(242,236,247,.92), rgba(255,255,255,.96));
}
.timeline-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
  padding-top: 18px;
  border-top: 1px solid rgba(71,51,176,.12);
}
.btn--small {
  padding: 12px 16px !important;
  min-height: 0 !important;
  font-size: 11px !important;
}
.timeline-actions span {
  max-width: 520px;
  color: var(--muted);
  font-size: .9rem;
  line-height: 1.45;
}
.selected-work .section-head--split .btn {
  flex: 0 0 auto;
}
.empty-division span {
  max-width: 640px;
}
@media (max-width: 760px) {
  .work-intro h1 {
    font-size: clamp(2.45rem, 14vw, 4.2rem);
  }
  .work-filter-banner {
    align-items: flex-start;
    flex-direction: column;
  }
  .work-filter-banner .btn {
    width: 100%;
    justify-content: center;
  }
  .gallery-item img {
    min-height: 230px;
  }
  .timeline-actions .btn {
    width: 100%;
    justify-content: center;
  }
}

/* V02 visual fix: full artwork previews and cleaner featured layout */
.project-grid--featured {
  grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  align-items: stretch;
}
.project-grid--featured .project-card,
.work-division-grid .project-card {
  grid-column: auto !important;
  grid-row: auto !important;
}
.project-grid--featured .project-card--large,
.work-division-grid .project-card--large {
  grid-column: auto !important;
  grid-row: auto !important;
}
.project-card__media {
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
  background: linear-gradient(135deg, rgba(242,236,247,.96), rgba(255,255,255,.96)) !important;
}
.project-card--large .project-card__media {
  aspect-ratio: 16 / 10 !important;
}
.project-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: contain !important;
  padding: 0 !important;
  display: block;
}
.project-card:hover .project-card__media img {
  transform: none !important;
}
.case-hero__image img {
  width: 100% !important;
  height: auto !important;
  aspect-ratio: 16 / 10 !important;
  object-fit: contain !important;
  padding: 0 !important;
  display: block;
}
.gallery-item {
  background: linear-gradient(135deg, rgba(242,236,247,.94), rgba(255,255,255,.98)) !important;
}
.gallery-item img {
  width: 100% !important;
  height: auto !important;
  max-height: 980px;
  object-fit: contain !important;
  padding: clamp(12px, 2vw, 24px) !important;
}

@media (max-width: 980px) {
  .project-grid--featured {
    grid-template-columns: 1fr !important;
  }
  .project-grid--featured .project-card,
  .work-division-grid .project-card {
    grid-column: auto !important;
  }
}

/* V04 hotfix: portfolio card layout width
   Fixes V02/V03 override that made Work cards fall into 6 thin columns.
   No image assets changed. */
.project-grid--featured,
.work-division-grid {
  display: grid !important;
  grid-template-columns: repeat(3, minmax(280px, 1fr)) !important;
  gap: clamp(20px, 2.2vw, 34px) !important;
  align-items: stretch !important;
}

.project-grid--featured .project-card,
.work-division-grid .project-card,
.project-grid--featured .project-card--large,
.work-division-grid .project-card--large {
  grid-column: auto !important;
  grid-row: auto !important;
  min-width: 0 !important;
  width: 100% !important;
}

.project-card__body {
  min-width: 0 !important;
  padding: clamp(22px, 2vw, 30px) !important;
}

.project-card__body h3 {
  font-size: clamp(1.55rem, 1.65vw, 2.15rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -.065em !important;
  max-width: 100% !important;
  overflow-wrap: normal !important;
  word-break: normal !important;
  hyphens: none !important;
}

.project-card__body p {
  font-size: clamp(.96rem, .95vw, 1.08rem) !important;
  line-height: 1.55 !important;
  max-width: 52ch !important;
}

.project-card__media {
  aspect-ratio: 16 / 10 !important;
  min-height: 0 !important;
}

.project-card__badge,
.project-card__status {
  max-width: calc(100% - 28px) !important;
  white-space: normal !important;
  line-height: 1.08 !important;
  z-index: 5 !important;
}

@media (max-width: 1180px) {
  .project-grid--featured,
  .work-division-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  }
}

@media (max-width: 720px) {
  .project-grid--featured,
  .work-division-grid {
    grid-template-columns: 1fr !important;
  }

  .project-card__body h3 {
    font-size: clamp(1.55rem, 8vw, 2.2rem) !important;
  }
}


/* V05 client fixes: spacing, readable headings, safer image display, Alice cover final-only */
html {
  scroll-padding-top: 112px;
}

.section {
  padding-top: clamp(58px, 6vw, 92px);
  padding-bottom: clamp(58px, 6vw, 92px);
}

/* 1) Work headline: smaller, clearer, not glued together */
.work-intro {
  max-width: 1040px;
  margin: 0 auto clamp(28px, 3.5vw, 46px);
}
.work-intro h1 {
  max-width: 980px;
  margin: 14px 0 18px;
  font-size: clamp(3rem, 6.2vw, 6.7rem) !important;
  line-height: 1.04 !important;
  letter-spacing: -.052em !important;
  text-wrap: balance;
}
.work-intro p {
  max-width: 720px;
  line-height: 1.65;
}

/* 2) Experience spacing: remove the huge vertical dead space */
.experience-start {
  padding-top: clamp(118px, 9vw, 138px) !important;
  padding-bottom: clamp(28px, 3.5vw, 48px) !important;
}
.timeline-section {
  padding-top: clamp(34px, 4vw, 58px) !important;
}
.experience-start + .timeline-section {
  margin-top: 0 !important;
}
.timeline-section .section-head {
  margin-bottom: clamp(26px, 3vw, 42px);
}
.timeline-section .section-head h2 {
  max-width: 930px;
  font-size: clamp(2.05rem, 4.5vw, 5.1rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.052em !important;
  text-wrap: balance;
}
.cv-summary {
  align-items: stretch;
}
.stat-grid.compact .stat,
.cv-summary .summary-card {
  min-height: auto;
}

/* 3) Featured cards on dark background: make client names readable */
.section--dark .project-card__body,
.section--dark .project-card__body h3,
.section--dark .project-card__body h3 a {
  color: #FFFFFF !important;
}
.section--dark .project-card__body p {
  color: rgba(255,255,255,.76) !important;
}
.section--dark .project-card__body .eyebrow {
  color: #C9BFFF !important;
  opacity: 1 !important;
}
.section--dark .project-card__body .eyebrow::before {
  background: #7C67FF !important;
}
.section--dark .tag-row span {
  color: rgba(255,255,255,.88) !important;
  border-color: rgba(255,255,255,.24) !important;
  background: rgba(255,255,255,.12) !important;
}

/* 4) Image previews: use the real selected artwork, with cleaner framing */
.project-card__media {
  aspect-ratio: 16 / 10 !important;
  background: rgba(255,255,255,.72) !important;
  border-bottom: 1px solid rgba(11,4,37,.08);
}
.project-card__media img {
  width: 100% !important;
  height: 100% !important;
  object-fit: cover !important;
  object-position: center center !important;
  padding: 0 !important;
  background: transparent !important;
}
.project-card:hover .project-card__media img {
  transform: scale(1.012) !important;
}

/* Case pages keep the full artwork visible */
.case-hero__image img,
.gallery-item img {
  object-fit: contain !important;
  object-position: center center !important;
  background: linear-gradient(135deg, rgba(242,236,247,.90), rgba(255,255,255,.96)) !important;
}
.case-hero__image img {
  padding: clamp(10px, 1.6vw, 18px) !important;
}
.gallery-item img {
  padding: clamp(10px, 1.6vw, 18px) !important;
}

/* 6) Project titles: more breathing room, no ugly broken words */
.project-card__body {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: clamp(24px, 2.5vw, 34px) !important;
}
.project-card__body .eyebrow {
  margin-bottom: 2px !important;
  line-height: 1.2 !important;
}
.project-card__body h3 {
  margin: 0 !important;
  font-size: clamp(1.5rem, 1.55vw, 2.05rem) !important;
  line-height: 1.16 !important;
  letter-spacing: -.045em !important;
  overflow-wrap: normal !important;
  word-break: keep-all !important;
  hyphens: none !important;
  text-wrap: balance;
}
.project-card__body p {
  margin: 0 !important;
  line-height: 1.62 !important;
}
.project-card__note {
  margin-top: 0 !important;
}
.tag-row {
  margin-top: 2px;
}

/* Work section headings: cleaner and less aggressive */
.work-category-head {
  align-items: start !important;
  margin-bottom: clamp(22px, 2.8vw, 36px) !important;
}
.work-category-head h1 {
  font-size: clamp(2rem, 3.65vw, 4.45rem) !important;
  line-height: 1.08 !important;
  letter-spacing: -.048em !important;
  text-wrap: balance;
}
.work-category-head p {
  line-height: 1.65;
}
.work-category-section {
  padding: clamp(24px, 3.4vw, 44px) !important;
}

/* Grid stays clean without thin columns */
.project-grid--featured,
.work-division-grid {
  grid-template-columns: repeat(3, minmax(300px, 1fr)) !important;
  gap: clamp(22px, 2.4vw, 36px) !important;
}

@media (max-width: 1180px) {
  .project-grid--featured,
  .work-division-grid {
    grid-template-columns: repeat(2, minmax(280px, 1fr)) !important;
  }
}

@media (max-width: 760px) {
  .section {
    padding-top: 52px;
    padding-bottom: 52px;
  }
  .work-divisions {
    padding-top: 104px !important;
  }
  .work-intro h1 {
    font-size: clamp(2.35rem, 11vw, 4.15rem) !important;
    line-height: 1.08 !important;
    letter-spacing: -.045em !important;
  }
  .project-grid--featured,
  .work-division-grid {
    grid-template-columns: 1fr !important;
  }
  .project-card__media {
    aspect-ratio: 4 / 3 !important;
  }
  .project-card__body h3 {
    font-size: clamp(1.55rem, 7.4vw, 2.15rem) !important;
    line-height: 1.15 !important;
  }
  .timeline-section .section-head h2 {
    font-size: clamp(2rem, 9vw, 3.2rem) !important;
  }
}
