:root {
  --ink: #080a0f;
  --muted: #5e6673;
  --paper: #ffffff;
  --soft: #f6f8fb;
  --line: #dfe5ee;
  --blue: #6e4b8d;
  --blue-dark: #56376f;
  --shadow: 0 18px 45px rgba(13, 29, 59, .08);
  --serif: "Archivo", Arial, sans-serif;
  --sans: "Archivo", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #fff;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Archivo", Arial, sans-serif !important;
  letter-spacing: 0;
  overflow-x: hidden;
}

main,
section {
  background: #fff;
}

a {
  color: inherit;
  text-decoration: none;
}

strong {
  font-weight: 800;
}

.container-xl {
  max-width: 1230px;
}

.section-pad {
  padding: 76px 0;
}

.section-pad-sm {
  padding: 56px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, .84);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: border-color .25s ease, box-shadow .25s ease;
}

.site-header.is-scrolled {
  border-color: rgba(14, 38, 76, .08);
  box-shadow: 0 10px 30px rgba(15, 31, 57, .05);
}

.navbar {
  min-height: 78px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 18px;
  font-weight: 700;
}

.brand-mark {
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -1px;
}

.nav-link {
  margin: 0 11px;
  color: var(--ink);
  font-size: 14px;
  font-weight: 600;
}

.nav-link:hover,
.nav-link.active {
  color: var(--blue);
}

.nav-cta {
  min-width: 156px;
}

.btn {
  --bs-btn-border-radius: 5px;
  min-height: 48px;
  padding: 12px 25px;
  font-size: 14px;
  font-weight: 800;
}

.btn-primary {
  --bs-btn-bg: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-bg: var(--blue-dark);
  --bs-btn-hover-border-color: var(--blue-dark);
  box-shadow: 0 12px 28px rgba(110, 75, 141, .2);
}

.btn-outline-primary {
  --bs-btn-color: var(--blue);
  --bs-btn-border-color: var(--blue);
  --bs-btn-hover-bg: var(--blue);
  --bs-btn-hover-border-color: var(--blue);
}

.btn-light {
  --bs-btn-bg: var(--paper);
  --bs-btn-border-color: #cfd7e4;
  --bs-btn-hover-bg: #f4f7fb;
  --bs-btn-hover-border-color: #b8c3d3;
  box-shadow: none;
}

.hero {
  padding-top: 38px;
  padding-bottom: 58px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.hero-kicker span {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 12px;
  color: #283241;
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  font-weight: 800;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-title {
  max-width: 1080px;
  margin: 0 auto;
  font-family: var(--serif);
  font-size: clamp(37px, 4.25vw, 52px);
  line-height: 1.1;
  font-weight: 700;
}

.hero-copy {
  max-width: 760px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin-top: 30px;
  flex-wrap: wrap;
}

.hero-metrics {
  display: flex;
  justify-content: center;
  gap: 18px;
  margin: 22px auto 0;
  flex-wrap: wrap;
}

.hero-metrics span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 9px 2px;
  color: var(--muted);
  font-size: 13px;
}

.hero-metrics strong {
  color: var(--ink);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(34px, 4.2vw, 50px);
  line-height: 1.08;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--blue);
  font-weight: 700;
}

.project-filters {
  display: flex;
  gap: 10px;
  max-width: 100%;
  margin-bottom: 28px;
  overflow-x: auto;
  padding-bottom: 2px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--paper);
  color: var(--muted);
  padding: 8px 15px;
  font-size: 13px;
  font-weight: 800;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.filter-btn.active,
.filter-btn:hover {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.project-grid {
  display: grid;
  gap: 56px;
}

.project-item[hidden] {
  display: none !important;
}

.project-row {
  cursor: pointer;
  margin-right: 0;
  margin-left: 0;
  width: 100%;
  padding: 4px 0 54px;
  border-bottom: 1px solid var(--line);
}

.project-row:last-child {
  border-bottom: 0;
}

.project-copy-card {
  max-width: 390px;
}

.project-type {
  margin: 0 0 12px;
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.project-row h3 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 39px);
  line-height: 1.1;
  font-weight: 700;
}

.project-row p {
  margin: 0 0 10px;
  color: #1d2633;
  font-size: 15px;
  line-height: 1.7;
}

.project-card {
  height: 100%;
  cursor: pointer;
}

.project-card h3 {
  margin: 18px 0 12px;
  font-size: 20px;
  font-weight: 800;
}

.project-card p {
  margin: 0 0 8px;
  color: #1d2633;
  font-size: 14px;
  line-height: 1.6;
}

.project-art {
  position: relative;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--soft);
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}

.project-card:hover .project-art,
.project-card:focus-visible .project-art {
  transform: translateY(-7px);
  box-shadow: 0 24px 55px rgba(7, 34, 74, .14);
}

.project-row:hover .project-art,
.project-row:focus-visible .project-art {
  box-shadow: 0 24px 55px rgba(7, 34, 74, .14);
}

.project-art span {
  position: relative;
  z-index: 1;
}

.project-image-art {
  background: #f5f7fa;
}

.project-image-art img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.real-life-project,
.event-materials-project {
  cursor: default;
}

.real-life-copy,
.event-materials-copy {
  max-width: 720px;
  margin-bottom: 26px;
}

.real-life-copy h3,
.event-materials-copy h3 {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: clamp(31px, 4vw, 46px);
  line-height: 1.08;
}

.real-life-gallery,
.event-materials-gallery {
  columns: 3 280px;
  column-gap: 18px;
}

.real-life-thumb,
.event-materials-thumb {
  width: 100%;
  min-height: 0;
  margin: 0 0 18px;
  break-inside: avoid;
  aspect-ratio: auto;
  cursor: pointer;
}

.real-life-thumb img,
.event-materials-thumb img {
  width: 100%;
  height: auto;
  display: block;
  object-fit: contain;
}

.real-life-thumb.is-portrait img {
  max-height: 770px;
  margin-inline: auto;
}

.real-life-project:hover .real-life-thumb,
.event-materials-project:hover .event-materials-thumb {
  transform: none;
}

.real-life-thumb:hover,
.real-life-thumb:focus-visible,
.event-materials-thumb:hover,
.event-materials-thumb:focus-visible {
  transform: translateY(-4px);
}

.art-dark {
  display: flex;
  align-items: center;
  padding: 38px;
  color: var(--paper);
  background:
    radial-gradient(circle at 96% 35%, rgba(141, 98, 179, .95), transparent 16%),
    radial-gradient(circle at 86% 50%, rgba(110, 75, 141, .66), transparent 26%),
    linear-gradient(135deg, #040a12, #091521 70%);
}

.art-rings::before,
.art-rings::after {
  content: "";
  position: absolute;
  right: -28px;
  top: 18px;
  width: 190px;
  height: 190px;
  border: 2px solid rgba(162, 119, 199, .45);
  border-radius: 50%;
  transform: rotate(-22deg) scaleX(.55);
}

.art-rings::after {
  right: 16px;
  top: 44px;
  width: 130px;
  height: 130px;
  opacity: .65;
}

.art-dark span,
.art-wave span {
  font-size: 29px;
  line-height: 1.05;
  font-weight: 900;
}

.art-stand {
  background:
    linear-gradient(90deg, rgba(255,255,255,.1) 1px, transparent 1px) 0 0 / 34px 34px,
    linear-gradient(135deg, #121922, #27313f);
}

.stand-sign {
  position: absolute;
  left: 42%;
  top: 32px;
  color: var(--paper);
  font-size: 15px;
  font-weight: 900;
  transform: perspective(320px) rotateY(-22deg);
}

.stand-wall,
.stand-floor {
  position: absolute;
  left: 18%;
  right: 13%;
  bottom: 38px;
  height: 76px;
  border: 2px solid rgba(255,255,255,.55);
  transform: skewX(-12deg);
}

.stand-floor {
  bottom: 20px;
  height: 16px;
  border-color: rgba(110, 75, 141, .95);
  background: rgba(110, 75, 141, .24);
}

.art-laptop {
  display: grid;
  place-items: center;
  background: linear-gradient(180deg, #f4f7fb, #e9eef5);
}

.project-video-frame {
  position: relative;
  min-height: 360px;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border-radius: 5px;
  background: #eef3fa;
}

.project-video-frame .project-art {
  position: absolute;
  inset: 0;
  min-height: 0;
  border: 1px solid var(--line);
  box-shadow: none;
}

.project-video-poster {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  object-fit: cover;
  background: #0b1220;
  transition: opacity .28s ease;
}

.project-video {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  background: #0b1220;
  transition: opacity .28s ease;
}

.project-video-frame.is-playing .project-video {
  opacity: 1;
}

.project-video-frame.is-playing .project-video-poster,
.project-video-frame.is-playing .video-poster {
  opacity: 0;
}

.project-video-frame.is-playing .video-hint {
  opacity: 0;
}

.video-hint {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .92);
  color: var(--blue);
  padding: 9px 13px;
  font-size: 12px;
  font-weight: 900;
  max-width: calc(100% - 36px);
  box-shadow: 0 10px 28px rgba(13, 29, 59, .12);
  pointer-events: none;
  transition: opacity .2s ease;
}

.laptop-screen {
  width: 73%;
  height: 58%;
  border: 9px solid #151a22;
  border-radius: 8px 8px 3px 3px;
  background:
    linear-gradient(90deg, var(--blue) 0 22%, transparent 22%),
    repeating-linear-gradient(0deg, #d7e4f5 0 7px, transparent 7px 17px),
    linear-gradient(135deg, #fff, #eef5ff);
}

.laptop-base {
  position: absolute;
  bottom: 33px;
  width: 82%;
  height: 14px;
  border-radius: 0 0 18px 18px;
  background: linear-gradient(180deg, #c5ccd7, #eef1f4);
}

.art-wave {
  display: flex;
  align-items: center;
  padding: 38px;
  color: var(--paper);
  background:
    radial-gradient(circle at 88% 68%, rgba(141, 98, 179, .52), transparent 22%),
    linear-gradient(135deg, #04111f, #071b2b);
}

.art-wave::after {
  content: "";
  position: absolute;
  right: -20px;
  bottom: 32px;
  width: 260px;
  height: 80px;
  background: repeating-radial-gradient(ellipse at center, rgba(162, 119, 199, .75) 0 1px, transparent 1px 10px);
  transform: rotate(13deg);
}

.art-light {
  display: flex;
  align-items: flex-start;
  padding: 35px;
  background:
    radial-gradient(circle at 90% 106%, rgba(110, 75, 141, .15), transparent 24%),
    linear-gradient(135deg, #fff, #f2f6fb);
}

.art-light::after {
  content: "";
  position: absolute;
  right: 6%;
  bottom: -5%;
  width: 220px;
  height: 150px;
  border-top: 2px solid rgba(110, 75, 141, .62);
  border-radius: 50%;
  transform: rotate(-18deg);
  box-shadow: 0 -18px 0 -16px rgba(110, 75, 141, .62), 0 -36px 0 -34px rgba(110, 75, 141, .62);
}

.art-light span,
.art-logo span {
  font-size: 31px;
  line-height: 1.03;
  font-weight: 900;
}

.art-logo {
  display: flex;
  align-items: center;
  padding: 39px;
  background:
    linear-gradient(120deg, rgba(110, 75, 141, .1), transparent 28%),
    linear-gradient(135deg, #fff, #f8fafc);
}

.art-logo span span {
  color: var(--blue);
}

.services {
  padding: 34px 0 58px;
}

.services .container-xl,
.about .container-xl,
.timeline-section .container-xl,
.trust .container-xl,
.contact .container-xl {
  border-top: 1px solid var(--line);
}

.services .eyebrow,
.timeline-section .eyebrow,
.trust .eyebrow,
.contact .eyebrow {
  margin-top: 24px;
}

.services-grid {
  margin-top: 24px;
}

.service-item {
  min-height: 178px;
  padding: 20px 26px;
  text-align: center;
  border-left: 1px solid var(--line);
}

.service-item:first-child {
  border-left: 0;
}

.service-item i {
  color: var(--blue);
  font-size: 39px;
}

.service-item h3 {
  margin: 19px 0 10px;
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 700;
}

.service-item p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.about-panel {
  display: grid;
  grid-template-columns: 285px 1fr;
  gap: 56px;
  align-items: center;
  padding-top: 34px;
}

.portrait {
  position: relative;
  width: 250px;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background:
    radial-gradient(circle at 55% 48%, #f7f7f7 0 39%, #e9eaec 40% 100%);
}

.portrait-head {
  position: absolute;
  left: 92px;
  top: 42px;
  width: 58px;
  height: 74px;
  border-radius: 45% 50% 45% 48%;
  background: #0b0d10;
  transform: rotate(-7deg);
}

.portrait-head::before {
  content: "";
  position: absolute;
  left: 39px;
  top: 29px;
  width: 45px;
  height: 10px;
  border-top: 3px solid #0b0d10;
  border-radius: 50%;
}

.portrait-body {
  position: absolute;
  left: 45px;
  right: 58px;
  bottom: -25px;
  height: 130px;
  border-radius: 56% 42% 0 0;
  background: #080a0f;
  transform: rotate(10deg);
}

.about-copy h2 {
  margin-bottom: 19px;
}

.about-copy > p:not(.eyebrow) {
  max-width: 730px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.65;
}

.about-stats {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.about-stats span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #344054;
  font-size: 14px;
  font-weight: 600;
}

.about-stats i {
  color: var(--blue);
  font-size: 24px;
}

.timeline-section {
  padding-bottom: 44px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 26px;
  margin-top: 42px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
}

.timeline-item::before {
  content: "";
  position: absolute;
  top: -31px;
  left: 0;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 5px var(--paper);
}

.timeline-item span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 900;
}

.timeline-item h3 {
  margin: 9px 0;
  font-size: 15px;
  font-weight: 900;
}

.timeline-item p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.65;
}

.logo-carousel {
  display: grid;
  grid-template-columns: 42px 1fr 42px;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
  overflow: hidden;
}

.logo-track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  padding: 2px;
}

.logo-track::-webkit-scrollbar {
  display: none;
}

.logo-track img {
  width: 190px;
  height: 68px;
  object-fit: contain;
  flex: 0 0 auto;
  scroll-snap-align: start;
  filter: grayscale(1);
  opacity: .82;
  transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}

.logo-track img:hover {
  filter: grayscale(0);
  opacity: 1;
  transform: translateY(-3px);
}

.logo-control {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: var(--paper);
  color: var(--blue);
  transition: background .25s ease, color .25s ease, border-color .25s ease;
}

.logo-control:hover {
  color: var(--paper);
  background: var(--blue);
  border-color: var(--blue);
}

.contact h2 {
  max-width: 520px;
}

.contact p {
  margin-top: 18px;
  color: var(--muted);
  line-height: 1.65;
}

.contact-data {
  display: grid;
  gap: 18px;
  margin-top: 38px;
}

.contact-data a,
.contact-data span {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  color: #293447;
  font-weight: 700;
}

.contact-data i {
  color: var(--blue);
  font-size: 24px;
}

.contact-actions {
  display: flex;
  gap: 13px;
  flex-wrap: wrap;
  margin-top: 28px;
}

.page-footer {
  margin-top: 70px;
  padding-top: 28px;
  text-align: center;
  color: var(--muted);
  font-size: 13px;
}

.media-modal {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: grid;
  place-items: center;
  padding: 24px;
  overflow-y: auto;
  background: rgba(8, 10, 15, .42);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s ease;
}

.media-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.media-dialogue {
  position: relative;
  width: min(1120px, calc(100vw - 40px));
  max-height: calc(100vh - 40px);
  padding: 18px;
  overflow-y: auto;
  scrollbar-gutter: stable;
  border-radius: 7px;
  background: var(--paper);
  box-shadow: 0 30px 80px rgba(0, 0, 0, .24);
  transform: translateY(18px);
  transition: transform .25s ease;
}

.media-modal.is-open .media-dialogue {
  transform: translateY(0);
}

.media-stage {
  display: grid;
  place-items: center;
  min-height: 260px;
  width: 100%;
}

.media-stage .project-art {
  width: 100%;
  min-height: min(70vh, 620px);
  display: flex;
  align-items: center;
  justify-content: center;
  transform: none !important;
  box-shadow: none;
}

.media-stage .project-image-art {
  aspect-ratio: auto;
  min-height: 0;
  overflow: visible;
}

.media-stage .project-image-art img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: none;
  margin: 0 auto;
  object-fit: contain;
}

.media-stage video {
  width: 100%;
  max-height: 78vh;
  display: block;
  border-radius: 5px;
  background: #05070d;
}

.modal-close,
.back-to-top {
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
}

.modal-close {
  position: absolute;
  right: 24px;
  top: 24px;
  z-index: 3;
  width: 46px;
  height: 46px;
  background: var(--paper);
}

.modal-nav {
  position: fixed;
  top: 50%;
  z-index: 3;
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  box-shadow: 0 16px 36px rgba(0, 0, 0, .18);
  transform: translateY(-50%);
  transition: background .2s ease, color .2s ease, transform .2s ease;
}

.modal-nav:hover {
  color: var(--paper);
  background: var(--blue);
  transform: translateY(-50%) scale(1.04);
}

.modal-nav-prev {
  left: max(20px, calc((100vw - 1200px) / 2));
}

.modal-nav-next {
  right: max(20px, calc((100vw - 1200px) / 2));
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 900;
  width: 46px;
  height: 46px;
  color: var(--paper);
  background: var(--blue);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity .25s ease, transform .25s ease;
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s cubic-bezier(.22, .61, .36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}

@media (max-width: 991.98px) {
  .section-pad {
    padding: 58px 0;
  }

  .navbar {
    min-height: 74px;
  }

  .navbar-collapse {
    padding: 14px 0 22px;
  }

  .nav-link {
    margin: 3px 0;
    padding: 10px 0;
  }

  .hero {
    padding-top: 44px;
  }

  .section-heading,
  .about-panel {
    display: block;
  }

  .project-grid {
    gap: 38px;
  }

  .project-row.row,
  .contact .row {
    --bs-gutter-x: 0;
  }

  .project-row > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
  }

  .project-row {
    padding-bottom: 38px;
  }

  .project-copy-card {
    max-width: none;
  }

  .project-art,
  .project-video-frame {
    min-height: 260px;
  }

  .text-link {
    margin-top: 18px;
  }

  .service-item {
    border-left: 0;
    border-top: 1px solid var(--line);
  }

  .service-item:nth-child(1),
  .service-item:nth-child(2) {
    border-top: 0;
  }

  .portrait {
    margin-bottom: 30px;
  }

  .timeline {
    grid-template-columns: 1fr;
    gap: 0;
    margin-left: 8px;
    padding-top: 0;
    padding-left: 28px;
    border-top: 0;
    border-left: 1px solid var(--line);
  }

  .timeline-item {
    padding-bottom: 28px;
  }

  .timeline-item::before {
    left: -35px;
    top: 2px;
  }
}

@media (max-width: 575.98px) {
  .container-xl {
    padding-left: 20px;
    padding-right: 20px;
  }

  .brand {
    font-size: 16px;
  }

  .brand-mark {
    font-size: 22px;
  }

  .hero-title {
    font-size: 38px;
  }

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

  .hero-actions {
    gap: 12px;
  }

  .hero-actions .btn {
    width: 100%;
  }

  .hero-kicker {
    gap: 6px;
  }

  .hero-kicker span {
    padding: 6px 10px;
    font-size: 11px;
  }

  .hero-metrics {
    display: grid;
    justify-content: stretch;
    gap: 4px;
  }

  .hero-metrics span {
    justify-content: center;
    text-align: center;
  }

  .project-art {
    min-height: 176px;
  }

  .project-video-frame {
    min-height: 176px;
  }

  .video-hint {
    right: auto;
    left: 12px;
    bottom: 12px;
    max-width: calc(100% - 24px);
    padding: 8px 11px;
    font-size: 11px;
  }

  .logo-carousel {
    grid-template-columns: 36px 1fr 36px;
    gap: 8px;
  }

  .logo-control {
    width: 36px;
    height: 36px;
  }

  .logo-track img {
    width: 168px;
    height: 60px;
  }

  .service-item:nth-child(2) {
    border-top: 1px solid var(--line);
  }

  .portrait {
    width: 210px;
  }

  .about-stats {
    gap: 16px;
  }

  .client-strip {
    gap: 18px;
  }

  .media-dialogue {
    padding: 28px;
  }
}
