:root {
  --bg: #030609;
  --bg-2: #07101a;
  --panel: #0d1218;
  --panel-2: #101923;
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(18, 63, 104, 0.45);
  --text: #f7fbff;
  --muted: #f7fbff;
  --soft: #f7fbff;
  --cyan: #123f68;
  --cyan-2: #245f95;
  --gold: #f6b92f;
  --gold-soft: #f6b92f;
  --blue: #061a2b;
  --shadow: rgba(0, 0, 0, 0.48);
  --max: 1480px;
  --wide: 1760px;
  --content-wide: min(var(--wide), calc(100% - clamp(36px, 5vw, 84px)));
  --display-muted: rgba(247, 251, 255, 0.22);
}

@font-face {
  font-family: "Square721Extended";
  src: url("fonts/square-721-extended-bold.otf") format("opentype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "EurostileExtendedBlack";
  src: url("fonts/eurostile-extended-black.ttf") format("truetype");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "RajdhaniHero";
  src: url("fonts/rajdhani-bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  background: #000;
  max-width: 100%;
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: #000;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  max-width: 100%;
  overflow-x: hidden;
}

body::before {
  content: none;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 18px clamp(18px, 3vw, 48px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    linear-gradient(90deg, rgba(3, 8, 14, 0.38), rgba(3, 8, 14, 0.24) 48%, rgba(3, 8, 14, 0.38));
  -webkit-backdrop-filter: blur(24px) saturate(1.35);
  backdrop-filter: blur(24px) saturate(1.35);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.12),
    inset 0 -1px 0 rgba(42, 182, 255, 0.055),
    0 18px 44px rgba(0, 0, 0, 0.16);
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.085), rgba(255, 255, 255, 0.024)),
    rgba(3, 8, 14, 0.46);
  border-color: rgba(255, 255, 255, 0.13);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.14),
    inset 0 -1px 0 rgba(42, 182, 255, 0.07),
    0 18px 48px rgba(0, 0, 0, 0.2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: clamp(14px, 1.5vw, 26px);
}

.brand img {
  width: clamp(170px, 15vw, 230px);
  height: auto;
  flex: 0 0 auto;
}

.brand span {
  display: block;
  margin-top: 0;
  padding-left: 0;
  color: var(--text);
  font-size: clamp(26px, 2.25vw, 44px);
  line-height: 1;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}

.nav {
  display: flex;
  justify-content: center;
  gap: clamp(18px, 3vw, 46px);
  color: var(--text);
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.nav a {
  padding: 10px 0;
  transition: color 160ms ease;
}

.nav a:hover {
  color: var(--gold-soft);
}

.header-cta,
.button,
.text-link,
.filter-button,
.lightbox-close {
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.018);
  color: var(--text);
  font: inherit;
  font-weight: 900;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    0 10px 34px rgba(0, 0, 0, 0.28);
  transition: transform 160ms ease, border-color 160ms ease, background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.header-cta {
  padding: 13px 19px;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.045em;
}

.header-cta:hover,
.button:hover,
.filter-button:hover,
.text-link:hover,
.lightbox-close:hover {
  transform: translateY(-1px);
  border-color: rgba(246, 185, 47, 0.68);
  background: rgba(184, 107, 25, 0.085);
  color: var(--gold-soft);
  box-shadow:
    inset 0 0 0 1px rgba(246, 185, 47, 0.1),
    0 12px 38px rgba(0, 0, 0, 0.36);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: end;
  overflow: visible;
  padding: 118px clamp(18px, 4vw, 64px) 34px;
  isolation: isolate;
}

.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-grid {
  background: none;
  opacity: 0;
}

.home-hero {
  width: min(2040px, calc(100vw - clamp(24px, 2vw, 48px)));
  grid-template-columns: 1fr;
  grid-template-areas:
    "stage"
    "stats";
  gap: clamp(28px, 3vw, 52px);
  align-items: end;
  margin: 0 auto;
  padding: clamp(96px, 5.7vw, 118px) 0 clamp(30px, 3vw, 52px);
}

.hero-content {
  position: relative;
  z-index: 5;
  grid-area: copy;
  width: 100%;
  margin-left: 0;
  pointer-events: auto;
  overflow: visible;
}

.hero-content .button {
  pointer-events: auto;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.section .eyebrow {
  display: none;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 0;
  max-width: 18ch;
  font-size: clamp(46px, 6.4vw, 104px);
  line-height: 0.92;
  letter-spacing: 0;
  text-shadow: 0 3px 34px rgba(0, 0, 0, 0.82);
}

.rotating-headline {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 0.86em;
  overflow: visible;
}

.rotating-headline span {
  display: block;
  width: 100%;
}

.rotating-headline .headline-wide {
  box-sizing: border-box;
  width: 100%;
  display: grid;
  grid-template-columns: repeat(3, auto);
  justify-content: space-between;
  column-gap: clamp(28px, 6vw, 120px);
  padding-inline: clamp(28px, 6vw, 112px);
  font-size: clamp(30px, 3.4vw, 66px);
  line-height: 0.86;
  color: var(--display-muted);
  text-transform: uppercase;
}

.rotating-headline .headline-wide b {
  font: inherit;
  min-width: 0;
  text-align: center;
  white-space: nowrap;
}

.rotating-headline .headline-wide b:first-child {
  text-align: center;
}

.rotating-headline .headline-wide b:last-child {
  text-align: center;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  width: 100%;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(10, 12, 14, 0.9) 48%, rgba(0, 0, 0, 0.78)),
    radial-gradient(circle at 50% 0%, rgba(255, 210, 116, 0.1), transparent 38%);
}

.services-after-proof {
  margin-top: clamp(34px, 4vw, 70px);
}

.hero-service-card {
  display: grid;
  grid-template-columns: clamp(42px, 3vw, 60px) minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    ". copy";
  align-content: start;
  column-gap: clamp(12px, 1.05vw, 20px);
  row-gap: clamp(8px, 0.6vw, 12px);
  min-height: clamp(124px, 7.8vw, 168px);
  padding: clamp(12px, 1.25vw, 24px) clamp(24px, 3.2vw, 64px);
  border-right: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-service-card:last-child {
  border-right: 0;
}

.hero-service-card img {
  grid-area: icon;
  width: clamp(42px, 3vw, 60px);
  height: clamp(42px, 3vw, 60px);
  object-fit: contain;
  align-self: start;
  filter: brightness(0) invert(1);
}

.hero-service-card h2 {
  grid-area: title;
  max-width: 11ch;
  margin: 0;
  color: var(--text);
  font-size: clamp(25px, 2.02vw, 40px);
  line-height: 0.9;
  font-weight: 950;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.hero-service-card p {
  grid-area: copy;
  margin: 0;
  color: rgba(247, 251, 255, 0.62);
  font-size: clamp(17px, 1.15vw, 24px);
  line-height: 1.28;
  font-weight: 500;
}

.hero-content .eyebrow {
  display: none;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-actions-below {
  position: relative;
  z-index: 4;
  grid-area: actions;
  margin-top: 2px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.button.primary {
  background: rgba(255, 255, 255, 0.018);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.button.ghost {
  background: rgba(255, 255, 255, 0.085);
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.28);
}

.hero-album {
  position: relative;
  display: block;
  z-index: 1;
  grid-area: stage;
  aspect-ratio: 16 / 9;
  width: 100%;
  height: auto;
  min-height: 0;
  border: 0;
  outline: 0;
  background: #020304;
  box-shadow: 0 32px 120px rgba(0, 0, 0, 0.52);
  overflow: hidden;
  cursor: pointer;
}

.hero-album:focus,
.hero-album:focus-visible,
.hero-album:hover {
  border: 0;
  outline: 0;
}

.album-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  border: 0;
  outline: 0;
  transition: opacity 1200ms ease;
}

.album-slide.is-active {
  opacity: 1;
}

.album-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center;
  display: block;
  border: 0;
  outline: 0;
  filter: none;
}

.album-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.42) 0%, rgba(3, 6, 9, 0.16) 38%, transparent 78%),
    linear-gradient(to top, rgba(3, 6, 9, 0.28), transparent 42%);
}

.album-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  height: 2px;
  background: rgba(255, 255, 255, 0.1);
  opacity: 0.7;
}

.album-progress span {
  display: block;
  width: 100%;
  height: 100%;
  transform-origin: left;
  background: rgba(255, 255, 255, 0.72);
  animation: hero-progress 6500ms linear infinite;
}

@keyframes hero-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.studio-stats {
  position: relative;
  z-index: 2;
  grid-area: stats;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(18px, 5vw, 96px);
  margin-top: 0;
  background: transparent;
  border: 0;
  align-items: center;
}

.studio-stats .stat-item {
  padding: 0;
  background: transparent;
  text-align: left;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(10px, 1.2vw, 18px);
  min-width: 0;
}

.studio-stats img {
  display: block;
  width: clamp(63px, 5.95vw, 102px);
  height: clamp(63px, 5.95vw, 102px);
  object-fit: contain;
  flex: 0 0 auto;
}

.studio-stats .stat-copy {
  display: grid;
  gap: 4px;
  min-width: 0;
}

.studio-stats strong {
  display: block;
  font-size: clamp(26px, 4vw, 46px);
  line-height: 1;
}

.studio-stats .stat-copy span {
  color: var(--muted);
  font-size: clamp(16px, 1.4vw, 22px);
  text-transform: none;
  letter-spacing: 0;
  line-height: 1.05;
  white-space: nowrap;
}

.section {
  width: var(--content-wide);
  margin: 0 auto;
  padding: clamp(76px, 10vw, 140px) 0;
}

.quiet-section {
  padding-top: clamp(54px, 7vw, 96px);
  padding-bottom: clamp(54px, 7vw, 96px);
}

.section-heading {
  width: min(820px, 100%);
  margin-bottom: 34px;
}

.section-heading.split {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.section-heading.compact {
  margin-bottom: 22px;
}

#projects-title {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(42px, 5vw, 82px);
  color: var(--display-muted);
  text-transform: uppercase;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(36px, 5vw, 72px);
  line-height: 0.98;
}

.section-heading p:not(.eyebrow),
.contact-section p {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 19px);
}

.projects-section {
  width: var(--content-wide);
  padding-top: clamp(24px, 3vw, 46px);
  padding-bottom: clamp(58px, 6vw, 96px);
}

.projects-section .section-heading,
.process-section .section-heading,
.testimonials-section .section-heading {
  margin-bottom: clamp(22px, 3vw, 44px);
}

.projects-section .section-heading {
  margin-bottom: clamp(24px, 2.4vw, 38px);
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
}

.art-tile {
  position: relative;
  aspect-ratio: 16 / 9;
  grid-column: span 3;
  border: 1px solid var(--line);
  background: var(--panel);
  overflow: hidden;
  cursor: zoom-in;
}

.art-tile:nth-child(10n + 1),
.art-tile:nth-child(10n + 6) {
  grid-column: span 3;
}

.art-tile:nth-child(10n + 4) {
  grid-column: span 3;
}

.art-tile img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.02);
  transition: transform 420ms ease, filter 420ms ease;
}

.art-tile:hover img {
  transform: scale(1.04);
  filter: saturate(1.05) contrast(1.05);
}

.art-meta {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 54px 16px 16px;
  background: linear-gradient(to top, rgba(3, 6, 9, 0.94), transparent);
  transform: translateY(10px);
  opacity: 0;
  transition: opacity 180ms ease, transform 180ms ease;
}

.art-tile:hover .art-meta,
.art-tile:focus-visible .art-meta {
  opacity: 1;
  transform: translateY(0);
}

.art-meta strong {
  display: block;
  font-size: 15px;
}

.art-meta span {
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.portfolio-page {
  background: #000;
}

.services-page {
  padding-top: 132px;
}

.services-hero {
  width: var(--content-wide);
  margin: 0 auto;
  padding: clamp(72px, 9vw, 140px) 0 clamp(34px, 5vw, 72px);
}

.services-hero h1 {
  max-width: 11ch;
  font-size: clamp(58px, 8vw, 136px);
}

.services-hero p:not(.eyebrow) {
  max-width: 820px;
  color: var(--text);
  font-size: clamp(18px, 1.55vw, 24px);
  font-weight: 650;
}

.service-list {
  width: var(--content-wide);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.service-list article {
  min-height: 300px;
  padding: clamp(24px, 2.6vw, 44px);
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.025);
  transition: background 220ms ease, transform 220ms ease;
}

.service-list article:hover {
  background: rgba(18, 63, 104, 0.08);
  transform: translateY(-2px);
}

.service-list span {
  display: block;
  margin-bottom: clamp(44px, 5vw, 82px);
  color: var(--cyan-2);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.service-list h2 {
  margin-bottom: 14px;
  font-size: clamp(25px, 2vw, 38px);
  line-height: 1.02;
}

.service-list p {
  margin: 0;
  color: var(--text);
  font-size: clamp(15px, 1vw, 18px);
  font-weight: 600;
  line-height: 1.45;
}

.portfolio-hero {
  width: var(--content-wide);
  margin: 0 auto;
  padding: 124px 0 42px;
  transform: none;
}

.portfolio-hero-copy {
  display: grid;
  grid-template-columns: minmax(360px, 0.78fr) 1px minmax(720px, 1.22fr);
  align-items: center;
  gap: clamp(38px, 4.3vw, 74px);
}

.portfolio-hero h1 {
  max-width: 16ch;
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(58px, 4.85vw, 86px);
  font-weight: 700;
  line-height: 0.88;
  letter-spacing: 0;
  text-transform: uppercase;
}

.portfolio-hero-divider {
  width: 1px;
  height: min(180px, 14vw);
  background: linear-gradient(to bottom, transparent, rgba(247, 251, 255, 0.84), transparent);
  box-shadow: 0 0 18px rgba(42, 182, 255, 0.2);
}

.portfolio-hero p:not(.eyebrow) {
  width: min(820px, 100%);
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1.02vw, 19px);
  font-weight: 700;
  line-height: 1.35;
}

.portfolio-hero p span {
  display: block;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .portfolio-hero {
    transform: none;
  }

  .portfolio-hero-copy {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .portfolio-hero-divider {
    width: min(540px, 100%);
    height: 1px;
    background: linear-gradient(to right, rgba(247, 251, 255, 0.82), transparent);
  }

  .portfolio-hero p span {
    white-space: normal;
  }
}

.portfolio-wall {
  width: var(--content-wide);
  margin: 0 auto clamp(18px, 2.4vw, 34px);
}

.portfolio-cta {
  width: var(--content-wide);
  margin: 0 auto clamp(58px, 6vw, 96px);
  aspect-ratio: 2157 / 370;
  min-height: 0;
  padding: clamp(28px, 2.7vw, 48px) clamp(34px, 4.6vw, 86px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(22px, 4vw, 72px);
  border: 0;
  border-radius: 0;
  background: url("media/content/block-p.png") center / contain no-repeat;
  box-shadow: none;
}

.portfolio-cta > div {
  display: grid;
  align-content: center;
}

.portfolio-cta h2 {
  margin: 0 0 8px;
  font-size: clamp(28px, 2.5vw, 52px);
  line-height: 1;
}

.portfolio-cta p:not(.eyebrow) {
  margin: 0;
  max-width: none;
  color: var(--text);
  font-size: clamp(15px, 0.95vw, 19px);
  font-weight: 600;
  line-height: 1.4;
  white-space: nowrap;
}

.fixed-grid {
  grid-template-columns: repeat(auto-fill, minmax(390px, 1fr));
  grid-auto-flow: dense;
  gap: 12px;
}

.fixed-grid .art-tile,
.fixed-grid .art-tile:nth-child(10n + 1),
.fixed-grid .art-tile:nth-child(10n + 4),
.fixed-grid .art-tile:nth-child(10n + 6) {
  grid-column: auto;
}

.fixed-grid .art-tile.is-wide {
  aspect-ratio: 16 / 9;
}

.fixed-grid .art-tile.is-square {
  aspect-ratio: 1 / 1;
}

.services-heading {
  width: 100%;
  margin-bottom: 28px;
}

.services-heading h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(38px, 4.9vw, 76px);
  line-height: 1;
}

.services-heading p {
  max-width: none;
  margin: 0;
  color: var(--text);
}

.services-heading strong {
  display: inline;
  color: var(--text);
  font-size: clamp(17px, 1.5vw, 22px);
  font-weight: 900;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.service-grid img {
  width: 100%;
  height: auto;
  background: #000;
  transition: transform 500ms ease, filter 500ms ease;
}

.service-grid img:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.clients-showcase {
  position: relative;
  width: 100%;
  margin: 0 auto;
  padding: clamp(54px, 6vw, 94px) 0 clamp(46px, 5vw, 82px);
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 63, 104, 0.12), transparent 44%),
    linear-gradient(90deg, rgba(7, 16, 26, 0.72), rgba(3, 6, 9, 0.96));
}

.clients-showcase h2 {
  position: relative;
  z-index: 1;
  width: var(--content-wide);
  margin: 0 auto clamp(26px, 2.6vw, 46px);
  color: var(--display-muted);
  -webkit-text-stroke: 0;
  text-align: center;
  font-size: clamp(72px, 11.4vw, 220px);
  font-weight: 950;
  line-height: 0.82;
  text-transform: uppercase;
  white-space: nowrap;
}

.client-showcase-bar {
  position: relative;
  z-index: 2;
  height: clamp(118px, 9vw, 168px);
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  background:
    linear-gradient(90deg, rgba(2, 7, 11, 0.18), rgba(2, 7, 11, 0.46));
  overflow: hidden;
}

.client-showcase-bar .client-track {
  animation-duration: 68s;
}

.client-showcase-bar .client-logo {
  width: clamp(210px, 16vw, 320px);
  height: clamp(118px, 9vw, 168px);
  padding: clamp(20px, 2vw, 34px);
}

.client-showcase-bar .client-logo img {
  height: clamp(70px, 6vw, 112px);
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.project-card {
  position: relative;
  display: block;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 0;
  background: #010203;
  color: inherit;
  text-decoration: none;
  transition: transform 420ms ease, filter 420ms ease;
}

.project-card img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: contain;
  filter: none;
  transition: transform 700ms ease, filter 700ms ease;
}

.project-card:hover {
  transform: translateY(-3px);
}

.project-card:hover img {
  transform: scale(1.018);
  filter: brightness(1.06) contrast(1.03);
}

.project-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px clamp(18px, 3vw, 54px);
  align-items: center;
  margin-top: 22px;
  padding: 18px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  color: var(--text);
  font-size: clamp(15px, 1.15vw, 20px);
  font-weight: 850;
  line-height: 1.35;
}

.project-proof strong {
  font: inherit;
}

.project-proof span {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.project-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 12px;
  border-radius: 50%;
  background: currentColor;
}

.top-client-bar {
  position: relative;
  z-index: 2;
  height: 110px;
  width: 100%;
  margin: 124px 0 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #000;
  backdrop-filter: none;
  overflow: hidden;
}

.client-track {
  display: flex;
  width: max-content;
  animation: client-scroll 56s linear infinite;
}

.client-logo {
  width: clamp(170px, 13vw, 235px);
  height: 110px;
  display: grid;
  place-items: center;
  padding: 18px 18px;
}

.client-logo img {
  width: 100%;
  height: 82px;
  object-fit: contain;
  filter: grayscale(1) brightness(3);
  opacity: 0.92;
}

@keyframes client-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.text-link {
  justify-self: end;
  align-self: end;
  padding: 13px 16px;
  color: var(--text);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.partner-strip {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.partner-logo {
  display: grid;
  place-items: center;
  min-height: 120px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.035);
}

.partner-logo img {
  max-width: 160px;
  max-height: 58px;
  object-fit: contain;
  filter: grayscale(1) brightness(2.7);
  opacity: 0.76;
}

.pipeline-heading {
  width: 100%;
  margin-bottom: 28px;
}

.pipeline-heading h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(38px, 4.9vw, 76px);
  line-height: 1;
  color: var(--display-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.pipeline-heading p {
  max-width: 780px;
  margin: 0;
  color: var(--text);
}

.team-heading {
  width: var(--content-wide);
  margin-left: auto;
  margin-right: auto;
  margin-bottom: clamp(28px, 3vw, 48px);
}

.team-heading h2 {
  max-width: none;
  margin-bottom: 12px;
  font-size: clamp(38px, 4.9vw, 76px);
  line-height: 1;
  color: var(--display-muted);
  text-transform: uppercase;
  white-space: nowrap;
}

.team-heading p {
  max-width: 1200px;
  margin: 0;
  color: var(--text);
  font-size: clamp(30px, 2.7vw, 45px);
  font-weight: 500;
  line-height: 1.25;
}

.team-section {
  width: calc(100% - 16px);
  max-width: none;
  padding-top: clamp(64px, 7vw, 112px);
  padding-bottom: clamp(62px, 7vw, 108px);
}

.pipeline-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.pipeline-cards img {
  width: 100%;
  height: auto;
  background: #000;
  transition: transform 500ms ease, filter 500ms ease;
}

.pipeline-cards img:hover {
  transform: translateY(-3px);
  filter: brightness(1.08);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.process-track article {
  min-height: 260px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 63, 104, 0.16), transparent 42%),
    var(--panel);
}

.process-track span {
  color: var(--cyan-2);
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.process-track h3 {
  margin: 96px 0 0;
  max-width: 12ch;
  font-size: clamp(28px, 3.4vw, 48px);
  line-height: 0.98;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.team-card {
  position: relative;
  aspect-ratio: 0.88;
  overflow: hidden;
  border: 0;
  background: #050505;
}

.team-card > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.05) brightness(0.9);
  transition: transform 650ms ease, filter 650ms ease;
}

.team-card:hover > img {
  transform: scale(1.035);
  filter: grayscale(1) contrast(1.08) brightness(1);
}

.team-card div,
.team-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 48px 16px 16px;
  background: linear-gradient(to top, rgba(3, 6, 9, 0.94), transparent);
}

.team-card strong,
.testimonial-card strong,
.team-card span,
.testimonial-card span {
  display: block;
}

.team-card p {
  margin: 10px 0 0;
  color: rgba(247, 251, 255, 0.74);
  font-size: 13px;
  line-height: 1.35;
}

.team-card strong,
.testimonial-card strong {
  font-size: 18px;
  line-height: 1.05;
}

.team-card span,
.testimonial-card span {
  margin-top: 4px;
  color: var(--cyan-2);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.team-card span {
  color: rgba(247, 251, 255, 0.62);
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.3vw, 34px);
  background: transparent;
}

.testimonials-section .section-heading {
  width: 100%;
}

.testimonials-section {
  position: relative;
  padding-top: clamp(62px, 7vw, 108px);
  padding-bottom: clamp(78px, 8vw, 128px);
  overflow: visible;
  background:
    linear-gradient(90deg, transparent, rgba(6, 142, 199, 0.12), transparent) 50% 168px / min(760px, 72vw) 1px no-repeat,
    linear-gradient(90deg, rgba(7, 88, 137, 0.12), transparent 22%, transparent 78%, rgba(7, 88, 137, 0.12)) 50% 94px / 100% 1px no-repeat;
}

.testimonials-section h2 {
  max-width: none;
  margin: 0;
  color: var(--text);
  font-family: "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(42px, 6vw, 104px);
  line-height: 0.88;
  text-align: center;
  text-shadow:
    0 2px 0 rgba(89, 167, 217, 0.4),
    0 14px 34px rgba(4, 154, 219, 0.2);
  text-transform: uppercase;
  white-space: nowrap;
}

.testimonials-heading {
  position: relative;
  z-index: 1;
  max-width: none;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.testimonials-heading .eyebrow {
  margin-bottom: 16px;
  color: #f6b92f;
  font-size: clamp(13px, 1.1vw, 21px);
  letter-spacing: 0.32em;
}

.testimonial-heading-rule {
  display: grid;
  grid-template-columns: minmax(40px, 1fr) 32px minmax(40px, 1fr);
  gap: clamp(12px, 1.5vw, 24px);
  align-items: center;
  width: min(620px, 78vw);
  margin: 0 auto clamp(16px, 1.45vw, 22px);
}

.testimonial-heading-rule span {
  height: 1px;
  background:
    radial-gradient(circle, rgba(40, 104, 156, 0.95) 0 3px, transparent 4px) 50% 50% / 12px 12px no-repeat,
    linear-gradient(90deg, transparent, rgba(28, 83, 132, 0.7), transparent);
  box-shadow: 0 0 16px rgba(14, 49, 89, 0.56);
}

.testimonial-heading-rule svg {
  width: 32px;
  height: 32px;
  fill: none;
  stroke: #f6b92f;
  stroke-width: 2;
  filter: drop-shadow(0 0 8px rgba(246, 185, 47, 0.42));
}

.testimonial-subtitle {
  margin: 0;
  color: #fff;
  font-size: clamp(16px, 1.4vw, 24px);
  font-weight: 500;
}

.testimonial-card {
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-content: space-between;
  min-height: clamp(470px, 30vw, 610px);
  padding: clamp(46px, 3.8vw, 70px) clamp(38px, 3.6vw, 64px) clamp(40px, 3.4vw, 62px);
  border: 0;
  background: transparent;
  box-shadow: none;
  text-align: left;
  isolation: isolate;
}

.testimonial-content {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 1fr auto auto;
  align-content: space-between;
  height: 100%;
  opacity: 1;
  transition: opacity 420ms ease;
}

.testimonial-card > [data-testimonial-slot] {
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 0;
}

[data-testimonial-slot].is-swapping .testimonial-content {
  opacity: 0;
}

.testimonial-frame,
.testimonial-glow {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.testimonial-frame {
  z-index: 1;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: fill;
  overflow: visible;
  filter: drop-shadow(0 24px 64px rgba(0, 0, 0, 0.62));
}

.testimonial-copy,
.testimonial-divider,
.testimonial-person {
  position: relative;
  z-index: 2;
}

.testimonial-frame-outer,
.testimonial-frame-inner,
.testimonial-frame-topline,
.testimonial-frame-bottomline,
.testimonial-frame-corner,
.testimonial-frame-blue-rim {
  fill: none;
  vector-effect: non-scaling-stroke;
}

.testimonial-frame-panel {
  stroke: rgba(34, 91, 145, 0.12);
  stroke-width: 1;
  vector-effect: non-scaling-stroke;
}

.testimonial-frame-grain {
  fill: rgba(255, 255, 255, 0.24);
  mix-blend-mode: screen;
  opacity: 0.55;
}

.testimonial-frame-outer {
  stroke-width: 3.1;
}

.testimonial-frame-inner {
  stroke: rgba(35, 93, 146, 0.34);
  stroke-width: 1.45;
}

.testimonial-frame-topline,
.testimonial-frame-bottomline {
  stroke: rgba(246, 185, 47, 0.4);
  stroke-width: 1.45;
}

.testimonial-frame-blue-rim {
  stroke-width: 2.8;
  filter: drop-shadow(0 0 7px rgba(28, 86, 139, 0.76));
}

.testimonial-frame-corner {
  stroke: rgba(36, 98, 151, 0.62);
  stroke-width: 1.9;
}

.testimonial-frame-corner-gold {
  fill: none;
  stroke: #f6b92f;
  stroke-width: 3.6;
  vector-effect: non-scaling-stroke;
  filter: drop-shadow(0 0 8px rgba(246, 185, 47, 0.56));
}

.testimonial-frame-tech {
  fill: none;
  stroke: rgba(32, 88, 138, 0.44);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.testimonial-glow {
  z-index: 0;
  inset: 10px;
  background:
    radial-gradient(circle at 50% 100%, rgba(20, 68, 116, 0.24), transparent 32%),
    radial-gradient(circle at 50% 0, rgba(18, 56, 98, 0.16), transparent 28%);
  filter: blur(2px);
}

.testimonial-card .testimonial-copy {
  position: relative;
  width: 100%;
  min-height: 0;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
}

.testimonial-card .testimonial-copy::before {
  content: "”";
  position: absolute;
  transform: translateY(-84px);
  color: var(--cyan);
  font-family: Georgia, serif;
  font-size: 104px;
  line-height: 1;
  opacity: 0.9;
}

.testimonial-copy p {
  margin: 0;
  color: #fff;
  font-size: clamp(15px, 1.1vw, 18px);
  font-style: italic;
  font-weight: 700;
  line-height: 1.48;
}

.testimonial-card .testimonial-copy::before {
  content: "\201C";
  position: static;
  display: block;
  transform: none;
  margin-bottom: 22px;
  color: #f6b92f;
  -webkit-text-stroke: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(78px, 6vw, 112px);
  line-height: 0.48;
  opacity: 1;
  text-shadow: 0 0 14px rgba(246, 185, 47, 0.38);
}

.testimonial-copy p {
  color: rgba(247, 251, 255, 0.92);
  font-size: clamp(16px, 1.2vw, 22px);
  font-style: normal;
  font-weight: 520;
  line-height: 1.45;
}

.testimonial-divider {
  display: flex;
  align-items: center;
  height: 25px;
  margin: clamp(24px, 2.5vw, 42px) 0 clamp(20px, 2vw, 34px);
}

.testimonial-divider::before,
.testimonial-divider::after {
  content: "";
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, transparent, rgba(31, 92, 145, 0.5));
}

.testimonial-divider::after {
  background: linear-gradient(90deg, rgba(31, 92, 145, 0.5), transparent);
}

.testimonial-divider span {
  width: 34px;
  height: 1px;
  background: #245f95;
  box-shadow: 0 0 12px rgba(34, 95, 149, 0.82);
}

.testimonial-person {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: clamp(16px, 1.5vw, 24px);
  align-items: center;
  margin-top: 0;
}

.testimonial-avatar {
  position: relative;
  width: clamp(72px, 5.1vw, 92px);
  height: clamp(72px, 5.1vw, 92px);
  display: grid;
  place-items: center;
  border-radius: 50%;
  background:
    conic-gradient(from 18deg, rgba(18, 58, 101, 0.42), #2a6fa8, rgba(24, 72, 119, 0.45), #123f68, rgba(18, 58, 101, 0.42));
  box-shadow:
    0 0 0 1px rgba(36, 96, 148, 0.38),
    0 0 24px rgba(13, 51, 92, 0.46);
}

.testimonial-avatar::before {
  content: "";
  position: absolute;
  inset: 7px;
  border: 1px solid rgba(247, 251, 255, 0.45);
  border-radius: inherit;
}

.testimonial-avatar img {
  width: calc(100% - 14px);
  height: calc(100% - 14px);
  object-fit: cover;
  border-radius: 50%;
  filter: saturate(0.84) contrast(1.03) brightness(0.94);
}

.testimonial-person strong {
  color: var(--text);
  font-size: clamp(18px, 1.4vw, 26px);
  font-weight: 950;
  line-height: 1;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-person span {
  margin-top: 8px;
  color: #f6b92f;
  font-size: clamp(12px, 0.9vw, 15px);
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.testimonial-person em {
  display: block;
  margin-top: 10px;
  color: rgba(247, 251, 255, 0.7);
  font-size: clamp(12px, 0.9vw, 15px);
  font-style: normal;
  font-weight: 850;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.testimonial-card > strong {
  margin-top: 15px;
  font-size: 19px;
}

.testimonial-card > span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: none;
}

.contact-section {
  width: 100%;
  margin: 0 auto clamp(34px, 4vw, 60px);
  padding: clamp(34px, 5vw, 64px) max(clamp(18px, 5vw, 64px), calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(460px, 1fr);
  gap: clamp(34px, 5.6vw, 96px);
  align-items: start;
  border: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(18, 63, 104, 0.12), transparent 44%),
    linear-gradient(90deg, rgba(7, 16, 26, 0.72), rgba(3, 6, 9, 0.96));
  box-shadow: none;
}

.contact-section h2 {
  margin-bottom: clamp(12px, 1.2vw, 18px);
  font-size: clamp(50px, 7vw, 116px);
  color: var(--text);
  text-transform: uppercase;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 640px;
  color: var(--text);
  font-size: clamp(19px, 1.6vw, 26px);
}

.contact-location {
  display: grid;
  gap: 12px;
  margin-top: clamp(24px, 3vw, 42px);
  color: var(--text);
  font-size: clamp(17px, 1.25vw, 22px);
  font-weight: 700;
}

.contact-location p {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 0;
  color: var(--text);
}

.contact-location .production-force {
  margin-top: clamp(10px, 1vw, 18px);
}

.flag-banner {
  display: block;
  width: 128px;
  height: auto;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.contact-actions {
  margin-top: clamp(26px, 3vw, 44px);
  justify-content: flex-start;
  flex-wrap: nowrap;
}

.contact-actions .button {
  min-height: 58px;
  padding: 16px 22px;
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.contact-actions .button.primary {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--text);
}

.contact-actions .button.ghost {
  background: rgba(255, 255, 255, 0.055);
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.04);
}

.contact-actions .button:hover,
.contact-actions .button.primary:hover,
.contact-actions .button.ghost:hover {
  background: rgba(184, 107, 25, 0.085);
  border-color: rgba(246, 185, 47, 0.68);
  color: var(--gold-soft);
}

.contact-form {
  display: grid;
  gap: 20px;
  width: 100%;
  padding: clamp(24px, 2.6vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 6px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.018)),
    rgba(0, 0, 0, 0.38);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.04),
    0 26px 80px rgba(0, 0, 0, 0.34);
}

.contact-form label {
  display: grid;
  gap: 9px;
  color: var(--text);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-size: 16px;
  line-height: 1.35;
  outline: 0;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.035);
}

.contact-form input {
  min-height: 54px;
  padding: 0 16px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 156px;
  padding: 14px 16px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(246, 185, 47, 0.62);
  box-shadow: 0 0 0 1px rgba(246, 185, 47, 0.18);
}

.contact-form button {
  justify-self: start;
  min-width: 190px;
  min-height: 58px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 40;
  display: none;
  place-items: center;
  padding: 76px clamp(16px, 4vw, 52px) 32px;
  background: rgba(0, 0, 0, 0.9);
}

.lightbox.is-open {
  display: grid;
}

.lightbox.is-zoomed {
  overflow: hidden;
  padding: 0;
}

.lightbox img {
  --lightbox-pan-x: 0px;
  --lightbox-pan-y: 0px;
  --lightbox-zoom-scale: 2;
  max-width: 100%;
  max-height: calc(100svh - 150px);
  object-fit: contain;
  cursor: zoom-in;
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.72);
  transform-origin: center;
  transition: transform 180ms ease, max-height 180ms ease;
  user-select: none;
  touch-action: none;
  -webkit-user-drag: none;
}

.lightbox img.is-zoomed {
  max-height: none;
  cursor: grab;
  transform: translate3d(var(--lightbox-pan-x), var(--lightbox-pan-y), 0) scale(var(--lightbox-zoom-scale));
}

.lightbox img.is-zoomed.is-panning {
  cursor: grabbing;
  transition: none;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: clamp(48px, 4.8vw, 76px);
  height: clamp(48px, 4.8vw, 76px);
  display: grid;
  place-items: center;
  border: 1px solid rgba(42, 182, 255, 0.48);
  border-radius: 999px;
  background: rgba(3, 9, 15, 0.72);
  color: var(--text);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", Impact, sans-serif;
  font-size: clamp(44px, 4.8vw, 72px);
  font-weight: 700;
  line-height: 0.7;
  cursor: pointer;
  transform: translateY(-50%);
  box-shadow: 0 0 32px rgba(42, 182, 255, 0.18);
  transition: border-color 180ms ease, color 180ms ease, background 180ms ease, transform 180ms ease;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  border-color: rgba(246, 185, 47, 0.74);
  background: rgba(14, 19, 22, 0.9);
  color: var(--gold-soft);
  transform: translateY(-50%) scale(1.04);
}

.lightbox-prev {
  left: clamp(12px, 2.4vw, 42px);
}

.lightbox-next {
  right: clamp(12px, 2.4vw, 42px);
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  padding: 11px 14px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.lightbox-caption {
  margin-top: 14px;
  color: var(--muted);
  font-size: 14px;
  text-align: center;
}

.reveal-item {
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.reveal-item.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.project-card.reveal-item,
.team-card.reveal-item,
.testimonial-card.reveal-item {
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    filter 180ms ease;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .nav {
    display: none;
  }

  .header-cta {
    justify-self: end;
  }

  .section-heading.split,
  .pipeline-heading,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    grid-template-columns: 1fr;
    grid-template-areas:
      "stage"
      "stats";
    align-items: end;
  }

  .hero-album {
    height: auto;
  }

  .hero-services {
    grid-template-columns: 1fr;
  }

  .hero-service-card {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .hero-service-card:last-child {
    border-bottom: 0;
  }

  .portfolio-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .fixed-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 380px), 1fr));
  }

  .art-tile,
  .art-tile:nth-child(10n + 1),
  .art-tile:nth-child(10n + 4),
  .art-tile:nth-child(10n + 6) {
    grid-column: span 3;
  }

  .service-grid,
  .pipeline-cards,
  .process-track,
  .service-list,
  .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .partner-strip {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .contact-actions {
    justify-content: flex-start;
    flex-wrap: wrap;
  }
}

@media (max-width: 700px) {
  .site-header {
    padding: 14px 16px;
    gap: 12px;
  }

  .brand img {
    width: 158px;
  }

  .brand span {
    font-size: 10px;
  }

  .pipeline-heading h2 {
    white-space: normal;
  }

  .header-cta {
    padding: 10px 11px;
    font-size: 11px;
  }

  .hero {
    min-height: 92svh;
    padding: 110px 18px 20px;
  }

  .home-hero {
    width: calc(100% - 32px);
    padding-top: 108px;
  }

  .hero-album {
    height: auto;
  }

  .top-client-bar {
    top: auto;
    margin-top: 104px;
    height: 92px;
  }

  .client-logo {
    width: 154px;
    height: 92px;
    padding: 14px 14px;
  }

  .client-logo img {
    height: 62px;
  }

  h1 {
    max-width: 12ch;
  }

  .rotating-headline {
    max-width: none;
  }

  .headline-wide {
    grid-template-columns: 1fr;
    row-gap: 8px;
    font-size: clamp(32px, 11vw, 58px);
  }

  .hero-services {
    margin-top: 0;
  }

  .hero-service-card {
    padding: 24px 18px;
  }

  .hero-service-card h2 {
    max-width: none;
  }

  .team-heading h2 {
    white-space: normal;
  }

  #projects-title {
    white-space: normal;
  }

  .testimonials-section h2 {
    white-space: normal;
  }

  .studio-stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px 18px;
  }

  .studio-stats .stat-item {
    justify-content: flex-start;
  }

  .section,
  .contact-section {
    width: calc(100% - 32px);
  }

  .contact-section {
    width: 100%;
  }

  .contact-location p {
    align-items: flex-start;
  }

  .contact-form {
    padding: 20px 16px;
  }

  .portfolio-grid,
  .service-grid,
  .service-list,
  .project-grid,
  .pipeline-cards,
  .process-track,
  .partner-strip,
  .team-grid,
  .testimonial-grid {
    grid-template-columns: 1fr;
  }

  .art-tile,
  .art-tile:nth-child(10n + 1),
  .art-tile:nth-child(10n + 4),
  .art-tile:nth-child(10n + 6) {
    grid-column: auto;
  }

  .fixed-grid {
    grid-template-columns: repeat(auto-fill, minmax(min(100%, 340px), 1fr));
  }

  .portfolio-hero-copy {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .portfolio-hero-divider {
    width: 100%;
    height: 1px;
    background: linear-gradient(to right, rgba(247, 251, 255, 0.82), transparent);
  }

  .portfolio-cta {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .portfolio-cta .button {
    justify-self: start;
  }

  .portfolio-cta p:not(.eyebrow) {
    white-space: normal;
  }

  .lightbox {
    padding-inline: 8px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 18px;
    transform: none;
  }

  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: scale(1.04);
  }

  .testimonial-card {
    min-height: 0;
    padding: 28px 22px;
  }

  .testimonial-card img {
    margin-top: 0;
  }

  .testimonial-avatar {
    width: 68px;
    height: 68px;
  }

  .testimonial-card .testimonial-copy {
    min-height: 0;
    padding: 0;
  }

  .service-item,
  .process-track article {
    min-height: 250px;
  }

  .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
  }
}

/* 2026 reference pass: dark glass first screen, robot hero, compact proof blocks. */
.site-header {
  padding: clamp(16px, 1.3vw, 24px) max(clamp(28px, 5vw, 92px), calc((100vw - 1560px) / 2));
  background: rgba(2, 4, 7, 0.92);
  border-bottom: 1px solid rgba(255, 255, 255, 0.075);
  backdrop-filter: blur(18px);
}

.brand {
  gap: clamp(22px, 2vw, 38px);
}

.brand img {
  width: clamp(116px, 8vw, 154px);
}

.brand span {
  display: none;
}

.nav {
  color: #fff;
  gap: clamp(24px, 2.7vw, 50px);
  font-size: clamp(13px, 0.78vw, 16px);
}

.header-cta,
.button {
  border-color: rgba(246, 185, 47, 0.42);
  border-radius: 5px;
}

.button.primary,
.button.ghost {
  background: rgba(0, 0, 0, 0.22);
  border-color: rgba(246, 185, 47, 0.42);
}

.header-cta::after,
.hero-actions .button.primary::after {
  content: "\00a0\2197";
  color: var(--gold-soft);
}

.reference-hero {
  width: min(1560px, calc(100vw - clamp(40px, 8vw, 180px)));
  min-height: auto;
  padding: clamp(112px, 6vw, 134px) 0 clamp(24px, 2.5vw, 42px);
  gap: 20px;
}

.reference-hero::before {
  content: "";
  position: absolute;
  inset: clamp(82px, 5vw, 118px) max(-90px, -4vw) 0;
  z-index: -1;
  background:
    radial-gradient(circle at 76% 24%, rgba(18, 63, 104, 0.12), transparent 30%),
    radial-gradient(circle at 46% 76%, rgba(18, 63, 104, 0.08), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.018), transparent 30%);
  opacity: 0.9;
}

.hero-stage {
  position: relative;
  display: grid;
  grid-template-columns: minmax(420px, 0.68fr) minmax(680px, 1.32fr);
  align-items: center;
  min-height: clamp(500px, 41vw, 680px);
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-stage::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(3, 6, 9, 0.98) 0%, rgba(3, 6, 9, 0.62) 37%, rgba(3, 6, 9, 0.1) 76%),
    radial-gradient(circle at 76% 56%, rgba(18, 63, 104, 0.2), transparent 34%);
  pointer-events: none;
}

.hero-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, transparent 0 44%, rgba(18, 63, 104, 0.16) 44.15%, transparent 44.4%),
    radial-gradient(ellipse at 72% 76%, transparent 0 26%, rgba(36, 95, 149, 0.17) 26.25%, transparent 26.7%),
    radial-gradient(ellipse at 72% 76%, transparent 0 38%, rgba(36, 95, 149, 0.11) 38.25%, transparent 38.55%);
  opacity: 0.55;
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 3;
  padding: clamp(24px, 2vw, 38px) 0 clamp(24px, 2vw, 38px);
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 clamp(18px, 1.4vw, 26px);
  color: #fff;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero-kicker span {
  width: 30px;
  height: 10px;
  border-top: 2px solid var(--gold-soft);
  border-right: 2px solid var(--gold-soft);
  transform: skewX(28deg);
}

.hero-copy h1 {
  max-width: 10ch;
  margin: 0 0 clamp(18px, 1.6vw, 28px);
  font-size: clamp(62px, 5.6vw, 108px);
  line-height: 0.88;
  font-weight: 950;
  letter-spacing: 0.015em;
  text-transform: uppercase;
  color: #fff;
}

.hero-copy p:not(.hero-kicker) {
  max-width: 600px;
  margin: 0 0 clamp(22px, 2vw, 34px);
  color: #fff;
  font-size: clamp(17px, 1.15vw, 23px);
  font-weight: 500;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
  z-index: 2;
  display: flex;
  align-self: stretch;
  align-items: end;
  justify-content: center;
  min-width: 0;
}

.hero-visual img {
  width: min(100%, 1050px);
  height: auto;
  object-fit: contain;
  filter: drop-shadow(0 28px 70px rgba(0, 0, 0, 0.5));
}

.studio-stats {
  width: min(100%, 1460px);
  margin: -4px auto 0;
  padding: clamp(16px, 1.4vw, 24px) clamp(22px, 3.2vw, 58px);
  gap: 0;
  border: 1px solid rgba(36, 95, 149, 0.26);
  border-radius: 5px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    rgba(4, 9, 14, 0.72);
  box-shadow:
    inset 0 -1px 0 rgba(36, 95, 149, 0.17),
    0 20px 75px rgba(0, 0, 0, 0.42),
    0 0 32px rgba(18, 63, 104, 0.08);
}

.studio-stats .stat-item {
  justify-content: center;
  min-height: 78px;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.studio-stats .stat-item:last-child {
  border-right: 0;
}

.studio-stats img {
  width: clamp(48px, 4vw, 72px);
  height: clamp(48px, 4vw, 72px);
}

.studio-stats strong {
  font-size: clamp(28px, 3vw, 48px);
}

.studio-stats .stat-copy span {
  font-size: clamp(12px, 0.85vw, 16px);
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.projects-section {
  padding-top: clamp(30px, 3vw, 54px);
}

.section-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 10px;
  color: var(--cyan-2);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.section-kicker span {
  width: 24px;
  height: 8px;
  border-top: 2px solid var(--gold-soft);
  border-right: 2px solid var(--gold-soft);
  transform: skewX(28deg);
}

#projects-title {
  color: #fff;
  font-size: clamp(26px, 2vw, 38px);
  letter-spacing: 0.12em;
}

.view-all-link {
  align-self: center;
  color: #fff;
  font-size: clamp(11px, 0.74vw, 14px);
  font-weight: 950;
  letter-spacing: 0.09em;
  text-transform: uppercase;
  transition: color 160ms ease;
}

.view-all-link span {
  color: var(--gold-soft);
  margin-left: 8px;
}

.view-all-link:hover {
  color: var(--gold-soft);
}

.project-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.project-card:nth-child(n + 7) {
  display: none;
}

.project-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
}

.project-proof {
  display: none;
}

.services-after-proof {
  margin-top: clamp(22px, 2.5vw, 42px);
}

.hero-services {
  border: 0;
  gap: clamp(14px, 1.4vw, 24px);
  background: none;
}

.hero-service-card {
  position: relative;
  grid-template-columns: clamp(64px, 4vw, 82px) minmax(0, 1fr);
  grid-template-areas:
    "number number"
    "icon title"
    "icon copy";
  min-height: clamp(170px, 11vw, 230px);
  padding: clamp(22px, 2vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(36, 95, 149, 0.2);
  border-radius: 5px;
  background:
    linear-gradient(135deg, rgba(18, 63, 104, 0.09), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.008)),
    rgba(3, 8, 13, 0.78);
  box-shadow:
    inset 0 -1px 0 rgba(36, 95, 149, 0.18),
    0 18px 70px rgba(0, 0, 0, 0.35);
}

.hero-service-card::before,
.hero-service-card::after {
  content: "";
  position: absolute;
  right: 24px;
  width: 120px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(18, 63, 104, 0.25));
}

.hero-service-card::before {
  top: 40px;
}

.hero-service-card::after {
  bottom: 34px;
}

.service-number {
  grid-area: number;
  color: var(--cyan-2);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.hero-service-card img {
  width: clamp(62px, 4vw, 82px);
  height: clamp(62px, 4vw, 82px);
  filter: drop-shadow(0 0 16px rgba(246, 185, 47, 0.26));
}

.hero-service-card h2 {
  max-width: 11ch;
  font-size: clamp(25px, 2vw, 40px);
  letter-spacing: 0.035em;
}

.hero-service-card ul {
  grid-area: copy;
  margin: 8px 0 0 18px;
  padding: 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: clamp(14px, 0.92vw, 18px);
  font-weight: 550;
  line-height: 1.35;
}

.clients-showcase {
  background:
    linear-gradient(135deg, rgba(18, 63, 104, 0.12), transparent 42%),
    linear-gradient(90deg, rgba(7, 16, 26, 0.76), rgba(3, 6, 9, 0.96));
}

@media (max-width: 1280px) {
  .reference-hero {
    width: min(100% - 48px, 1180px);
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero-visual {
    margin-top: -80px;
    opacity: 0.9;
  }

  .project-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .reference-hero {
    width: calc(100% - 28px);
  }

  .brand span {
    display: none;
  }

  .hero-copy h1 {
    font-size: clamp(48px, 15vw, 82px);
  }

  .hero-visual {
    margin-top: 0;
  }

  .studio-stats,
  .hero-services,
  .project-grid {
    grid-template-columns: 1fr;
  }

  .studio-stats .stat-item {
    justify-content: flex-start;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
    padding: 12px 0;
  }

  .studio-stats .stat-item:last-child {
    border-bottom: 0;
  }
}

/* Robot reference hero pass */
body::after {
  content: "";
  position: fixed;
  inset: 1px;
  z-index: 60;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.reference-hero {
  width: min(1660px, calc(100vw - clamp(40px, 7vw, 150px)));
  padding-top: clamp(94px, 5.8vw, 124px);
  padding-bottom: clamp(20px, 1.8vw, 32px);
}

.hero-stage {
  grid-template-columns: minmax(340px, 0.55fr) minmax(0, 1.45fr);
  min-height: clamp(560px, 42vw, 720px);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  border-bottom: 1px solid rgba(36, 95, 149, 0.13);
  background:
    radial-gradient(circle at 72% 54%, rgba(18, 63, 104, 0.13), transparent 32%),
    radial-gradient(circle at 50% 100%, rgba(18, 63, 104, 0.16), transparent 24%),
    linear-gradient(110deg, rgba(0, 0, 0, 0.95) 0 30%, rgba(3, 8, 13, 0.42) 56%, rgba(0, 0, 0, 0.88) 100%);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.055),
    inset 0 -1px 0 rgba(36, 95, 149, 0.14),
    0 26px 120px rgba(18, 63, 104, 0.08);
}

.hero-stage::before {
  background:
    linear-gradient(90deg, rgba(246, 185, 47, 0.04), transparent 24%),
    radial-gradient(circle at 75% 88%, rgba(18, 63, 104, 0.2), transparent 23%),
    linear-gradient(180deg, transparent 0 72%, rgba(0, 0, 0, 0.5));
}

.hero-copy {
  padding: clamp(36px, 4.4vw, 78px) clamp(18px, 2vw, 34px) clamp(36px, 4vw, 64px) 0;
}

.hero-kicker {
  color: #fff;
  text-shadow: 0 0 18px rgba(18, 63, 104, 0.22);
}

.hero-copy h1 {
  font-family: "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(66px, 5.55vw, 112px);
  line-height: 0.92;
  letter-spacing: 0.015em;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.12),
    0 18px 42px rgba(0, 0, 0, 0.72);
}

.hero-copy p:not(.hero-kicker) {
  max-width: 500px;
  color: #fff;
  font-size: clamp(17px, 1vw, 22px);
  line-height: 1.38;
}

.hero-actions {
  margin-top: clamp(20px, 1.8vw, 34px);
}

.hero-actions .button {
  min-width: 174px;
  min-height: 46px;
  justify-content: center;
  border-radius: 4px;
}

.hero-actions .button::after,
.header-cta::after {
  content: "↗";
  margin-left: 12px;
  color: currentColor;
}

.hero-visual {
  align-items: flex-end;
  justify-content: flex-end;
  min-height: clamp(500px, 38vw, 660px);
  overflow: visible;
}

.hero-visual img {
  width: min(118%, 1250px);
  max-width: none;
  transform: translateX(2%) translateY(2%);
  filter:
    drop-shadow(0 34px 85px rgba(0, 0, 0, 0.58))
    drop-shadow(0 0 26px rgba(18, 63, 104, 0.08));
}

.studio-stats {
  width: min(100%, 1460px);
  min-height: 96px;
  margin: 0 auto clamp(18px, 1.8vw, 30px);
  padding: 10px clamp(30px, 4.5vw, 76px);
  border-color: rgba(36, 95, 149, 0.34);
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 63, 104, 0.34), transparent 18%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
    linear-gradient(90deg, rgba(3, 12, 20, 0.9), rgba(5, 11, 16, 0.74), rgba(3, 12, 20, 0.9));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.07),
    inset 0 -1px 0 rgba(36, 95, 149, 0.22),
    0 0 48px rgba(18, 63, 104, 0.09),
    0 24px 84px rgba(0, 0, 0, 0.5);
}

.studio-stats::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1px;
  width: min(340px, 38%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(36, 95, 149, 0.85), transparent);
  box-shadow: 0 0 20px rgba(18, 63, 104, 0.75);
}

.studio-stats .stat-item {
  position: relative;
  min-height: 76px;
  border-right: 0;
}

.studio-stats .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 22%;
  right: 0;
  bottom: 22%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(247, 251, 255, 0.32), transparent);
}

.studio-stats img {
  width: clamp(62px, 4.4vw, 86px);
  height: clamp(62px, 4.4vw, 86px);
  filter:
    brightness(1.2)
    drop-shadow(0 0 16px rgba(18, 63, 104, 0.44))
    drop-shadow(0 0 10px rgba(255, 255, 255, 0.16));
}

.studio-stats strong {
  color: #fff;
  font-size: clamp(34px, 3.15vw, 54px);
  line-height: 0.95;
  text-shadow: 0 0 16px rgba(18, 63, 104, 0.16);
}

.studio-stats .stat-copy span {
  color: rgba(247, 251, 255, 0.82);
  font-weight: 800;
}

.button.primary,
.header-cta:hover,
.button.ghost:hover,
.nav a:hover,
.view-all-link:hover {
  color: var(--gold-soft);
}

.button.primary,
.header-cta:hover,
.button.ghost:hover {
  border-color: rgba(246, 185, 47, 0.82);
  background: rgba(246, 185, 47, 0.06);
  box-shadow: 0 0 22px rgba(246, 185, 47, 0.12);
}

.site-header .brand span {
  display: block;
  font-family: "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  color: #fff;
  font-size: clamp(22px, 2.05vw, 38px);
  line-height: 0.95;
  letter-spacing: 0.075em;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.08);
}

.site-header .brand {
  align-items: center;
  gap: clamp(18px, 1.6vw, 32px);
}

.site-header .brand img {
  width: clamp(118px, 8.6vw, 166px);
}

@media (max-width: 980px) {
  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy {
    padding-bottom: 0;
  }

  .hero-visual {
    margin-top: -30px;
    min-height: 0;
  }

  .hero-visual img {
    width: min(112%, 1000px);
    transform: none;
  }
}

/* Final wide-layout override: use smaller side gutters like the reference. */
:root {
  --max: 1900px;
  --wide: 1900px;
  --content-wide: min(var(--wide), calc(100% - clamp(28px, 3vw, 64px)));
}

.site-header {
  padding-left: max(clamp(20px, 3vw, 56px), calc((100vw - var(--wide)) / 2));
  padding-right: max(clamp(20px, 3vw, 56px), calc((100vw - var(--wide)) / 2));
}

.reference-hero,
.section,
.projects-section,
.services-hero,
.service-list,
.team-heading,
.clients-showcase h2 {
  width: var(--content-wide);
}

.reference-hero {
  padding-top: 60px;
}

.hero-stage {
  grid-template-columns: minmax(650px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  min-height: 515px;
  overflow: hidden;
  background: #000;
}

.hero-stage::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0 28%, rgba(0, 0, 0, 0.36) 52%, transparent 78%);
}

.hero-stage::after {
  content: none;
}

.hero-copy h1 {
  font-size: clamp(62px, 4.2vw, 94px);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.hero-visual img {
  width: 1500px;
  max-width: none;
  flex: 0 0 auto;
  transform: translateX(4%) translateY(-4%);
}

/* Clients and team reference redesign. */
.clients-team-section {
  position: relative;
  margin-top: clamp(-18px, -1.2vw, -10px);
  padding: clamp(4px, 0.55vw, 10px) 0 clamp(54px, 5vw, 86px);
  overflow: hidden;
  border-top: 1px solid rgba(63, 181, 255, 0.1);
  border-bottom: 1px solid rgba(63, 181, 255, 0.08);
  background: #000;
}

.clients-team-section::before {
  content: none;
}

.clients-team-section .clients-showcase,
.clients-team-section .team-section {
  position: relative;
  z-index: 1;
  width: var(--content-wide);
  margin-left: auto;
  margin-right: auto;
}

.clients-team-section .clients-showcase {
  padding: 0;
  overflow: visible;
  border: 0;
  background: transparent;
}

.clients-team-section .clients-showcase::after {
  content: "";
  position: absolute;
  left: 34%;
  right: 34%;
  top: calc(100% - 38px);
  z-index: -1;
  height: 54px;
  background: radial-gradient(ellipse at 50% 0, rgba(0, 174, 255, 0.42), rgba(0, 128, 255, 0.14) 46%, transparent 72%);
  filter: blur(8px);
  opacity: 0.72;
  pointer-events: none;
}

.clients-team-section .section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 10px;
  color: var(--gold-soft);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1;
  text-transform: uppercase;
}

.clients-team-section .section-kicker::before,
.clients-team-section .section-kicker::after {
  content: "";
  display: block;
  width: 24px;
  height: 10px;
  border-top: 2px solid currentColor;
}

.clients-team-section .section-kicker span {
  width: auto;
  height: auto;
  border: 0;
  transform: none;
}

.clients-team-section .section-kicker::before {
  border-left: 2px solid transparent;
}

.clients-team-section .section-kicker::after {
  border-right: 2px solid transparent;
}

.clients-team-section .clients-showcase h2,
.clients-team-section .team-heading h2 {
  width: auto;
  margin: 0;
  color: var(--text);
  -webkit-text-stroke: 0;
  text-align: left;
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(54px, 5.3vw, 104px);
  font-weight: 700;
  letter-spacing: 0.025em;
  line-height: 0.9;
  text-shadow:
    0 2px 0 rgba(0, 0, 0, 0.75),
    0 0 28px rgba(255, 255, 255, 0.12);
  text-transform: uppercase;
  white-space: normal;
}

.clients-team-section .clients-showcase > p {
  max-width: none;
  margin: 12px 0 12px;
  color: #fff;
  font-size: clamp(17px, 1.15vw, 22px);
  line-height: 1.45;
  white-space: nowrap;
}

.clients-team-section .client-showcase-bar {
  --client-frame-pad-x: clamp(44px, 5.2vw, 98px);
  --client-frame-pad-y: clamp(10px, 0.95vw, 18px);
  position: relative;
  z-index: 1;
  aspect-ratio: 2103 / 172;
  min-height: clamp(94px, 8.2vw, 152px);
  margin-top: clamp(8px, 0.9vw, 16px);
  overflow: hidden;
  isolation: isolate;
  border: 0;
  background: url("media/content/block-h-02.png?v=20260501-block-tone-match") center / 100% 100% no-repeat;
  clip-path: none;
  box-shadow: none;
}

.clients-team-section .client-showcase-bar::after {
  content: none;
}

.clients-team-section .client-logo-canvas {
  position: absolute;
  inset: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  -webkit-mask: url("media/content/block-h-mask.png") center / 100% 100% no-repeat;
  mask: url("media/content/block-h-mask.png") center / 100% 100% no-repeat;
  mask-mode: luminance;
  pointer-events: none;
}

.clients-team-section .client-logo-mask {
  position: absolute;
  inset: 0;
  z-index: 3;
  display: block;
  box-sizing: border-box;
  padding: var(--client-frame-pad-y) var(--client-frame-pad-x);
  overflow: hidden;
  border-radius: clamp(12px, 1vw, 20px);
  -webkit-mask: url("media/content/block-h-mask-alpha.png") center / 100% 100% no-repeat;
  mask: url("media/content/block-h-mask-alpha.png") center / 100% 100% no-repeat;
}

.clients-team-section .client-track {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  animation: client-marquee-left 92s linear infinite;
  will-change: transform;
}

.clients-team-section .client-logo {
  position: relative;
  display: grid;
  place-items: center;
  flex: 0 0 clamp(220px, 13.2vw, 310px);
  width: clamp(220px, 13.2vw, 310px);
  height: 100%;
  padding: 0 clamp(22px, 1.6vw, 32px);
}

.clients-team-section .client-logo + .client-logo::before {
  content: "";
  position: absolute;
  left: 0;
  top: 18%;
  bottom: 18%;
  width: 2px;
  background: linear-gradient(180deg, transparent, rgba(122, 222, 255, 0.42), transparent);
}

.clients-team-section .client-logo img {
  height: clamp(42px, 3.2vw, 62px);
  max-width: 100%;
  filter: grayscale(1) brightness(2.85) contrast(1.02);
  opacity: 0.92;
  transform: translateY(1px);
}

@keyframes client-marquee-left {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-25%);
  }
}

.clients-team-section .team-section {
  max-width: none;
  padding: clamp(42px, 4vw, 72px) 0 0;
}

.clients-team-section .team-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  margin: 0 0 clamp(24px, 2.2vw, 42px);
}

.clients-team-section .team-heading p {
  max-width: none;
  margin: 16px 0 0;
  color: #fff;
  font-size: clamp(17px, 1.15vw, 22px);
  font-weight: 500;
  line-height: 1.35;
}

.team-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 214px;
  min-height: 48px;
  padding: 13px 24px;
  border: 1px solid rgba(246, 185, 47, 0.82);
  border-radius: 4px;
  background: rgba(6, 10, 15, 0.74);
  color: var(--text);
  font-size: 13px;
  font-weight: 950;
  letter-spacing: 0.055em;
  line-height: 1;
  text-transform: uppercase;
  box-shadow: inset 0 0 18px rgba(246, 185, 47, 0.08);
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.team-action:hover {
  transform: translateY(-2px);
  border-color: var(--gold-soft);
  color: var(--gold-soft);
}

.team-action span {
  color: var(--gold-soft);
  font-size: 18px;
  line-height: 0;
}

.clients-team-section .team-grid {
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: clamp(12px, 0.95vw, 18px);
}

.clients-team-section .team-card {
  aspect-ratio: 0.73;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  clip-path: none;
  isolation: isolate;
}

.clients-team-section .team-card::before,
.clients-team-section .team-card::after {
  content: none;
}

.clients-team-section .team-card .team-frame {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: fill;
  filter: drop-shadow(0 16px 42px rgba(0, 0, 0, 0.58));
  pointer-events: none;
}

.clients-team-section .team-card .team-photo {
  position: absolute;
  left: 6.4%;
  right: 6.4%;
  top: 5.2%;
  z-index: 2;
  width: 87.2%;
  height: 72.9%;
  border-radius: 10px 10px 0 0;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) contrast(1.08) brightness(0.9);
  transition: transform 650ms ease, filter 650ms ease;
}

.clients-team-section .team-card:hover .team-photo {
  transform: scale(1.025);
  filter: grayscale(1) contrast(1.08) brightness(1);
}

.clients-team-section .team-card:hover .team-frame {
  transform: none;
  filter: drop-shadow(0 16px 42px rgba(0, 0, 0, 0.58));
}

.clients-team-section .team-card div {
  position: absolute;
  left: 8.2%;
  right: 8.2%;
  bottom: 5.3%;
  z-index: 3;
  display: grid;
  grid-template-columns: 1fr;
  align-content: center;
  gap: 3px;
  min-height: 16.7%;
  padding: clamp(8px, 0.7vw, 14px) clamp(10px, 0.9vw, 18px);
  background: transparent;
}

.clients-team-section .team-card strong {
  grid-column: 1;
  color: var(--text);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 850;
  line-height: 1.05;
}

.clients-team-section .team-card span {
  grid-column: 1;
  margin-top: 1px;
  color: rgba(247, 251, 255, 0.66);
  font-size: clamp(9px, 0.57vw, 11px);
  font-weight: 950;
  letter-spacing: 0.09em;
  line-height: 1.24;
}

.clients-team-section .team-card .team-linkedin {
  position: absolute;
  right: 16px;
  bottom: 3px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 7px;
  background: transparent;
  box-shadow: 0 0 18px rgba(42, 182, 255, 0.16);
  transition: transform 180ms ease, filter 180ms ease;
  overflow: hidden;
}

.clients-team-section .team-card .team-linkedin:hover {
  transform: translateY(-2px);
  filter: brightness(1.1);
}

.clients-team-section .team-card .team-linkedin img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: none;
  transform: none;
}

.clients-team-section .team-card a {
  grid-column: 2;
  grid-row: 1 / span 2;
  align-self: end;
  color: var(--gold-soft);
  font-size: 17px;
  font-weight: 950;
  line-height: 1;
}

@media (max-width: 1280px) {
  .clients-team-section .client-track {
    display: flex;
    gap: 0;
  }

  .clients-team-section .client-logo:nth-child(n + 6) {
    display: grid;
  }

  .clients-team-section .team-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .clients-team-section {
    padding-top: 62px;
  }

  .clients-team-section .clients-showcase,
  .clients-team-section .team-section {
    width: calc(100% - 28px);
  }

  .clients-team-section .clients-showcase h2,
  .clients-team-section .team-heading h2 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .clients-team-section .clients-showcase > p {
    white-space: normal;
  }

  .clients-team-section .client-showcase-bar {
    --client-frame-pad-x: 28px;
    --client-frame-pad-y: 24px;
    min-height: 104px;
  }

  .clients-team-section .client-track {
    display: flex;
    gap: 0;
    animation-duration: 72s;
  }

  .clients-team-section .client-logo:nth-child(n + 6) {
    display: grid;
  }

  .clients-team-section .client-logo:nth-child(n + 7) {
    display: grid;
  }

  .clients-team-section .client-logo {
    flex-basis: 210px;
    width: 210px;
    height: 58px;
  }

  .clients-team-section .client-logo:nth-child(2n + 1)::before {
    content: none;
  }

  .clients-team-section .team-heading {
    display: block;
  }

  .team-action {
    margin-top: 22px;
    min-width: 0;
    width: 100%;
  }

  .clients-team-section .team-grid {
    grid-template-columns: 1fr;
  }

  .clients-team-section .team-card {
    aspect-ratio: 0.73;
  }
}

.studio-stats {
  width: 100%;
  max-width: none;
  min-height: 120px;
  padding: 12px clamp(34px, 5vw, 92px);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(0, 122, 190, 0.18), transparent 38%) padding-box,
    linear-gradient(180deg, rgba(13, 24, 34, 0.82), rgba(2, 7, 13, 0.98) 54%, rgba(1, 5, 10, 0.98)) padding-box,
    linear-gradient(90deg, rgba(27, 42, 55, 0.62), rgba(39, 65, 82, 0.78), rgba(27, 42, 55, 0.62)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -1px 0 rgba(21, 131, 188, 0.34),
    0 0 0 1px rgba(2, 9, 15, 0.62),
    0 18px 52px rgba(0, 0, 0, 0.52);
}

.studio-stats .stat-item {
  min-height: 88px;
  gap: clamp(20px, 1.7vw, 34px);
}

.studio-stats .stat-item:not(:last-child)::after {
  top: 23%;
  bottom: 23%;
  background: linear-gradient(180deg, transparent, rgba(104, 119, 132, 0.5), transparent);
}

.studio-stats img {
  width: clamp(72px, 4.4vw, 88px);
  height: clamp(72px, 4.4vw, 88px);
  filter:
    brightness(1.05)
    drop-shadow(0 0 14px rgba(0, 139, 220, 0.32));
}

.studio-stats strong {
  font-size: clamp(34px, 2.45vw, 48px);
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.studio-stats .stat-copy span {
  color: rgba(247, 251, 255, 0.7);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.projects-section {
  padding-top: clamp(18px, 2vw, 36px);
}

.project-grid {
  gap: clamp(8px, 0.7vw, 14px);
}

.hero-services {
  gap: clamp(14px, 1.1vw, 22px);
}

.contact-section {
  padding-left: max(clamp(28px, 3vw, 64px), calc((100vw - var(--wide)) / 2));
  padding-right: max(clamp(28px, 3vw, 64px), calc((100vw - var(--wide)) / 2));
}

@media (max-width: 1280px) {
  :root {
    --content-wide: calc(100% - 36px);
  }

  .hero-stage {
    grid-template-columns: minmax(460px, 0.78fr) minmax(0, 1.22fr);
    min-height: 440px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    width: 1220px;
    transform: translateX(5%) translateY(-4%);
  }

  .studio-stats img {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 980px) {
  :root {
    --content-wide: calc(100% - 28px);
  }

  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    width: min(112%, 1000px);
    transform: none;
  }
}

/* Last hero placement override: stable robot art scale and tighter header spacing. */
@media (min-width: 981px) {
  .reference-hero {
  padding-top: 60px;
  }

  .hero-stage {
    grid-template-columns: minmax(650px, 0.72fr) minmax(0, 1.28fr);
    min-height: 515px;
    overflow: hidden;
  }

  .hero-copy {
    align-self: center;
    padding-top: 0;
    padding-bottom: clamp(18px, 2vw, 36px);
  }

  .hero-visual {
    min-height: 515px;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .hero-visual img {
    width: 1500px;
    max-width: none;
    flex: 0 0 auto;
    transform: translateX(4%) translateY(1%);
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .reference-hero {
    padding-top: 76px;
  }

  .hero-stage {
    grid-template-columns: minmax(440px, 0.78fr) minmax(0, 1.22fr);
    min-height: 440px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    width: 1220px;
    transform: translateX(5%) translateY(-4%);
  }

  .studio-stats img {
    width: 78px;
    height: 78px;
  }
}

/* Final hero placement pass: stable robot art scale and tighter header spacing. */
@media (min-width: 981px) {
  .reference-hero {
  padding-top: 60px;
  }

  .hero-stage {
    grid-template-columns: minmax(650px, 0.72fr) minmax(0, 1.28fr);
    min-height: 515px;
    overflow: hidden;
  }

  .hero-copy {
    align-self: center;
    padding-top: 0;
    padding-bottom: clamp(18px, 2vw, 36px);
  }

  .hero-visual {
    min-height: 515px;
    align-items: flex-end;
    justify-content: flex-end;
  }

  .hero-visual img {
    width: 1500px;
    max-width: none;
    flex: 0 0 auto;
    transform: translateX(4%) translateY(1%);
  }
}

@media (min-width: 981px) and (max-width: 1280px) {
  .reference-hero {
    padding-top: 76px;
  }

  .hero-stage {
    grid-template-columns: minmax(440px, 0.78fr) minmax(0, 1.22fr);
    min-height: 440px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    width: 1220px;
    transform: translateX(5%) translateY(1%);
  }
}

/* Wide layout pass: keep the page closer to the reference gutters. */
:root {
  --max: 1900px;
  --wide: 1900px;
  --content-wide: min(var(--wide), calc(100% - clamp(28px, 3vw, 64px)));
}

.site-header {
  padding-left: max(clamp(20px, 3vw, 56px), calc((100vw - var(--wide)) / 2));
  padding-right: max(clamp(20px, 3vw, 56px), calc((100vw - var(--wide)) / 2));
}

.reference-hero,
.section,
.projects-section,
.services-hero,
.service-list,
.team-heading,
.clients-showcase h2 {
  width: var(--content-wide);
}

.reference-hero {
  padding-top: 60px;
}

.hero-stage {
  grid-template-columns: minmax(650px, 0.72fr) minmax(0, 1.28fr);
  min-height: clamp(470px, 30vw, 590px);
}

.hero-copy h1 {
  font-size: clamp(62px, 4.2vw, 94px);
}

.hero-visual img {
  width: min(118%, 1280px);
  transform: translateX(2%) translateY(1%);
}

.studio-stats {
  width: 100%;
  max-width: none;
}

.projects-section {
  padding-top: clamp(18px, 2vw, 36px);
}

.project-grid {
  gap: clamp(8px, 0.7vw, 14px);
}

.hero-services {
  gap: clamp(14px, 1.1vw, 22px);
}

.contact-section {
  padding-left: max(clamp(28px, 3vw, 64px), calc((100vw - var(--wide)) / 2));
  padding-right: max(clamp(28px, 3vw, 64px), calc((100vw - var(--wide)) / 2));
}

@media (max-width: 1280px) {
  :root {
    --content-wide: calc(100% - 36px);
  }

  .hero-stage {
    grid-template-columns: minmax(460px, 0.78fr) minmax(0, 1.22fr);
    min-height: 440px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    width: 1220px;
    transform: translateX(5%) translateY(1%);
  }
}

@media (max-width: 980px) {
  :root {
    --content-wide: calc(100% - 28px);
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }
}
*** End of File

/* Final spacing and Rajdhani typography pass. */
#projects-title,
#contact-title,
.hero-actions .button,
.contact-actions .button {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 700;
}

#projects-title,
#contact-title {
  letter-spacing: 0.02em;
}

.projects-section {
  margin-top: -42px;
  padding-top: clamp(6px, 0.7vw, 12px);
}

.hero-actions .button.ghost:hover {
  border-color: rgba(246, 185, 47, 0.82);
  background: rgba(246, 185, 47, 0.06);
  color: var(--gold-soft);
  box-shadow: 0 0 22px rgba(246, 185, 47, 0.12);
}

/* Service-card override kept last so earlier review passes cannot hide the numbers. */
.hero-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 1.35vw, 28px);
  border: 0;
  background: none;
}

.hero-service-card {
  grid-template-columns: clamp(78px, 5vw, 100px) minmax(0, 1fr);
  grid-template-areas:
    "icon number"
    "icon title"
    ". copy";
  min-height: clamp(172px, 10.2vw, 206px);
  padding: clamp(22px, 1.55vw, 30px) clamp(28px, 2.2vw, 44px);
  border: 1px solid rgba(61, 91, 116, 0.78);
  border-radius: 5px;
  background:
    radial-gradient(ellipse at 50% 103%, rgba(0, 156, 237, 0.5), transparent 12%),
    radial-gradient(circle at 11% 0%, rgba(24, 76, 107, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(13, 21, 29, 0.9), rgba(4, 9, 14, 0.98) 62%, rgba(1, 4, 8, 0.98));
}

.service-number {
  display: block;
  grid-area: number;
}

@media (max-width: 980px) {
  .hero-services {
    grid-template-columns: 1fr;
  }
}

/* Comment 1: use Rajdhani and remove service numbering. */
.hero-service-card {
  grid-template-areas:
    "icon title"
    ". copy";
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
}

.service-number {
  display: none;
}

.hero-service-card h2 {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(31px, 2.35vw, 46px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.015em;
}

.hero-service-card ul {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1.18;
}

/* Comment 2: stats-bar styling for the three service cards. */
.services-after-proof {
  margin-top: clamp(12px, 1.1vw, 20px);
}

.hero-services {
  gap: clamp(14px, 1vw, 20px);
}

.hero-service-card {
  grid-template-columns: clamp(66px, 4vw, 82px) minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon copy";
  align-content: center;
  min-height: clamp(112px, 7.1vw, 138px);
  padding: clamp(14px, 1vw, 18px) clamp(24px, 1.8vw, 34px);
  column-gap: clamp(16px, 1.25vw, 24px);
  row-gap: 5px;
  border: 1px solid rgba(24, 100, 138, 0.92);
  border-radius: 7px;
  clip-path: none;
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 63, 104, 0.075), transparent 16%),
    linear-gradient(180deg, rgba(7, 17, 26, 0.98), rgba(2, 8, 14, 0.99) 58%, rgba(1, 5, 9, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(40, 160, 210, 0.24),
    0 0 0 1px rgba(0, 148, 214, 0.1),
    0 18px 54px rgba(0, 0, 0, 0.46);
}

.hero-service-card::before {
  display: none;
}

.hero-service-card::after {
  border-radius: inherit;
  box-shadow:
    inset 0 0 22px rgba(18, 63, 104, 0.028),
    inset 0 -1px 0 rgba(0, 160, 228, 0.18);
}

.hero-service-card img {
  width: clamp(58px, 3.65vw, 74px);
  height: clamp(58px, 3.65vw, 74px);
  align-self: center;
  margin-top: 0;
  filter:
    brightness(1.2)
    saturate(0.62)
    hue-rotate(148deg)
    drop-shadow(0 0 13px rgba(18, 63, 104, 0.18));
}

.hero-service-card h2 {
  align-self: end;
  max-width: 13ch;
  font-size: clamp(28px, 1.9vw, 38px);
  line-height: 0.88;
}

.hero-service-card ul {
  align-self: start;
  margin: 6px 0 0 17px;
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.15;
}

@media (max-width: 980px) {
  .hero-service-card {
    min-height: 116px;
  }
}

@media (max-width: 560px) {
  .hero-service-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 108px;
    padding: 14px 16px;
  }

  .hero-service-card img {
    width: 50px;
    height: 50px;
  }

  .hero-service-card h2 {
    font-size: clamp(24px, 7vw, 30px);
  }
}

/* Tighten the handoff from the team strip into testimonials. */
.clients-team-section {
  padding-bottom: clamp(18px, 1.65vw, 30px);
}

.testimonials-section {
  padding-top: clamp(20px, 2.2vw, 36px);
}

/* Scale testimonial cards down by roughly 30% as a full unit. */
.testimonial-grid {
  width: 91%;
  margin-inline: auto;
  gap: clamp(13px, 1.6vw, 24px);
}

.testimonial-card {
  min-height: clamp(329px, 21vw, 427px);
  padding: clamp(32px, 2.66vw, 49px) clamp(27px, 2.52vw, 45px) clamp(28px, 2.38vw, 43px);
}

.testimonial-card .testimonial-copy::before {
  margin-bottom: 15px;
  font-size: clamp(55px, 4.2vw, 78px);
  text-shadow: 0 0 11px rgba(246, 185, 47, 0.38);
}

.testimonial-copy p {
  font-size: clamp(11px, 0.84vw, 15px);
  line-height: 1.42;
}

.testimonial-divider {
  height: 18px;
  margin: clamp(17px, 1.75vw, 29px) 0 clamp(14px, 1.4vw, 24px);
}

.testimonial-divider span {
  width: 24px;
}

.testimonial-person {
  gap: clamp(11px, 1.05vw, 17px);
}

.testimonial-avatar {
  width: clamp(50px, 3.57vw, 64px);
  height: clamp(50px, 3.57vw, 64px);
}

.testimonial-avatar::before {
  inset: 5px;
}

.testimonial-avatar img {
  width: calc(100% - 10px);
  height: calc(100% - 10px);
}

.testimonial-person strong {
  font-size: clamp(13px, 0.98vw, 18px);
}

.testimonial-person span {
  margin-top: 6px;
  font-size: clamp(9px, 0.63vw, 11px);
}

.testimonial-person em {
  margin-top: 7px;
  font-size: clamp(9px, 0.63vw, 11px);
}

@media (max-width: 900px) {
  .testimonial-grid {
    width: 100%;
  }
}

/* Final contact cascade lock. Keep the redesigned console above legacy overrides. */
.contact-section {
  width: min(1880px, calc(100% - clamp(34px, 4vw, 72px)));
  margin: clamp(4px, 0.6vw, 12px) auto clamp(34px, 4vw, 62px);
  padding: clamp(64px, 5.1vw, 96px) clamp(58px, 5vw, 108px);
  grid-template-columns: minmax(430px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(64px, 6.2vw, 128px);
}

.contact-section h2 {
  margin: 0 0 clamp(18px, 1.7vw, 28px);
  font-size: clamp(70px, 6.2vw, 130px);
  line-height: 0.86;
  letter-spacing: 0;
}

.contact-location {
  grid-template-columns: clamp(92px, 5.5vw, 112px) 24px minmax(0, 1fr);
  gap: clamp(18px, 1.5vw, 28px);
  font-size: initial;
  white-space: normal;
}

.contact-location p {
  gap: 0;
  white-space: normal;
}

@media (max-width: 1500px) {
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-section {
    width: min(100% - 24px, 760px);
    padding: clamp(42px, 8vw, 62px) clamp(20px, 5vw, 36px);
    gap: 42px;
  }

  .contact-section h2 {
    font-size: clamp(58px, 16vw, 92px);
    white-space: normal;
  }

  .contact-location {
    grid-template-columns: 82px 21px minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .contact-section {
    width: calc(100% - 16px);
    padding: 34px 16px;
  }

  .contact-location {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }
}



/* Final handoff into contact: keep the compact testimonial-to-contact gap. */
.testimonials-section {
  padding-bottom: clamp(18px, 2vw, 34px);
}

/* Contact reference cleanup final lock. */
.contact-section {
  width: min(1740px, calc(100% - clamp(34px, 4vw, 72px)));
  min-height: clamp(760px, 61vw, 940px);
  padding: clamp(72px, 6vw, 116px) clamp(70px, 7vw, 150px);
  grid-template-columns: minmax(470px, 0.87fr) minmax(560px, 1.13fr);
  gap: clamp(72px, 7vw, 150px);
  border-color: rgba(42, 182, 255, 0.17);
}

.contact-section::after {
  opacity: 0.3;
  background:
    url("media/contact/contact-atmosphere.png") 75% 46% / min(880px, 52vw) auto no-repeat,
    radial-gradient(circle at 76% 47%, transparent 0 210px, rgba(42, 182, 255, 0.18) 211px 213px, transparent 214px),
    radial-gradient(circle at 76% 47%, transparent 0 282px, rgba(42, 182, 255, 0.11) 283px 285px, transparent 286px);
}

.contact-shell {
  display: none;
}

.contact-location {
  grid-template-columns: clamp(96px, 5.8vw, 112px) clamp(38px, 2.5vw, 48px) minmax(0, 1fr);
  gap: clamp(18px, 1.45vw, 26px);
}

.contact-location-pin {
  display: block;
  width: clamp(38px, 2.5vw, 48px);
  height: clamp(38px, 2.5vw, 48px);
  justify-self: center;
}

.contact-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.contact-link {
  grid-template-columns: clamp(58px, 3.5vw, 70px) minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  min-height: 0;
  gap: clamp(10px, 0.8vw, 14px);
  padding: 0 clamp(18px, 1.5vw, 28px);
  border: 0;
  border-right: 1px solid rgba(247, 251, 255, 0.16);
  border-radius: 0;
  background: transparent;
  text-align: left;
  box-shadow: none;
}

.contact-link:first-child {
  padding-left: 0;
}

.contact-link:last-child {
  border-right: 0;
}

.contact-link-icon {
  width: clamp(58px, 3.5vw, 70px);
}

.contact-form {
  max-width: 700px;
  margin-top: clamp(10px, 2.2vw, 34px);
  padding: 0;
  gap: clamp(27px, 2.1vw, 38px);
  border: 0;
  border-radius: 0;
  clip-path: none;
  background: transparent;
  box-shadow: none;
}

.contact-form::before {
  content: none;
}

.contact-form-head {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: clamp(4px, 0.7vw, 10px);
}

.contact-form-mark {
  display: none;
}

.contact-form-head h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(17px, 1vw, 20px);
  letter-spacing: 0.26em;
}

.contact-form-head h3::before {
  content: "";
  width: 38px;
  height: 9px;
  border-top: 2px solid var(--contact-gold);
  border-right: 2px solid var(--contact-gold);
  transform: skewX(34deg);
}

.contact-form-head p {
  display: none;
}

.contact-submit {
  width: min(360px, 100%);
}

.contact-secure {
  justify-content: flex-start;
}

.contact-secure img {
  width: 38px;
  height: 38px;
}

@media (max-width: 1500px) {
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-section {
    width: min(100% - 24px, 760px);
    min-height: 0;
    padding: clamp(42px, 8vw, 62px) clamp(20px, 5vw, 36px);
    gap: 42px;
  }

  .contact-location {
    grid-template-columns: 82px 34px minmax(0, 1fr);
  }

  .contact-location-pin {
    width: 34px;
    height: 34px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-link,
  .contact-link:first-child {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0;
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .contact-location {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .contact-location-pin {
    display: none;
  }
}

/* Contact reference cleanup final lock. */
.contact-section {
  width: min(1740px, calc(100% - clamp(34px, 4vw, 72px)));
  min-height: clamp(760px, 61vw, 940px);
  padding: clamp(72px, 6vw, 116px) clamp(70px, 7vw, 150px);
  grid-template-columns: minmax(470px, 0.87fr) minmax(560px, 1.13fr);
  gap: clamp(72px, 7vw, 150px);
  border-color: rgba(42, 182, 255, 0.17);
}

.contact-section::after {
  opacity: 0.3;
  background:
    url("media/contact/contact-atmosphere.png") 75% 46% / min(880px, 52vw) auto no-repeat,
    radial-gradient(circle at 76% 47%, transparent 0 210px, rgba(42, 182, 255, 0.18) 211px 213px, transparent 214px),
    radial-gradient(circle at 76% 47%, transparent 0 282px, rgba(42, 182, 255, 0.11) 283px 285px, transparent 286px);
}

.contact-shell {
  display: none;
}

.contact-location {
  grid-template-columns: clamp(96px, 5.8vw, 112px) clamp(38px, 2.5vw, 48px) minmax(0, 1fr);
  gap: clamp(18px, 1.45vw, 26px);
}

.contact-location-pin {
  display: block;
  width: clamp(38px, 2.5vw, 48px);
  height: clamp(38px, 2.5vw, 48px);
  justify-self: center;
}

.contact-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.contact-link {
  grid-template-columns: clamp(58px, 3.5vw, 70px) minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  min-height: 0;
  gap: clamp(10px, 0.8vw, 14px);
  padding: 0 clamp(18px, 1.5vw, 28px);
  border: 0;
  border-right: 1px solid rgba(247, 251, 255, 0.16);
  border-radius: 0;
  background: transparent;
  text-align: left;
  box-shadow: none;
}

.contact-link:first-child {
  padding-left: 0;
}

.contact-link:last-child {
  border-right: 0;
}

.contact-link-icon {
  width: clamp(58px, 3.5vw, 70px);
}

.contact-form {
  max-width: 700px;
  margin-top: clamp(10px, 2.2vw, 34px);
  padding: 0;
  gap: clamp(27px, 2.1vw, 38px);
  border: 0;
  border-radius: 0;
  clip-path: none;
  background: transparent;
  box-shadow: none;
}

.contact-form::before {
  content: none;
}

.contact-form-head {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: clamp(4px, 0.7vw, 10px);
}

.contact-form-mark {
  display: none;
}

.contact-form-head h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(17px, 1vw, 20px);
  letter-spacing: 0.26em;
}

.contact-form-head h3::before {
  content: "";
  width: 38px;
  height: 9px;
  border-top: 2px solid var(--contact-gold);
  border-right: 2px solid var(--contact-gold);
  transform: skewX(34deg);
}

.contact-form-head p {
  display: none;
}

.contact-submit {
  width: min(360px, 100%);
}

.contact-secure {
  justify-content: flex-start;
}

.contact-secure img {
  width: 38px;
  height: 38px;
}

@media (max-width: 1500px) {
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-section {
    width: min(100% - 24px, 760px);
    min-height: 0;
    padding: clamp(42px, 8vw, 62px) clamp(20px, 5vw, 36px);
    gap: 42px;
  }

  .contact-location {
    grid-template-columns: 82px 34px minmax(0, 1fr);
  }

  .contact-location-pin {
    width: 34px;
    height: 34px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-link,
  .contact-link:first-child {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0;
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .contact-location {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .contact-location-pin {
    display: none;
  }
}

/* Contact reference cleanup final lock. */
.contact-section {
  width: min(1740px, calc(100% - clamp(34px, 4vw, 72px)));
  min-height: clamp(760px, 61vw, 940px);
  padding: clamp(72px, 6vw, 116px) clamp(70px, 7vw, 150px);
  grid-template-columns: minmax(470px, 0.87fr) minmax(560px, 1.13fr);
  gap: clamp(72px, 7vw, 150px);
  border-color: rgba(42, 182, 255, 0.17);
}

.contact-section::after {
  opacity: 0.3;
  background:
    url("media/contact/contact-atmosphere.png") 75% 46% / min(880px, 52vw) auto no-repeat,
    radial-gradient(circle at 76% 47%, transparent 0 210px, rgba(42, 182, 255, 0.18) 211px 213px, transparent 214px),
    radial-gradient(circle at 76% 47%, transparent 0 282px, rgba(42, 182, 255, 0.11) 283px 285px, transparent 286px);
}

.contact-shell {
  display: none;
}

.contact-location {
  grid-template-columns: clamp(96px, 5.8vw, 112px) clamp(38px, 2.5vw, 48px) minmax(0, 1fr);
  gap: clamp(18px, 1.45vw, 26px);
}

.contact-location-pin {
  display: block;
  width: clamp(38px, 2.5vw, 48px);
  height: clamp(38px, 2.5vw, 48px);
  justify-self: center;
}

.contact-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
}

.contact-link {
  grid-template-columns: clamp(58px, 3.5vw, 70px) minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  min-height: 0;
  gap: clamp(10px, 0.8vw, 14px);
  padding: 0 clamp(18px, 1.5vw, 28px);
  border: 0;
  border-right: 1px solid rgba(247, 251, 255, 0.16);
  border-radius: 0;
  background: transparent;
  text-align: left;
  box-shadow: none;
}

.contact-link:first-child {
  padding-left: 0;
}

.contact-link:last-child {
  border-right: 0;
}

.contact-link-icon {
  width: clamp(58px, 3.5vw, 70px);
}

.contact-form {
  max-width: 700px;
  margin-top: clamp(10px, 2.2vw, 34px);
  padding: 0;
  gap: clamp(27px, 2.1vw, 38px);
  border: 0;
  border-radius: 0;
  clip-path: none;
  background: transparent;
  box-shadow: none;
}

.contact-form::before {
  content: none;
}

.contact-form-head {
  grid-template-columns: minmax(0, 1fr);
  margin-bottom: clamp(4px, 0.7vw, 10px);
}

.contact-form-mark {
  display: none;
}

.contact-form-head h3 {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: clamp(17px, 1vw, 20px);
  letter-spacing: 0.26em;
}

.contact-form-head h3::before {
  content: "";
  width: 38px;
  height: 9px;
  border-top: 2px solid var(--contact-gold);
  border-right: 2px solid var(--contact-gold);
  transform: skewX(34deg);
}

.contact-form-head p {
  display: none;
}

.contact-submit {
  width: min(360px, 100%);
}

.contact-secure {
  justify-content: flex-start;
}

.contact-secure img {
  width: 38px;
  height: 38px;
}

@media (max-width: 1500px) {
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-section {
    width: min(100% - 24px, 760px);
    min-height: 0;
    padding: clamp(42px, 8vw, 62px) clamp(20px, 5vw, 36px);
    gap: 42px;
  }

  .contact-location {
    grid-template-columns: 82px 34px minmax(0, 1fr);
  }

  .contact-location-pin {
    width: 34px;
    height: 34px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-link,
  .contact-link:first-child {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0;
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .contact-location {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .contact-location-pin {
    display: none;
  }
}

/* Contact reference cleanup: larger raster details, fewer frames, cleaner connect strip. */
.contact-section {
  width: min(1740px, calc(100% - clamp(34px, 4vw, 72px)));
  min-height: clamp(760px, 61vw, 940px);
  padding: clamp(72px, 6vw, 116px) clamp(70px, 7vw, 150px);
  grid-template-columns: minmax(470px, 0.87fr) minmax(560px, 1.13fr);
  gap: clamp(72px, 7vw, 150px);
  border-color: rgba(42, 182, 255, 0.17);
  background:
    radial-gradient(circle at 81% 42%, rgba(18, 63, 104, 0.46), transparent 24%),
    radial-gradient(circle at 67% 50%, rgba(42, 182, 255, 0.11), transparent 34%),
    linear-gradient(90deg, rgba(3, 11, 18, 0.98), rgba(1, 5, 10, 0.96) 58%, rgba(1, 5, 10, 1)),
    #01050a;
  box-shadow:
    inset 0 0 0 1px rgba(42, 182, 255, 0.08),
    inset 0 0 86px rgba(18, 63, 104, 0.16),
    0 34px 110px rgba(0, 0, 0, 0.46);
}

.contact-section::before {
  border-color: rgba(18, 63, 104, 0.16);
  background:
    radial-gradient(circle at 0 54%, rgba(42, 182, 255, 0.1), transparent 22%),
    radial-gradient(circle at 86% 45%, rgba(42, 182, 255, 0.14), transparent 34%);
}

.contact-section::after {
  opacity: 0.3;
  background:
    url("media/contact/contact-atmosphere.png") 75% 46% / min(880px, 52vw) auto no-repeat,
    radial-gradient(circle at 76% 47%, transparent 0 210px, rgba(42, 182, 255, 0.18) 211px 213px, transparent 214px),
    radial-gradient(circle at 76% 47%, transparent 0 282px, rgba(42, 182, 255, 0.11) 283px 285px, transparent 286px);
  mask-image: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.72) 34%, rgba(0, 0, 0, 0.8) 100%);
}

.contact-shell {
  display: none;
}

.contact-section h2 {
  font-size: clamp(72px, 5.4vw, 112px);
}

.contact-lede,
.contact-section .contact-lede {
  max-width: 620px;
  font-size: clamp(19px, 1.18vw, 23px);
  line-height: 1.35;
}

.contact-rule {
  margin: clamp(44px, 4vw, 58px) 0 clamp(30px, 2.6vw, 42px);
  background: linear-gradient(90deg, rgba(247, 251, 255, 0.52), rgba(247, 251, 255, 0.28), transparent);
}

.contact-location {
  grid-template-columns: clamp(96px, 5.8vw, 112px) clamp(38px, 2.5vw, 48px) minmax(0, 1fr);
  gap: clamp(18px, 1.45vw, 26px);
  padding: clamp(22px, 1.9vw, 30px) 0;
  border-bottom-color: rgba(247, 251, 255, 0.12);
}

.flag-hex {
  width: clamp(96px, 5.8vw, 112px);
}

.contact-location-pin {
  width: clamp(38px, 2.5vw, 48px);
  height: clamp(38px, 2.5vw, 48px);
  justify-self: center;
  filter: drop-shadow(0 0 9px rgba(243, 165, 31, 0.42));
}

.contact-connect {
  margin-top: clamp(26px, 2vw, 36px);
}

.contact-actions {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  align-items: center;
  margin-top: clamp(18px, 1.4vw, 24px);
}

.contact-link {
  grid-template-columns: clamp(58px, 3.5vw, 70px) minmax(0, 1fr);
  justify-items: start;
  align-items: center;
  min-height: 0;
  gap: clamp(10px, 0.8vw, 14px);
  padding: 0 clamp(18px, 1.5vw, 28px);
  border: 0;
  border-right: 1px solid rgba(247, 251, 255, 0.16);
  border-radius: 0;
  background: transparent;
  text-align: left;
  box-shadow: none;
}

.contact-link:first-child {
  padding-left: 0;
}

.contact-link:last-child {
  border-right: 0;
}

.contact-link:hover {
  border-color: rgba(247, 251, 255, 0.16);
  box-shadow: none;
}

.contact-link-icon {
  width: clamp(58px, 3.5vw, 70px);
}

.contact-link strong {
  font-size: clamp(12px, 0.74vw, 14px);
  letter-spacing: 0.1em;
}

.contact-link em {
  margin-top: 4px;
  font-size: clamp(12px, 0.78vw, 15px);
  line-height: 1.18;
}

.contact-form {
  align-self: start;
  max-width: 700px;
  margin-top: clamp(10px, 2.2vw, 34px);
  padding: 0;
  gap: clamp(27px, 2.1vw, 38px);
  border: 0;
  border-radius: 0;
  clip-path: none;
  background: transparent;
  box-shadow: none;
}

.contact-form::before {
  content: none;
}

.contact-form-head {
  grid-template-columns: minmax(0, 1fr);
  gap: 0;
  margin-bottom: clamp(4px, 0.7vw, 10px);
}

.contact-form-mark {
  display: none;
}

.contact-form-head h3 {
  position: relative;
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--text);
  font-size: clamp(17px, 1vw, 20px);
  letter-spacing: 0.26em;
  line-height: 1;
}

.contact-form-head h3::before {
  content: "";
  width: 38px;
  height: 9px;
  border-top: 2px solid var(--contact-gold);
  border-right: 2px solid var(--contact-gold);
  transform: skewX(34deg);
}

.contact-form-head p {
  display: none;
}

.contact-form input {
  min-height: clamp(58px, 3.4vw, 66px);
}

.contact-form textarea {
  min-height: clamp(188px, 13vw, 236px);
}

.contact-field > img {
  width: 42px;
  height: 42px;
  opacity: 0.82;
}

.contact-submit {
  width: min(360px, 100%);
  min-height: clamp(58px, 3.4vw, 66px);
  margin-top: 2px;
  padding: 0 28px;
}

.contact-secure {
  justify-content: flex-start;
  margin-top: -4px;
  gap: 12px;
}

.contact-secure img {
  width: 38px;
  height: 38px;
}

@media (max-width: 1500px) {
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    max-width: 860px;
  }
}

@media (max-width: 900px) {
  .contact-section {
    width: min(100% - 24px, 760px);
    min-height: 0;
    padding: clamp(42px, 8vw, 62px) clamp(20px, 5vw, 36px);
    gap: 42px;
  }

  .contact-location {
    grid-template-columns: 82px 34px minmax(0, 1fr);
  }

  .contact-location-pin {
    width: 34px;
    height: 34px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .contact-link,
  .contact-link:first-child {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0;
    border-right: 0;
  }
}

@media (max-width: 560px) {
  .contact-location {
    grid-template-columns: 74px minmax(0, 1fr);
  }

  .contact-location-pin {
    display: none;
  }
}

/* Contact console redesign. */
.contact-section {
  --contact-blue: #1a5f96;
  --contact-blue-bright: #2ab6ff;
  --contact-gold: #f6b92f;
  position: relative;
  isolation: isolate;
  width: min(1880px, calc(100% - clamp(34px, 4vw, 72px)));
  margin: clamp(4px, 0.6vw, 12px) auto clamp(34px, 4vw, 62px);
  padding: clamp(64px, 5.1vw, 96px) clamp(58px, 5vw, 108px);
  display: grid;
  grid-template-columns: minmax(430px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(64px, 6.2vw, 128px);
  align-items: start;
  overflow: hidden;
  border: 1px solid rgba(42, 182, 255, 0.3);
  border-radius: 8px;
  clip-path: polygon(20px 0, calc(100% - 34px) 0, 100% 34px, 100% calc(100% - 34px), calc(100% - 38px) 100%, 34px 100%, 0 calc(100% - 34px), 0 34px);
  background:
    radial-gradient(circle at 72% 7%, rgba(42, 182, 255, 0.3), transparent 5%),
    radial-gradient(circle at 72% 97%, rgba(42, 182, 255, 0.24), transparent 6%),
    linear-gradient(90deg, rgba(5, 17, 28, 0.98), rgba(1, 5, 10, 0.98) 58%, rgba(1, 5, 10, 1)),
    #01050a;
  box-shadow:
    inset 0 0 0 14px rgba(0, 0, 0, 0.22),
    inset 0 0 82px rgba(18, 63, 104, 0.18),
    0 34px 110px rgba(0, 0, 0, 0.46);
}

.contact-section::before,
.contact-section::after,
.contact-shell {
  content: "";
  position: absolute;
  pointer-events: none;
}

.contact-section::before {
  inset: 16px;
  z-index: -2;
  border: 1px solid rgba(18, 63, 104, 0.38);
  clip-path: inherit;
  background:
    linear-gradient(90deg, transparent 0 46%, rgba(42, 182, 255, 0.48) 50%, transparent 54%) 0 66px / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0 46%, rgba(42, 182, 255, 0.42) 50%, transparent 54%) 0 calc(100% - 22px) / 100% 1px no-repeat,
    radial-gradient(circle at 0 54%, rgba(42, 182, 255, 0.16), transparent 22%),
    radial-gradient(circle at 100% 48%, rgba(18, 63, 104, 0.26), transparent 28%);
}

.contact-section::after {
  inset: 0;
  z-index: -1;
  opacity: 0.42;
  background:
    url("media/contact/contact-atmosphere.png") 43% 52% / min(980px, 62vw) auto no-repeat,
    linear-gradient(135deg, transparent 0 18px, rgba(18, 63, 104, 0.45) 19px, transparent 20px) 3% 5% / 140px 140px,
    linear-gradient(45deg, transparent 0 22px, rgba(18, 63, 104, 0.28) 23px, transparent 24px) 95% 74% / 170px 170px,
    repeating-linear-gradient(90deg, rgba(42, 182, 255, 0.04) 0 1px, transparent 1px 76px);
  mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0.7), transparent 44%, transparent 58%, rgba(0, 0, 0, 0.55));
}

.contact-shell {
  inset: 28px;
  z-index: 0;
  border: 1px solid rgba(42, 182, 255, 0.12);
  clip-path: inherit;
}

.contact-copy,
.contact-form {
  position: relative;
  z-index: 1;
}

.contact-kicker,
.contact-subtitle {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 12px;
  color: var(--contact-blue-bright);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 950;
  letter-spacing: 0.28em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-kicker span {
  width: 38px;
  height: 9px;
  border-top: 2px solid var(--contact-gold);
  border-right: 2px solid var(--contact-gold);
  transform: skewX(34deg);
}

.contact-section h2 {
  max-width: none;
  margin: 0 0 clamp(18px, 1.7vw, 28px);
  color: var(--text);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(70px, 6.2vw, 130px);
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: nowrap;
  text-shadow:
    0 2px 0 rgba(255, 255, 255, 0.34),
    0 10px 38px rgba(42, 182, 255, 0.08);
}

.contact-lede {
  max-width: 610px;
  margin: 0;
  color: rgba(247, 251, 255, 0.82);
  font-size: clamp(19px, 1.22vw, 24px);
  font-weight: 650;
  line-height: 1.28;
}

.contact-lede-followup {
  display: block;
  margin-top: 18px;
}

.contact-rule {
  position: relative;
  width: min(640px, 100%);
  height: 1px;
  margin: clamp(44px, 4vw, 66px) 0 clamp(34px, 3vw, 48px);
  background: linear-gradient(90deg, rgba(247, 251, 255, 0.64), rgba(247, 251, 255, 0.42), transparent);
}

.contact-rule::after {
  content: none;
  position: absolute;
  right: 0;
  top: -2px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--contact-blue-bright);
  box-shadow: 0 0 14px var(--contact-blue-bright);
}

.contact-locations {
  display: grid;
}

.contact-location {
  display: grid;
  grid-template-columns: clamp(92px, 5.5vw, 112px) 24px minmax(0, 1fr);
  gap: clamp(18px, 1.5vw, 28px);
  align-items: center;
  min-width: 0;
  margin: 0;
  padding: clamp(22px, 2vw, 32px) 0;
  border-bottom: 1px solid rgba(247, 251, 255, 0.16);
  color: var(--text);
  font-size: initial;
  font-weight: initial;
  white-space: normal;
}

.contact-location:first-of-type {
  padding-top: 10px;
}

.contact-location h3 {
  margin: 0 0 4px;
  color: var(--text);
  font-size: clamp(21px, 1.3vw, 27px);
  font-weight: 950;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.contact-location p {
  margin: 0;
  color: rgba(247, 251, 255, 0.82);
  font-size: clamp(17px, 1.06vw, 21px);
  font-weight: 650;
  line-height: 1.32;
  white-space: normal;
}

.flag-hex {
  position: relative;
  display: grid;
  place-items: center;
  width: clamp(92px, 5.5vw, 112px);
  aspect-ratio: 1.12;
  clip-path: polygon(50% 0, 96% 24%, 96% 76%, 50% 100%, 4% 76%, 4% 24%);
  background:
    linear-gradient(135deg, rgba(42, 182, 255, 0.95), rgba(18, 63, 104, 0.7) 54%, rgba(42, 182, 255, 0.92)),
    #06121d;
  box-shadow:
    0 0 22px rgba(42, 182, 255, 0.35),
    inset 0 0 16px rgba(42, 182, 255, 0.28);
}

.flag-hex::before {
  content: "";
  position: absolute;
  inset: 2px;
  clip-path: inherit;
  background: rgba(3, 9, 15, 0.96);
}

.flag-hex img {
  position: relative;
  z-index: 1;
  width: 64%;
  aspect-ratio: 1.55;
  object-fit: cover;
  border: 1px solid rgba(247, 251, 255, 0.52);
  box-shadow: 0 0 18px rgba(42, 182, 255, 0.28);
}

.contact-location-pin {
  width: 25px;
  height: 25px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px rgba(243, 165, 31, 0.42));
}

.contact-connect {
  margin-top: clamp(24px, 2vw, 36px);
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.1vw, 20px);
  margin-top: clamp(18px, 1.5vw, 26px);
  flex-wrap: nowrap;
}

.contact-link {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  gap: 10px;
  min-width: 0;
  min-height: clamp(124px, 7.8vw, 152px);
  padding: clamp(16px, 1.1vw, 22px) clamp(14px, 1.1vw, 20px);
  border: 1px solid rgba(42, 182, 255, 0.36);
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 12%, rgba(42, 182, 255, 0.12), transparent 34%),
    linear-gradient(180deg, rgba(4, 16, 27, 0.82), rgba(1, 6, 11, 0.92));
  color: var(--text);
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(247, 251, 255, 0.025),
    inset 0 -1px 0 rgba(42, 182, 255, 0.14),
    0 16px 42px rgba(0, 0, 0, 0.2);
  transition: color 160ms ease, transform 160ms ease;
}

.contact-link:first-child {
  padding-left: clamp(14px, 1.1vw, 20px);
}

.contact-link:last-child {
  border-right: 1px solid rgba(42, 182, 255, 0.36);
}

.contact-link:hover {
  color: var(--contact-gold);
  transform: translateY(-1px);
  border-color: rgba(243, 165, 31, 0.7);
  box-shadow:
    inset 0 0 0 1px rgba(243, 165, 31, 0.08),
    0 0 24px rgba(243, 165, 31, 0.1);
}

.contact-link-icon {
  display: block;
  width: clamp(50px, 3.25vw, 66px);
  aspect-ratio: 1;
}

.contact-link-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.contact-link strong,
.contact-link em {
  display: block;
  min-width: 0;
  overflow-wrap: anywhere;
  font-style: normal;
  line-height: 1.15;
}

.contact-link strong {
  color: var(--contact-blue-bright);
  font-size: clamp(11px, 0.68vw, 13px);
  font-weight: 950;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-link em {
  margin-top: 5px;
  color: var(--text);
  font-size: clamp(12px, 0.72vw, 14px);
  font-weight: 750;
}

.contact-form {
  display: grid;
  gap: clamp(24px, 2.1vw, 38px);
  width: 100%;
  margin-top: clamp(4px, 0.5vw, 10px);
  padding: clamp(52px, 4.6vw, 82px) clamp(48px, 4.3vw, 78px) clamp(42px, 3.3vw, 64px);
  border: 1px solid rgba(42, 182, 255, 0.48);
  border-radius: 7px;
  clip-path: polygon(20px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 20px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
  background:
    linear-gradient(90deg, transparent 0 47%, rgba(42, 182, 255, 0.7) 50%, transparent 53%) 0 0 / 100% 1px no-repeat,
    linear-gradient(90deg, transparent 0 47%, rgba(42, 182, 255, 0.62) 50%, transparent 53%) 0 100% / 100% 1px no-repeat,
    radial-gradient(circle at 50% 0, rgba(42, 182, 255, 0.18), transparent 14%),
    radial-gradient(circle at 50% 100%, rgba(42, 182, 255, 0.16), transparent 15%),
    linear-gradient(155deg, rgba(9, 20, 31, 0.9), rgba(2, 7, 13, 0.98)),
    rgba(1, 5, 10, 0.92);
  box-shadow:
    inset 0 0 0 16px rgba(255, 255, 255, 0.012),
    inset 0 0 70px rgba(18, 63, 104, 0.2),
    0 28px 96px rgba(0, 0, 0, 0.46);
}

.contact-form::before {
  content: "";
  position: absolute;
  inset: 14px;
  z-index: -1;
  border: 1px solid rgba(247, 251, 255, 0.07);
  clip-path: inherit;
  background:
    linear-gradient(135deg, transparent 0 17px, rgba(247, 251, 255, 0.08) 18px, transparent 19px) left top / 84px 84px no-repeat,
    linear-gradient(-135deg, transparent 0 17px, rgba(247, 251, 255, 0.08) 18px, transparent 19px) right top / 84px 84px no-repeat,
    linear-gradient(45deg, transparent 0 17px, rgba(247, 251, 255, 0.08) 18px, transparent 19px) left bottom / 84px 84px no-repeat,
    linear-gradient(-45deg, transparent 0 17px, rgba(247, 251, 255, 0.08) 18px, transparent 19px) right bottom / 84px 84px no-repeat;
}

.contact-form-head {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(12px, 1.2vw, 22px);
}

.contact-form-mark {
  width: 70px;
  height: 70px;
  object-fit: contain;
  filter: drop-shadow(0 0 10px rgba(42, 182, 255, 0.28));
}

.contact-form-head h3 {
  margin: 0 0 3px;
  color: var(--text);
  font-size: clamp(24px, 1.52vw, 32px);
  font-weight: 950;
  line-height: 1;
  text-transform: uppercase;
}

.contact-form-head p {
  margin: 0;
  color: rgba(247, 251, 255, 0.8);
  font-size: clamp(17px, 1.02vw, 21px);
  font-weight: 600;
  line-height: 1.3;
}

.contact-form label {
  display: grid;
  gap: 11px;
  color: var(--text);
  font-size: clamp(13px, 0.78vw, 16px);
  font-weight: 950;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.contact-field {
  position: relative;
  display: block;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(80, 130, 165, 0.68);
  border-radius: 5px;
  background: rgba(2, 7, 12, 0.78);
  color: var(--text);
  font: inherit;
  font-size: clamp(16px, 0.95vw, 19px);
  font-weight: 650;
  line-height: 1.35;
  outline: 0;
  box-shadow:
    inset 0 0 0 1px rgba(247, 251, 255, 0.018),
    inset 0 0 22px rgba(0, 0, 0, 0.24);
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-form input {
  min-height: clamp(64px, 3.9vw, 76px);
  padding: 0 58px 0 28px;
}

.contact-form textarea {
  min-height: clamp(184px, 12vw, 230px);
  padding: 25px 58px 25px 28px;
  resize: vertical;
}

.contact-field > img {
  position: absolute;
  right: 20px;
  top: 50%;
  width: 30px;
  height: 30px;
  object-fit: contain;
  transform: translateY(-50%);
  opacity: 0.92;
}

.contact-message-field > img {
  top: auto;
  bottom: 18px;
  transform: none;
  opacity: 0.7;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: rgba(247, 251, 255, 0.45);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: rgba(42, 182, 255, 0.86);
  background: rgba(2, 9, 16, 0.9);
  box-shadow:
    0 0 0 1px rgba(42, 182, 255, 0.16),
    0 0 24px rgba(42, 182, 255, 0.1);
}

.contact-submit {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  min-height: clamp(64px, 4vw, 78px);
  width: 100%;
  margin-top: 10px;
  padding: 0 clamp(28px, 2vw, 42px);
  border: 1px solid rgba(243, 165, 31, 0.92);
  border-radius: 5px;
  background: rgba(3, 9, 15, 0.7);
  color: var(--contact-gold);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(18px, 1.08vw, 22px);
  font-weight: 700;
  letter-spacing: 0.03em;
  line-height: 1;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow:
    inset 0 0 0 1px rgba(243, 165, 31, 0.04),
    0 0 18px rgba(243, 165, 31, 0.05);
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease;
}

.contact-submit span {
  font-size: 30px;
  letter-spacing: -0.16em;
  transform: translateY(-1px);
}

.contact-submit:hover {
  transform: translateY(-1px);
  background: rgba(243, 165, 31, 0.11);
  box-shadow:
    inset 0 0 0 1px rgba(243, 165, 31, 0.08),
    0 0 28px rgba(243, 165, 31, 0.12);
}

.contact-secure {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  margin: -1px 0 0;
  color: rgba(247, 251, 255, 0.5);
  font-size: clamp(15px, 0.92vw, 18px);
  font-weight: 600;
  line-height: 1.25;
}

.contact-secure img {
  width: 32px;
  height: 32px;
  flex: 0 0 auto;
  object-fit: contain;
}

@media (max-width: 1500px) {
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-form {
    max-width: 980px;
  }
}

@media (max-width: 900px) {
  .contact-section {
    width: min(100% - 24px, 760px);
    padding: clamp(42px, 8vw, 62px) clamp(20px, 5vw, 36px);
    gap: 42px;
    clip-path: polygon(14px 0, calc(100% - 20px) 0, 100% 20px, 100% calc(100% - 20px), calc(100% - 22px) 100%, 20px 100%, 0 calc(100% - 20px), 0 20px);
  }

  .contact-section h2 {
    font-size: clamp(58px, 16vw, 92px);
    white-space: normal;
  }

  .contact-lede {
    font-size: clamp(18px, 4.8vw, 22px);
  }

  .contact-location {
    grid-template-columns: 82px 21px minmax(0, 1fr);
    gap: 16px;
  }

  .flag-hex {
    width: 82px;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 15px;
  }

  .contact-link,
  .contact-link:first-child {
    padding: 0;
    border-right: 0;
  }

  .contact-form {
    max-width: none;
    padding: clamp(34px, 7vw, 48px) clamp(18px, 5vw, 32px);
  }

  .contact-form-head {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 18px;
  }

  .contact-form-mark {
    width: 58px;
    height: 58px;
  }
}

@media (max-width: 560px) {
  .contact-section {
    width: calc(100% - 16px);
    padding: 34px 16px;
  }

  .contact-kicker,
  .contact-subtitle {
    letter-spacing: 0.2em;
  }

  .contact-location {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }

  .contact-location-pin {
    display: none;
  }

  .flag-hex {
    width: 74px;
  }

  .contact-form input {
    padding-left: 18px;
  }

  .contact-form textarea {
    padding-left: 18px;
  }
}

/* Final clean service-card frame: remove clipped-border distortion. */
.hero-service-card {
  border: 1px solid rgba(22, 93, 128, 0.9);
  border-radius: 7px;
  clip-path: none;
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 63, 104, 0.075), transparent 16%),
    linear-gradient(180deg, rgba(7, 17, 26, 0.98), rgba(2, 8, 14, 0.99) 58%, rgba(1, 5, 9, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(40, 160, 210, 0.24),
    0 0 0 1px rgba(0, 148, 214, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.46);
}

.hero-service-card::before {
  inset: -1px;
  opacity: 1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(53, 144, 183, 0.86), rgba(12, 65, 91, 0.72) 54%, rgba(0, 130, 190, 0.82));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-service-card::after {
  border-radius: inherit;
  box-shadow:
    inset 0 0 22px rgba(18, 63, 104, 0.028),
    inset 0 -1px 0 rgba(0, 160, 228, 0.18);
}

/* Clean service-card frame: remove clipped-border distortion. */
.hero-service-card {
  border: 1px solid rgba(22, 93, 128, 0.9);
  border-radius: 7px;
  clip-path: none;
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 63, 104, 0.075), transparent 16%),
    linear-gradient(180deg, rgba(7, 17, 26, 0.98), rgba(2, 8, 14, 0.99) 58%, rgba(1, 5, 9, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(40, 160, 210, 0.24),
    0 0 0 1px rgba(0, 148, 214, 0.08),
    0 18px 54px rgba(0, 0, 0, 0.46);
}

.hero-service-card::before {
  inset: -1px;
  opacity: 1;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(180deg, rgba(53, 144, 183, 0.86), rgba(12, 65, 91, 0.72) 54%, rgba(0, 130, 190, 0.82));
  -webkit-mask:
    linear-gradient(#000 0 0) content-box,
    linear-gradient(#000 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
}

.hero-service-card::after {
  border-radius: inherit;
  box-shadow:
    inset 0 0 22px rgba(18, 63, 104, 0.028),
    inset 0 -1px 0 rgba(0, 160, 228, 0.18);
}
*** End of File

/* Final service-card reference lockup. */
.services-after-proof {
  margin-top: clamp(18px, 1.8vw, 30px);
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 1.35vw, 28px);
  width: 100%;
  border: 0;
  background: none;
}

.hero-service-card {
  --card-blue: rgba(9, 127, 184, 0.34);
  position: relative;
  display: grid;
  grid-template-columns: clamp(78px, 5vw, 100px) minmax(0, 1fr);
  grid-template-areas:
    "icon number"
    "icon title"
    ". copy";
  align-content: start;
  column-gap: clamp(18px, 1.35vw, 28px);
  row-gap: 0;
  min-height: clamp(172px, 10.2vw, 206px);
  padding: clamp(22px, 1.55vw, 30px) clamp(28px, 2.2vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(61, 91, 116, 0.78);
  border-radius: 5px;
  background:
    radial-gradient(ellipse at 50% 103%, rgba(0, 156, 237, 0.5), transparent 12%),
    radial-gradient(circle at 11% 0%, rgba(24, 76, 107, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(13, 21, 29, 0.9), rgba(4, 9, 14, 0.98) 62%, rgba(1, 4, 8, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 -1px 0 rgba(51, 172, 239, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.56),
    0 18px 44px rgba(0, 0, 0, 0.46);
}

.hero-service-card::before,
.hero-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-service-card::before {
  opacity: 0.58;
  background:
    linear-gradient(90deg, transparent 0 83%, var(--card-blue) 83% 89%, transparent 89%) 100% 26px / 180px 1px no-repeat,
    linear-gradient(90deg, transparent 0 69%, var(--card-blue) 69% 84%, transparent 84%) 100% 66px / 160px 1px no-repeat,
    linear-gradient(90deg, transparent 0 75%, var(--card-blue) 75% 92%, transparent 92%) 100% calc(100% - 30px) / 150px 1px no-repeat,
    linear-gradient(var(--card-blue), var(--card-blue)) calc(100% - 80px) 26px / 1px 22px no-repeat,
    linear-gradient(var(--card-blue), var(--card-blue)) calc(100% - 62px) 66px / 1px 16px no-repeat,
    linear-gradient(90deg, transparent, var(--card-blue), transparent) 0 calc(100% - 24px) / 96px 1px no-repeat,
    linear-gradient(var(--card-blue), var(--card-blue)) 52px calc(100% - 24px) / 1px 18px no-repeat,
    linear-gradient(90deg, transparent, var(--card-blue), transparent) 16px 31px / 90px 1px no-repeat,
    linear-gradient(var(--card-blue), var(--card-blue)) 42px 31px / 1px 18px no-repeat;
}

.hero-service-card::after {
  border-radius: inherit;
  box-shadow:
    inset 0 0 34px rgba(0, 143, 224, 0.08),
    inset 0 -6px 20px rgba(0, 154, 239, 0.12);
}

.service-number {
  display: block;
  grid-area: number;
  margin: 0 0 3px;
  color: #17c7f4;
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(13px, 0.8vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(23, 199, 244, 0.34);
}

.hero-service-card img {
  grid-area: icon;
  width: clamp(68px, 4.25vw, 88px);
  height: clamp(68px, 4.25vw, 88px);
  align-self: start;
  margin-top: 3px;
  object-fit: contain;
  filter:
    sepia(0.28)
    saturate(1.18)
    brightness(1.09)
    drop-shadow(0 0 13px rgba(246, 185, 47, 0.36));
}

.hero-service-card h2 {
  grid-area: title;
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-family: "Square721Extended", "EurostileExtendedBlack", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(24px, 1.65vw, 35px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 16px rgba(255, 255, 255, 0.08);
}

.hero-service-card ul {
  grid-area: copy;
  margin: clamp(7px, 0.55vw, 10px) 0 0 19px;
  padding: 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: clamp(14px, 0.92vw, 18px);
  font-weight: 500;
  line-height: 1.33;
}

.hero-service-card li::marker {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86em;
}

@media (max-width: 980px) {
  .hero-services {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-service-card {
    min-height: 166px;
    border-right: 1px solid rgba(61, 91, 116, 0.78);
    border-bottom: 1px solid rgba(61, 91, 116, 0.78);
  }
}

@media (max-width: 560px) {
  .hero-service-card {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 150px;
    padding: 20px 18px;
    column-gap: 16px;
  }

  .hero-service-card img {
    width: 60px;
    height: 60px;
  }

  .hero-service-card h2 {
    font-size: clamp(21px, 6vw, 27px);
  }
}

/* Reference-style service cards. */
.services-after-proof {
  margin-top: clamp(18px, 1.8vw, 30px);
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 1.35vw, 28px);
  width: 100%;
  border: 0;
  background: none;
}

.hero-service-card {
  --card-blue: rgba(9, 127, 184, 0.34);
  position: relative;
  display: grid;
  grid-template-columns: clamp(78px, 5vw, 100px) minmax(0, 1fr);
  grid-template-areas:
    "icon number"
    "icon title"
    ". copy";
  align-content: start;
  column-gap: clamp(18px, 1.35vw, 28px);
  row-gap: 0;
  min-height: clamp(172px, 10.2vw, 206px);
  padding: clamp(22px, 1.55vw, 30px) clamp(28px, 2.2vw, 44px);
  overflow: hidden;
  border: 1px solid rgba(61, 91, 116, 0.78);
  border-radius: 5px;
  background:
    radial-gradient(ellipse at 50% 103%, rgba(0, 156, 237, 0.5), transparent 12%),
    radial-gradient(circle at 11% 0%, rgba(24, 76, 107, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(13, 21, 29, 0.9), rgba(4, 9, 14, 0.98) 62%, rgba(1, 4, 8, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.025),
    inset 0 -1px 0 rgba(51, 172, 239, 0.55),
    0 0 0 1px rgba(0, 0, 0, 0.56),
    0 18px 44px rgba(0, 0, 0, 0.46);
}

.hero-service-card::before,
.hero-service-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-service-card::before {
  opacity: 0.58;
  background:
    linear-gradient(90deg, transparent 0 83%, var(--card-blue) 83% 89%, transparent 89%) 100% 26px / 180px 1px no-repeat,
    linear-gradient(90deg, transparent 0 69%, var(--card-blue) 69% 84%, transparent 84%) 100% 66px / 160px 1px no-repeat,
    linear-gradient(90deg, transparent 0 75%, var(--card-blue) 75% 92%, transparent 92%) 100% calc(100% - 30px) / 150px 1px no-repeat,
    linear-gradient(var(--card-blue), var(--card-blue)) calc(100% - 80px) 26px / 1px 22px no-repeat,
    linear-gradient(var(--card-blue), var(--card-blue)) calc(100% - 62px) 66px / 1px 16px no-repeat,
    linear-gradient(90deg, transparent, var(--card-blue), transparent) 0 calc(100% - 24px) / 96px 1px no-repeat,
    linear-gradient(var(--card-blue), var(--card-blue)) 52px calc(100% - 24px) / 1px 18px no-repeat,
    linear-gradient(90deg, transparent, var(--card-blue), transparent) 16px 31px / 90px 1px no-repeat,
    linear-gradient(var(--card-blue), var(--card-blue)) 42px 31px / 1px 18px no-repeat;
}

.hero-service-card::after {
  border-radius: inherit;
  box-shadow:
    inset 0 0 34px rgba(0, 143, 224, 0.08),
    inset 0 -6px 20px rgba(0, 154, 239, 0.12);
}

.service-number {
  display: block;
  grid-area: number;
  margin: 0 0 3px;
  color: #17c7f4;
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(13px, 0.8vw, 16px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.04em;
  text-shadow: 0 0 12px rgba(23, 199, 244, 0.34);
}

.hero-service-card img {
  grid-area: icon;
  width: clamp(68px, 4.25vw, 88px);
  height: clamp(68px, 4.25vw, 88px);
  align-self: start;
  margin-top: 3px;
  object-fit: contain;
  filter:
    sepia(0.28)
    saturate(1.18)
    brightness(1.09)
    drop-shadow(0 0 13px rgba(246, 185, 47, 0.36));
}

.hero-service-card h2 {
  grid-area: title;
  max-width: 12ch;
  margin: 0;
  color: #fff;
  font-family: "Square721Extended", "EurostileExtendedBlack", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(24px, 1.65vw, 35px);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.12),
    0 0 16px rgba(255, 255, 255, 0.08);
}

.hero-service-card ul {
  grid-area: copy;
  margin: clamp(7px, 0.55vw, 10px) 0 0 19px;
  padding: 0;
  color: rgba(247, 251, 255, 0.78);
  font-size: clamp(14px, 0.92vw, 18px);
  font-weight: 500;
  line-height: 1.33;
}

.hero-service-card li::marker {
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.86em;
}

@media (max-width: 980px) {
  .hero-services {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .hero-service-card {
    min-height: 166px;
    border-right: 1px solid rgba(61, 91, 116, 0.78);
    border-bottom: 1px solid rgba(61, 91, 116, 0.78);
  }
}

@media (max-width: 560px) {
  .hero-service-card {
    grid-template-columns: 64px minmax(0, 1fr);
    min-height: 150px;
    padding: 20px 18px;
    column-gap: 16px;
  }

  .hero-service-card img {
    width: 60px;
    height: 60px;
  }

  .hero-service-card h2 {
    font-size: clamp(21px, 6vw, 27px);
  }
}

.projects-section .section-heading {
  margin-bottom: clamp(10px, 1vw, 18px);
}

.section-kicker {
  margin-bottom: 6px;
}

/* Scale the header logo visually without changing the navigation bar height. */
.site-header .brand img {
  transform: scale(1.6);
  transform-origin: left center;
}

/* Match the reference hero button sizing and treatment. */
.hero-actions {
  gap: 32px;
}

.hero-actions .button {
  min-width: 214px;
  min-height: 56px;
  padding: 0 26px;
  justify-content: space-between;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 1;
}

.hero-actions .button.primary {
  border-color: rgba(246, 185, 47, 0.82);
  background: rgba(246, 185, 47, 0.055);
  color: var(--gold-soft);
  box-shadow: inset 0 0 0 1px rgba(246, 185, 47, 0.06);
}

.hero-actions .button.ghost {
  border-color: rgba(247, 251, 255, 0.34);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.hero-actions .button::after {
  margin-left: 22px;
}

.projects-section {
  margin-top: -42px;
  padding-top: clamp(6px, 0.7vw, 12px);
}

/* Match the reference hero button sizing and treatment. */
.hero-actions {
  gap: 32px;
}

.hero-actions .button {
  min-width: 214px;
  min-height: 56px;
  padding: 0 26px;
  justify-content: space-between;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 1;
}

.hero-actions .button.primary {
  border-color: rgba(246, 185, 47, 0.82);
  background: rgba(246, 185, 47, 0.055);
  color: var(--gold-soft);
  box-shadow: inset 0 0 0 1px rgba(246, 185, 47, 0.06);
}

.hero-actions .button.ghost {
  border-color: rgba(247, 251, 255, 0.34);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.hero-actions .button::after {
  margin-left: 22px;
}

/* Final spacing and Rajdhani typography pass. */
#projects-title,
#contact-title,
.hero-actions .button,
.contact-actions .button {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 700;
}

#projects-title,
#contact-title {
  letter-spacing: 0.02em;
}

.projects-section {
  padding-top: clamp(10px, 1.2vw, 22px);
}

.projects-section .section-heading {
  margin-bottom: clamp(10px, 1vw, 18px);
}

.section-kicker {
  margin-bottom: 6px;
}

/* Final hero cleanup: keep the area around and below the robot art plain black. */
.reference-hero::before,
.hero-stage::after {
  content: none;
}

.hero-stage {
  background: #000;
}

.hero-stage::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0 28%, rgba(0, 0, 0, 0.36) 52%, transparent 78%);
}

/* Final hero cleanup: keep the area around and below the robot art plain black. */
.reference-hero::before,
.hero-stage::after {
  content: none;
}

.hero-stage {
  background: #000;
}

.hero-stage::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0 28%, rgba(0, 0, 0, 0.36) 52%, transparent 78%);
}

/* Final hero cleanup: keep the area around and below the robot art plain black. */
.reference-hero::before,
.hero-stage::after {
  content: none;
}

.hero-stage {
  background: #000;
}

.hero-stage::before {
  background: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0 28%, rgba(0, 0, 0, 0.36) 52%, transparent 78%);
}

/* Final polish pass: hero top gap and stats bar proportions. */
@media (min-width: 981px) {
  .reference-hero {
    padding-top: 60px;
  }

  .hero-stage {
    min-height: 515px;
  }

  .hero-visual img {
    width: 1500px;
    max-width: none;
    transform: translateX(4%) translateY(-4%);
  }
}

.studio-stats {
  min-height: 88px;
  padding: 8px clamp(30px, 4vw, 72px);
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 63, 104, 0.22), transparent 16%) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)) padding-box,
    linear-gradient(90deg, rgba(14, 55, 74, 0.62), rgba(35, 129, 167, 0.72), rgba(11, 43, 60, 0.62)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(40, 160, 210, 0.2),
    0 0 34px rgba(18, 63, 104, 0.055),
    0 22px 72px rgba(0, 0, 0, 0.46);
}

.studio-stats .stat-item {
  min-height: 70px;
  gap: clamp(12px, 1.25vw, 22px);
}

.studio-stats .stat-item:not(:last-child)::after {
  background: linear-gradient(180deg, transparent, rgba(62, 115, 142, 0.42), transparent);
}

.studio-stats img {
  width: clamp(80px, 5.6vw, 112px);
  height: clamp(80px, 5.6vw, 112px);
}

.studio-stats strong {
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 0.95;
}

.studio-stats .stat-copy span {
  font-size: clamp(10px, 0.7vw, 12px);
  letter-spacing: 0.1em;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .reference-hero {
    padding-top: 58px;
  }

  .hero-visual img {
    width: 1220px;
    transform: translateX(5%) translateY(-4%);
  }

  .studio-stats img {
    width: 78px;
    height: 78px;
  }
}

/* Final polish pass: hero top gap and stats bar proportions. */
@media (min-width: 981px) {
  .reference-hero {
    padding-top: 60px;
  }

  .hero-stage {
    min-height: 515px;
  }

  .hero-visual img {
    width: 1500px;
    max-width: none;
    transform: translateX(4%) translateY(-4%);
  }
}

.studio-stats {
  min-height: 88px;
  padding: 8px clamp(30px, 4vw, 72px);
  border: 1px solid transparent;
  border-radius: 7px;
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 63, 104, 0.22), transparent 16%) padding-box,
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.01)) padding-box,
    linear-gradient(90deg, rgba(14, 55, 74, 0.62), rgba(35, 129, 167, 0.72), rgba(11, 43, 60, 0.62)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(40, 160, 210, 0.2),
    0 0 34px rgba(18, 63, 104, 0.055),
    0 22px 72px rgba(0, 0, 0, 0.46);
}

.studio-stats .stat-item {
  min-height: 70px;
  gap: clamp(12px, 1.25vw, 22px);
}

.studio-stats .stat-item:not(:last-child)::after {
  background: linear-gradient(180deg, transparent, rgba(62, 115, 142, 0.42), transparent);
}

.studio-stats img {
  width: clamp(80px, 5.6vw, 112px);
  height: clamp(80px, 5.6vw, 112px);
}

.studio-stats strong {
  font-size: clamp(24px, 2.2vw, 38px);
  line-height: 0.95;
}

.studio-stats .stat-copy span {
  font-size: clamp(10px, 0.7vw, 12px);
  letter-spacing: 0.1em;
}

@media (min-width: 981px) and (max-width: 1280px) {
  .reference-hero {
    padding-top: 58px;
  }

  .hero-visual img {
    width: 1220px;
    transform: translateX(5%) translateY(-4%);
  }

  .studio-stats img {
    width: 78px;
    height: 78px;
  }
}

@media (max-width: 900px) {
  .site-header .brand span {
    display: none;
  }

  .site-header .brand img {
    width: clamp(116px, 34vw, 154px);
  }

  .hero-copy h1 {
    font-size: clamp(44px, 12vw, 72px);
  }

  .studio-stats::after,
  .studio-stats .stat-item::after {
    display: none;
  }
}

/* Final review adjustments */
.site-header .brand span {
  display: none;
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 132px;
  min-height: 44px;
  padding: 0 20px;
  white-space: nowrap;
  line-height: 1;
}

.hero-copy p:not(.hero-kicker) {
  max-width: none;
  white-space: nowrap;
}

.service-number {
  display: none;
}

.hero-service-card {
  grid-template-areas:
    "icon title"
    ". copy";
}

.contact-location {
  font-size: clamp(26px, 1.9vw, 33px);
}

.contact-section h2 {
  max-width: none;
  white-space: nowrap;
}

.contact-location p {
  gap: 18px;
  white-space: nowrap;
}

.contact-location .production-force {
  margin-top: clamp(8px, 0.8vw, 14px);
}

.flag-banner {
  width: 90px;
}

@media (max-width: 900px) {
  .contact-section h2 {
    white-space: normal;
  }

  .hero-copy p:not(.hero-kicker),
  .contact-location p {
    white-space: normal;
  }

  .contact-location {
    font-size: clamp(20px, 5vw, 26px);
  }
}

/* Eurostile hero composition pass */
.hero-stage {
  grid-template-columns: minmax(560px, 0.82fr) minmax(0, 1.18fr);
  align-items: end;
  min-height: clamp(470px, 31vw, 610px);
}

.hero-copy {
  align-self: center;
  min-width: 0;
  padding: clamp(30px, 3.4vw, 60px) clamp(12px, 1.2vw, 22px) clamp(38px, 3.8vw, 66px) 0;
}

.hero-copy h1 {
  max-width: none;
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 700;
  font-size: clamp(60px, 4.55vw, 98px);
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-copy h1 span {
  display: block;
  white-space: nowrap;
}

.hero-visual {
  min-height: clamp(430px, 30vw, 570px);
  align-items: flex-end;
  justify-content: flex-end;
}

.hero-visual img {
  width: min(122%, 1240px);
  transform: translateX(3.5%) translateY(1%);
}

.contact-section {
  grid-template-columns: minmax(720px, 0.95fr) minmax(520px, 0.8fr);
  gap: clamp(56px, 5.2vw, 104px);
}

.contact-section h2 {
  font-size: clamp(66px, 4.9vw, 108px);
  letter-spacing: 0;
}

@media (max-width: 1500px) {
  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 1280px) {
  .hero-stage {
    grid-template-columns: minmax(430px, 0.78fr) minmax(0, 1.22fr);
  }

  .hero-copy h1 {
    font-size: clamp(50px, 4.75vw, 64px);
  }
}

@media (max-width: 980px) {
  .hero-stage {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-copy h1 {
    font-size: clamp(44px, 12vw, 72px);
  }

  .hero-visual {
    min-height: 0;
  }

  .hero-visual img {
    width: min(112%, 1000px);
    transform: none;
  }
}

/* Final wide-layout override: use smaller side gutters like the reference. */
:root {
  --max: 1900px;
  --wide: 1900px;
  --content-wide: min(var(--wide), calc(100% - clamp(28px, 3vw, 64px)));
}

.site-header {
  padding-left: max(clamp(20px, 3vw, 56px), calc((100vw - var(--wide)) / 2));
  padding-right: max(clamp(20px, 3vw, 56px), calc((100vw - var(--wide)) / 2));
}

.reference-hero,
.section,
.projects-section,
.services-hero,
.service-list,
.team-heading,
.clients-showcase h2 {
  width: var(--content-wide);
}

.reference-hero {
  padding-top: 60px;
  gap: 0;
}

.hero-stage {
  grid-template-columns: minmax(650px, 0.72fr) minmax(0, 1.28fr);
  align-items: end;
  min-height: 515px;
  overflow: hidden;
  border-bottom: 0;
}

.hero-copy h1 {
  font-size: clamp(62px, 4.2vw, 94px);
}

.hero-visual img {
  width: 1500px;
  max-width: none;
  flex: 0 0 auto;
  transform: translateX(4%) translateY(-4%);
}

.studio-stats {
  width: 100%;
  max-width: none;
  margin-top: -12px;
  min-height: 120px;
  padding: 12px clamp(34px, 5vw, 92px);
  border: 1px solid transparent;
  border-radius: 8px;
  background:
    radial-gradient(ellipse at 50% 110%, rgba(0, 122, 190, 0.18), transparent 38%) padding-box,
    linear-gradient(180deg, rgba(13, 24, 34, 0.82), rgba(2, 7, 13, 0.98) 54%, rgba(1, 5, 10, 0.98)) padding-box,
    linear-gradient(90deg, rgba(27, 42, 55, 0.62), rgba(39, 65, 82, 0.78), rgba(27, 42, 55, 0.62)) border-box;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.03),
    inset 0 -1px 0 rgba(21, 131, 188, 0.34),
    0 0 0 1px rgba(2, 9, 15, 0.62),
    0 18px 52px rgba(0, 0, 0, 0.52);
}

.studio-stats .stat-item {
  min-height: 88px;
  gap: clamp(20px, 1.7vw, 34px);
}

.studio-stats .stat-item:not(:last-child)::after {
  top: 23%;
  bottom: 23%;
  background: linear-gradient(180deg, transparent, rgba(104, 119, 132, 0.5), transparent);
}

.studio-stats img {
  width: clamp(72px, 4.4vw, 88px);
  height: clamp(72px, 4.4vw, 88px);
  filter:
    brightness(1.05)
    drop-shadow(0 0 14px rgba(0, 139, 220, 0.32));
}

.studio-stats strong {
  font-size: clamp(34px, 2.45vw, 48px);
  line-height: 0.9;
  letter-spacing: 0.035em;
  text-shadow: 0 0 12px rgba(255, 255, 255, 0.08);
}

.studio-stats .stat-copy span {
  color: rgba(247, 251, 255, 0.7);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 800;
  letter-spacing: 0.16em;
}

.projects-section {
  padding-top: clamp(18px, 2vw, 36px);
}

.project-grid {
  gap: clamp(8px, 0.7vw, 14px);
}

.hero-services {
  gap: clamp(14px, 1.1vw, 22px);
}

.contact-section {
  padding-left: max(clamp(28px, 3vw, 64px), calc((100vw - var(--wide)) / 2));
  padding-right: max(clamp(28px, 3vw, 64px), calc((100vw - var(--wide)) / 2));
}

@media (max-width: 1280px) {
  :root {
    --content-wide: calc(100% - 36px);
  }

  .hero-stage {
    grid-template-columns: minmax(460px, 0.78fr) minmax(0, 1.22fr);
    min-height: 440px;
  }

  .hero-visual {
    min-height: 440px;
  }

  .hero-visual img {
    width: 1220px;
    transform: translateX(5%) translateY(1%);
  }
}

@media (max-width: 980px) {
  :root {
    --content-wide: calc(100% - 28px);
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }
}

/* Final spacing and Rajdhani typography pass. */
#projects-title,
#contact-title,
.hero-actions .button,
.contact-actions .button {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 700;
}

#projects-title,
#contact-title {
  letter-spacing: 0.02em;
}

.projects-section {
  padding-top: clamp(10px, 1.2vw, 22px);
}

.projects-section .section-heading {
  margin-bottom: clamp(10px, 1vw, 18px);
}

.section-kicker {
  margin-bottom: 6px;
}

/* Scale the header logo visually without changing the navigation bar height. */
.site-header .brand img {
  transform: scale(1.6);
  transform-origin: left center;
}

/* Match the reference hero button sizing and treatment. */
.hero-actions {
  gap: 32px;
}

.hero-actions .button {
  min-width: 214px;
  min-height: 56px;
  padding: 0 26px;
  justify-content: space-between;
  border-radius: 5px;
  font-size: 16px;
  letter-spacing: 0.07em;
  line-height: 1;
}

.hero-actions .button.primary {
  border-color: rgba(246, 185, 47, 0.82);
  background: rgba(246, 185, 47, 0.055);
  color: var(--gold-soft);
  box-shadow: inset 0 0 0 1px rgba(246, 185, 47, 0.06);
}

.hero-actions .button.ghost {
  border-color: rgba(247, 251, 255, 0.34);
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.025);
}

.hero-actions .button::after {
  margin-left: 22px;
}

.projects-section {
  margin-top: -42px;
  padding-top: clamp(6px, 0.7vw, 12px);
}

.hero-actions .button.ghost:hover {
  border-color: rgba(246, 185, 47, 0.82);
  background: rgba(246, 185, 47, 0.06);
  color: var(--gold-soft);
  box-shadow: 0 0 22px rgba(246, 185, 47, 0.12);
}

/* Service-card override kept last so earlier review passes cannot hide the numbers. */
.hero-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 1.35vw, 28px);
  border: 0;
  background: none;
}

.hero-service-card {
  grid-template-columns: clamp(78px, 5vw, 100px) minmax(0, 1fr);
  grid-template-areas:
    "icon number"
    "icon title"
    ". copy";
  min-height: clamp(172px, 10.2vw, 206px);
  padding: clamp(22px, 1.55vw, 30px) clamp(28px, 2.2vw, 44px);
  border: 1px solid rgba(61, 91, 116, 0.78);
  border-radius: 5px;
  background:
    radial-gradient(ellipse at 50% 103%, rgba(0, 156, 237, 0.5), transparent 12%),
    radial-gradient(circle at 11% 0%, rgba(24, 76, 107, 0.26), transparent 32%),
    linear-gradient(180deg, rgba(13, 21, 29, 0.9), rgba(4, 9, 14, 0.98) 62%, rgba(1, 4, 8, 0.98));
}

.service-number {
  display: block;
  grid-area: number;
}

@media (max-width: 980px) {
  .hero-services {
    grid-template-columns: 1fr;
  }
}

/* Comment 1 final: Rajdhani service cards, no numbering. */
.hero-service-card {
  grid-template-areas:
    "icon title"
    ". copy";
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
}

.service-number {
  display: none;
}

.hero-service-card h2 {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(31px, 2.35vw, 46px);
  font-weight: 700;
  line-height: 0.82;
  letter-spacing: 0.015em;
}

.hero-service-card ul {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 700;
  line-height: 1.18;
}

/* Comment 2 final: stats-bar styling for the three service cards. */
.services-after-proof {
  margin-top: clamp(12px, 1.1vw, 20px);
}

.hero-services {
  gap: clamp(14px, 1vw, 20px);
}

.hero-service-card {
  grid-template-columns: clamp(66px, 4vw, 82px) minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon copy";
  align-content: center;
  min-height: clamp(112px, 7.1vw, 138px);
  padding: clamp(14px, 1vw, 18px) clamp(24px, 1.8vw, 34px);
  column-gap: clamp(16px, 1.25vw, 24px);
  row-gap: 5px;
  border: 1px solid rgba(24, 100, 138, 0.92);
  border-radius: 7px;
  clip-path: none;
  background:
    radial-gradient(circle at 50% 100%, rgba(18, 63, 104, 0.075), transparent 16%),
    linear-gradient(180deg, rgba(7, 17, 26, 0.98), rgba(2, 8, 14, 0.99) 58%, rgba(1, 5, 9, 1));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.035),
    inset 0 -1px 0 rgba(40, 160, 210, 0.24),
    0 0 0 1px rgba(0, 148, 214, 0.1),
    0 18px 54px rgba(0, 0, 0, 0.46);
}

.hero-service-card::before {
  display: none;
}

.hero-service-card::after {
  border-radius: inherit;
  box-shadow:
    inset 0 0 22px rgba(18, 63, 104, 0.028),
    inset 0 -1px 0 rgba(0, 160, 228, 0.18);
}

.hero-service-card img {
  width: clamp(58px, 3.65vw, 74px);
  height: clamp(58px, 3.65vw, 74px);
  align-self: center;
  margin-top: 0;
  filter:
    brightness(1.2)
    saturate(0.62)
    hue-rotate(148deg)
    drop-shadow(0 0 13px rgba(18, 63, 104, 0.18));
}

.hero-service-card h2 {
  align-self: end;
  max-width: 13ch;
  font-size: clamp(28px, 1.9vw, 38px);
  line-height: 0.88;
}

.hero-service-card ul {
  align-self: start;
  margin: 6px 0 0 17px;
  font-size: clamp(14px, 0.9vw, 17px);
  line-height: 1.15;
}

@media (max-width: 980px) {
  .hero-service-card {
    min-height: 116px;
  }
}

@media (max-width: 560px) {
  .hero-service-card {
    grid-template-columns: 58px minmax(0, 1fr);
    min-height: 108px;
    padding: 14px 16px;
  }

  .hero-service-card img {
    width: 50px;
    height: 50px;
  }

  .hero-service-card h2 {
    font-size: clamp(24px, 7vw, 30px);
  }
}

/* Client block artwork for the three core service cards. */
.services-after-proof {
  margin-top: clamp(14px, 1.3vw, 24px);
}

.hero-services {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(16px, 1.15vw, 22px);
}

.hero-service-card {
  grid-template-columns: clamp(58px, 3.8vw, 76px) minmax(0, 1fr);
  grid-template-areas:
    "icon title"
    "icon copy";
  align-content: center;
  align-items: center;
  min-height: clamp(132px, 8vw, 164px);
  padding: clamp(18px, 1.25vw, 26px) clamp(28px, 2vw, 42px);
  border: 0;
  border-radius: 18px;
  background: #020a10 url("media/content/block-s.png.webp?v=20260505-optimized-assets") center / 100% 100% no-repeat;
  box-shadow:
    0 18px 52px rgba(0, 0, 0, 0.46),
    0 0 24px rgba(50, 145, 212, 0.12);
  column-gap: clamp(16px, 1.25vw, 24px);
  row-gap: 5px;
}

.hero-service-card::before,
.hero-service-card::after {
  display: none;
}

.hero-service-card img {
  width: clamp(54px, 3.55vw, 72px);
  height: clamp(54px, 3.55vw, 72px);
  align-self: center;
}

.hero-service-card h2 {
  align-self: end;
  max-width: 13ch;
  font-size: clamp(28px, 1.9vw, 38px);
  line-height: 0.88;
}

.hero-service-card ul {
  align-self: start;
  display: block;
  margin: 6px 0 0 17px;
  padding-left: 0;
  font-size: clamp(14px, 0.92vw, 17px);
  line-height: 1.15;
}

@media (max-width: 980px) {
  .hero-services {
    grid-template-columns: 1fr;
  }

  .hero-service-card {
    min-height: 132px;
  }

  .hero-service-card ul {
    margin-top: 4px;
  }
}

@media (max-width: 560px) {
  .hero-service-card {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 124px;
    padding: 18px 20px;
    border-radius: 14px;
  }

  .hero-service-card img {
    width: 50px;
    height: 50px;
  }

  .hero-service-card h2 {
    font-size: clamp(24px, 6.8vw, 30px);
  }
}

/* Final contact cascade lock. Keep the redesigned console above legacy overrides. */
.contact-section {
  width: min(1880px, calc(100% - clamp(34px, 4vw, 72px)));
  margin: clamp(4px, 0.6vw, 12px) auto clamp(34px, 4vw, 62px);
  padding: clamp(64px, 5.1vw, 96px) clamp(58px, 5vw, 108px);
  grid-template-columns: minmax(430px, 0.86fr) minmax(560px, 1.14fr);
  gap: clamp(64px, 6.2vw, 128px);
}

.contact-section h2 {
  margin: 0 0 clamp(18px, 1.7vw, 28px);
  font-size: clamp(70px, 6.2vw, 130px);
  line-height: 0.86;
  letter-spacing: 0;
}

.contact-location {
  grid-template-columns: clamp(92px, 5.5vw, 112px) 24px minmax(0, 1fr);
  gap: clamp(18px, 1.5vw, 28px);
  font-size: initial;
  white-space: normal;
}

.contact-location p {
  gap: 0;
  white-space: normal;
}

.contact-section .contact-kicker,
.contact-section .contact-subtitle {
  color: var(--contact-blue-bright);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 950;
  letter-spacing: 0.28em;
  line-height: 1;
}

.contact-section .contact-lede {
  max-width: 610px;
  color: rgba(247, 251, 255, 0.82);
  font-size: clamp(19px, 1.22vw, 24px);
  font-weight: 650;
  line-height: 1.28;
}

.contact-section .contact-form-head p {
  color: rgba(247, 251, 255, 0.8);
  font-size: clamp(17px, 1.02vw, 21px);
  font-weight: 600;
  line-height: 1.3;
}

.contact-section .contact-secure {
  color: rgba(247, 251, 255, 0.5);
  font-size: clamp(15px, 0.92vw, 18px);
  font-weight: 600;
}

@media (max-width: 1500px) {
  .contact-section {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 900px) {
  .contact-section {
    width: min(100% - 24px, 760px);
    padding: clamp(42px, 8vw, 62px) clamp(20px, 5vw, 36px);
    gap: 42px;
  }

  .contact-section h2 {
    font-size: clamp(58px, 16vw, 92px);
    white-space: normal;
  }

  .contact-location {
    grid-template-columns: 82px 21px minmax(0, 1fr);
    gap: 16px;
  }
}

@media (max-width: 560px) {
  .contact-section {
    width: calc(100% - 16px);
    padding: 34px 16px;
  }

  .contact-location {
    grid-template-columns: 74px minmax(0, 1fr);
    gap: 14px;
  }
}

/* Block F stats frame */
.studio-stats {
  width: 100%;
  aspect-ratio: 2103 / 172;
  min-height: 94px;
  max-height: 152px;
  margin-top: -12px;
  padding: clamp(10px, 0.95vw, 18px) clamp(44px, 5.2vw, 98px);
  align-items: center;
  border: 0;
  border-radius: clamp(16px, 1.25vw, 24px);
  background: url("media/content/block-f.png?v=20260501-block-tone-match") center / 100% 100% no-repeat;
  box-shadow: none;
}

.studio-stats::after {
  content: none;
}

.studio-stats .stat-item {
  position: relative;
  min-height: 0;
  gap: clamp(14px, 1.45vw, 28px);
}

.studio-stats .stat-item:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(150, 205, 255, 0.36),
    rgba(255, 255, 255, 0.24),
    transparent
  );
}

.studio-stats img {
  width: clamp(48px, 3.6vw, 70px);
  height: clamp(48px, 3.6vw, 70px);
}

.studio-stats strong {
  font-size: clamp(30px, 2.45vw, 48px);
}

.studio-stats .stat-copy span {
  color: rgba(247, 251, 255, 0.86);
}

@media (max-width: 900px) {
  .studio-stats {
    aspect-ratio: auto;
    max-height: none;
    min-height: 0;
    padding: 24px clamp(26px, 8vw, 58px);
    background-size: 100% 100%;
  }

  .studio-stats .stat-item {
    min-height: 74px;
    padding: 10px 0;
    border-bottom: 0;
  }

  .studio-stats .stat-item:not(:last-child)::after {
    top: auto;
    right: 0;
    bottom: 0;
    left: 0;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(150, 205, 255, 0.34), transparent);
  }
}

/* Final homepage vertical tightening from design reference. */
.home-hero {
  gap: clamp(8px, 0.9vw, 18px);
  padding-bottom: clamp(8px, 1vw, 18px);
}

.studio-stats {
  margin-top: clamp(-34px, -1.8vw, -18px);
}

.projects-section {
  margin-top: clamp(-42px, -2.5vw, -24px);
  padding-top: 0;
  padding-bottom: clamp(34px, 4vw, 64px);
}

.projects-section .section-heading {
  margin-bottom: clamp(10px, 0.85vw, 16px);
}

.project-grid {
  gap: clamp(8px, 0.6vw, 12px);
}

.project-proof {
  margin-top: clamp(10px, 0.8vw, 16px);
  padding-top: clamp(10px, 0.7vw, 14px);
}

.services-after-proof {
  margin-top: clamp(8px, 0.7vw, 14px);
}

.hero-services {
  gap: clamp(10px, 0.75vw, 16px);
}

@media (max-width: 900px) {
  .home-hero {
    padding-bottom: 12px;
  }

  .studio-stats,
  .projects-section {
    margin-top: 0;
  }
}

/* Final clients running-line texture update. */
.clients-team-section .client-showcase-bar {
  --client-frame-pad-x: clamp(44px, 5.2vw, 98px);
  --client-frame-pad-y: clamp(10px, 0.95vw, 18px);
  aspect-ratio: 1900 / 172;
  width: min(1900px, 100%);
  margin-left: auto;
  margin-right: auto;
  min-height: clamp(94px, 8.2vw, 152px);
  margin-top: clamp(8px, 0.9vw, 16px);
  background: url("media/content/block-h-02.png?v=20260501-block-tone-match") center / 100% 100% no-repeat;
  box-shadow: none;
}

.clients-team-section .client-logo-canvas {
  display: none;
}

.clients-team-section .client-logo-mask {
  position: absolute;
  left: 1%;
  right: 1%;
  top: 8.7%;
  bottom: 10.5%;
  z-index: 3;
  display: block;
  overflow: hidden;
  border-radius: clamp(18px, 1.65vw, 32px);
  -webkit-mask: none;
  mask: none;
}

.clients-team-section .client-track {
  position: relative;
  display: flex;
  align-items: center;
  width: max-content;
  height: 100%;
  padding: 0 var(--client-frame-pad-x);
  animation: client-marquee-right 56s linear infinite;
  animation-play-state: running;
  will-change: transform;
}

.clients-team-section .client-logo {
  flex-basis: clamp(220px, 13.2vw, 310px);
  width: clamp(220px, 13.2vw, 310px);
  height: 100%;
  padding: 0 clamp(22px, 1.6vw, 32px);
}

.clients-team-section .client-logo img {
  height: clamp(42px, 3.2vw, 62px);
  max-width: 100%;
  filter: grayscale(1) brightness(2.85) contrast(1.02);
  opacity: 0.92;
}

@keyframes client-marquee-right {
  from {
    transform: translateX(-25%);
  }

  to {
    transform: translateX(0);
  }
}

@media (max-width: 700px) {
  .clients-team-section .client-showcase-bar {
    min-height: 96px;
  }
}

/* Hero artwork crossfade. */
.hero-visual {
  isolation: isolate;
}

.hero-visual .hero-visual-slide {
  position: absolute;
  right: 0;
  bottom: 0;
  opacity: 0;
  will-change: opacity;
}

.hero-visual .hero-visual-slide:nth-child(1) {
  position: relative;
  opacity: 1;
}

.hero-art-ready .hero-visual .hero-visual-slide {
  animation: hero-art-even-cycle 24s linear infinite both;
}

.hero-art-ready .hero-visual .hero-visual-slide:nth-child(1) {
  animation-delay: 0s;
}

.hero-art-ready .hero-visual .hero-visual-slide:nth-child(2) {
  animation-delay: -18s;
}

.hero-art-ready .hero-visual .hero-visual-slide:nth-child(3) {
  animation-delay: -12s;
}

.hero-art-ready .hero-visual .hero-visual-slide:nth-child(4) {
  animation-delay: -6s;
}

@keyframes hero-art-even-cycle {
  0%,
  21% {
    opacity: 1;
  }

  25%,
  96% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-visual .hero-visual-slide {
    animation: none;
  }

  .hero-visual .hero-visual-slide:first-child {
    opacity: 1;
  }

  .hero-visual .hero-visual-slide:not(:first-child) {
    display: none;
  }
}

/* Final button border consistency pass. */
.header-cta,
.hero-actions .button,
.contact-submit {
  border-width: 1px;
  border-style: solid;
}

.header-cta,
.hero-actions .button.ghost {
  border-color: #fff;
}

.header-cta:hover,
.hero-actions .button.ghost:hover,
.contact-submit:hover {
  border-color: rgba(246, 185, 47, 0.82);
}

.hero-actions .button.primary:hover {
  background: rgba(243, 165, 31, 0.11);
  border-color: rgba(246, 185, 47, 0.82);
  color: var(--gold-soft);
  box-shadow:
    inset 0 0 0 1px rgba(243, 165, 31, 0.08),
    0 0 28px rgba(243, 165, 31, 0.12);
}

/* Pricing calculator page */
.pricing-page {
  background: #000;
}

.pricing-page .reference-hero::before {
  content: none;
}

.nav a {
  position: relative;
  border-bottom: 0;
}

.nav a[aria-current="page"],
.nav a[aria-current="location"] {
  color: var(--text);
  border-bottom: 0;
}

.nav a:hover {
  color: var(--text);
}

.nav a[aria-current="page"]::after,
.nav a[aria-current="location"]::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--gold-soft);
}

.pricing-page main {
  --pricing-block-width: var(--content-wide);
  padding-bottom: clamp(56px, 6vw, 96px);
}

.pricing-hero,
.pricing-rates,
.pricing-rate-note,
.pricing-calculator,
.pricing-disclaimer,
.pricing-asset-list,
.pricing-info-grid,
.pricing-examples,
.pricing-final-cta {
  width: var(--pricing-block-width);
  margin-left: auto;
  margin-right: auto;
}

.pricing-hero {
  width: var(--pricing-block-width);
  min-height: auto;
  padding: calc(60px - 4mm) 0 0;
  display: grid;
  gap: 0;
  background: none;
}

.pricing-hero-stage {
  width: 100%;
  isolation: isolate;
  background: #000;
}

.pricing-hero-copy {
  position: relative;
  z-index: 3;
  max-width: 690px;
}

.pricing-hero-visual {
  z-index: 2;
}

.pricing-page .section-kicker {
  color: var(--text);
  text-transform: uppercase;
}

.pricing-page .section-kicker span {
  border-color: var(--gold-soft);
}

.pricing-hero h1,
.pricing-section-title h2,
.pricing-info-grid h2,
.pricing-examples h2,
.pricing-final-cta h2 {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", "Square721Extended", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-hero h1 {
  max-width: 11ch;
  margin-bottom: clamp(12px, 1.2vw, 18px);
  font-size: clamp(54px, 4.8vw, 92px);
  line-height: 0.86;
}

.pricing-hero-copy > p:not(.section-kicker) {
  max-width: 600px;
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(17px, 1vw, 22px);
  font-weight: 500;
  line-height: 1.38;
  white-space: normal;
}

.pricing-hero-note {
  margin-top: 16px;
  max-width: 600px;
}

.pricing-rates {
  margin-top: -2mm;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  aspect-ratio: 2103 / 172;
  min-height: 94px;
  max-height: 152px;
  padding: clamp(10px, 0.95vw, 18px) clamp(44px, 5.2vw, 98px);
  border: 0;
  border-radius: clamp(16px, 1.25vw, 24px);
  background: url("media/content/block-f.png?v=20260504-pricing-rates-width-align-2") center / 100.7% 100% no-repeat;
  box-shadow: none;
  overflow: hidden;
}

.pricing-rates article {
  position: relative;
  min-height: 0;
  padding: 8px clamp(12px, 1.3vw, 22px);
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 0;
}

.pricing-rates article:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 18%;
  right: 0;
  bottom: 18%;
  width: 1px;
  background: linear-gradient(
    180deg,
    transparent,
    rgba(150, 205, 255, 0.36),
    rgba(255, 255, 255, 0.24),
    transparent
  );
}

.pricing-rates span,
.pricing-step legend,
.pricing-choice,
.tier-segments button,
.estimate-breakdown dt,
.pricing-example-card span {
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.pricing-rates span {
  color: var(--text);
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 900;
}

.pricing-rates strong {
  color: var(--text);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: clamp(28px, 2vw, 42px);
  font-weight: 700;
  line-height: 1;
}

.pricing-rates em {
  color: rgba(247, 251, 255, 0.78);
  font-size: 0.42em;
  font-style: normal;
}

.pricing-rate-note {
  margin-top: 14px;
  margin-bottom: clamp(14px, 2vw, 26px);
  color: rgba(247, 251, 255, 0.68);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 600;
}

.pricing-calculator {
  position: relative;
  isolation: isolate;
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(420px, 0.78fr);
  gap: clamp(16px, 1.8vw, 28px);
  padding: clamp(42px, 4vw, 76px) clamp(38px, 4vw, 72px);
  border: 0;
  border-radius: clamp(18px, 1.6vw, 30px);
  background: rgba(1, 7, 12, 0.94);
  box-shadow: none;
  overflow: hidden;
}

.pricing-calculator::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border: clamp(34px, 3.2vw, 58px) solid transparent;
  border-image-source: url("media/content/block-c.png?v=20260504-pricing-calculator-refresh-3");
  border-image-slice: 58 fill;
  border-image-repeat: stretch;
  filter: none;
  opacity: 0.96;
  transform: scaleX(1.007);
  transform-origin: center;
  pointer-events: none;
}

.pricing-controls,
.estimate-panel {
  position: relative;
  z-index: 1;
}

.pricing-section-title h2 {
  margin-bottom: clamp(14px, 1.4vw, 22px);
  font-size: clamp(30px, 2.35vw, 48px);
  line-height: 0.92;
}

.pricing-step {
  min-width: 0;
  margin: 0 0 clamp(14px, 1.45vw, 22px);
  padding: 0;
  border: 0;
}

.pricing-step:last-child {
  margin-bottom: 0;
}

.pricing-step legend {
  margin-bottom: 10px;
  color: var(--text);
  font-size: clamp(13px, 0.82vw, 16px);
  font-weight: 900;
}

.pricing-step legend span {
  width: 23px;
  height: 23px;
  margin-right: 10px;
  display: inline-grid;
  place-items: center;
  border: 1px solid rgba(247, 251, 255, 0.8);
  border-radius: 999px;
  color: var(--text);
  letter-spacing: 0;
}

.asset-card-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 8px;
}

.pricing-choice,
.tier-segments button {
  min-height: 68px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 251, 255, 0.22);
  border-radius: 6px;
  background: rgba(1, 8, 14, 0.72);
  color: var(--text);
  font: inherit;
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: clamp(14px, 0.86vw, 17px);
  font-weight: 700;
  line-height: 1.05;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, box-shadow 180ms ease, transform 180ms ease, color 180ms ease;
}

.pricing-choice:hover,
.tier-segments button:hover,
.pricing-choice.is-selected,
.tier-segments button.is-selected {
  border-color: rgba(247, 251, 255, 0.9);
  background:
    linear-gradient(180deg, rgba(5, 28, 49, 0.9), rgba(2, 16, 32, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(247, 251, 255, 0.12),
    inset 0 12px 28px rgba(255, 255, 255, 0.025),
    0 0 20px rgba(247, 251, 255, 0.08);
}

.pricing-choice.is-selected,
.tier-segments button.is-selected {
  color: var(--text);
}

.pricing-choice:hover,
.pricing-choice:focus-visible,
.tier-segments button:hover,
.tier-segments button:focus-visible {
  color: var(--text);
}

.pricing-choice:hover {
  transform: translateY(-2px);
}

.tier-segments {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.tier-segments button {
  min-height: 128px;
  grid-template-rows: 84px auto;
  gap: 8px;
  padding: 12px 10px;
}

.pricing-choice {
  aspect-ratio: 1;
  min-height: 0;
  grid-template-rows: minmax(0, 1fr) minmax(32px, auto);
  gap: clamp(4px, 0.45vw, 8px);
  padding: clamp(8px, 0.75vw, 12px);
  text-align: center;
}

.pricing-choice img {
  inline-size: clamp(68px, 6.2vw, 116px);
  block-size: clamp(68px, 6.2vw, 116px);
  align-self: center;
  justify-self: center;
  object-fit: contain;
  opacity: 0.62;
  filter:
    grayscale(1)
    brightness(0.72)
    contrast(0.9)
    drop-shadow(0 0 8px rgba(247, 251, 255, 0.08));
  transition: opacity 180ms ease, filter 180ms ease;
}

.pricing-choice:hover img,
.pricing-choice:focus-visible img,
.pricing-choice.is-selected img {
  opacity: 1;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 10px rgba(247, 251, 255, 0.24));
}

.pricing-choice span {
  min-block-size: 32px;
  display: grid;
  place-items: center;
  align-self: end;
  min-width: 0;
  color: rgba(247, 251, 255, 0.58);
  text-align: center;
  transition: color 180ms ease;
}

.pricing-choice:hover span,
.pricing-choice:focus-visible span,
.pricing-choice.is-selected span,
.tier-segments button:hover > span:last-child,
.tier-segments button:focus-visible > span:last-child,
.tier-segments button.is-selected > span:last-child {
  color: var(--text);
}

.tier-segments button > span:last-child {
  color: rgba(247, 251, 255, 0.58);
  transition: color 180ms ease;
}

.tier-explanation,
.pricing-muted,
.discount-explanation,
.delivery-note,
.estimate-short-note {
  margin: 12px 0 0;
  color: rgba(247, 251, 255, 0.66);
  font-size: clamp(14px, 0.9vw, 17px);
  font-weight: 600;
  line-height: 1.4;
}

.quantity-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 132px;
  align-items: center;
  gap: 18px;
}

.quantity-control {
  position: relative;
  --quantity-progress: 9.09%;
  --quantity-thumb-size: 18px;
  --quantity-track-inset: calc(var(--quantity-thumb-size) / 2);
}

.quantity-control::after {
  content: "";
  position: absolute;
  z-index: 3;
  left: var(--quantity-track-inset);
  top: 15px;
  width: min(var(--quantity-progress), calc(100% - (var(--quantity-track-inset) * 2)));
  height: 4px;
  border-radius: 999px;
  background: #1397ff;
  box-shadow: 0 0 10px rgba(19, 151, 255, 0.58);
  pointer-events: none;
}

.quantity-control input[type="range"] {
  position: relative;
  z-index: 4;
  width: 100%;
  height: 34px;
  margin: 0;
  display: block;
  appearance: none;
  -webkit-appearance: none;
  background: transparent;
  cursor: pointer;
  user-select: none;
  touch-action: pan-x;
  -webkit-user-select: none;
}

.quantity-control input[type="range"]::-webkit-slider-runnable-track {
  height: 34px;
  background: transparent;
}

.quantity-control input[type="range"]::-moz-range-track {
  height: 34px;
  background: transparent;
  border: 0;
}

.quantity-control input[type="range"]::-webkit-slider-thumb {
  width: var(--quantity-thumb-size);
  height: var(--quantity-thumb-size);
  margin-top: calc((34px - var(--quantity-thumb-size)) / 2);
  -webkit-appearance: none;
  appearance: none;
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #1a96ff;
  box-shadow:
    0 0 0 2px rgba(1, 8, 14, 0.82),
    0 0 16px rgba(45, 168, 255, 0.84);
}

.quantity-control input[type="range"]::-moz-range-thumb {
  width: var(--quantity-thumb-size);
  height: var(--quantity-thumb-size);
  border: 3px solid #ffffff;
  border-radius: 999px;
  background: #1a96ff;
  box-shadow:
    0 0 0 2px rgba(1, 8, 14, 0.82),
    0 0 16px rgba(45, 168, 255, 0.84);
}

.quantity-control input[type="range"]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.86);
  outline-offset: 4px;
}

.quantity-slider-track {
  position: absolute;
  z-index: 1;
  left: var(--quantity-track-inset);
  right: var(--quantity-track-inset);
  top: 15px;
  height: 4px;
  border-radius: 999px;
  background: #777b80;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 0 8px rgba(255, 255, 255, 0.14);
  pointer-events: none;
}

.quantity-slider-dividers {
  position: absolute;
  z-index: 2;
  left: var(--quantity-track-inset);
  right: var(--quantity-track-inset);
  top: 0;
  height: 34px;
  pointer-events: none;
}

.quantity-slider-dividers span {
  position: absolute;
  left: var(--tick);
  top: 50%;
  width: 4px;
  height: 24px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: #d7d9dc;
  box-shadow:
    0 0 0 1px rgba(1, 8, 14, 0.84),
    0 0 8px rgba(255, 255, 255, 0.28);
}

.quantity-slider-dividers span.is-active {
  background: #1397ff;
  box-shadow:
    0 0 0 1px rgba(1, 8, 14, 0.82),
    0 0 12px rgba(19, 151, 255, 0.74);
}

.quantity-slider-dividers span:first-child {
  transform: translate(0, -50%);
}

.quantity-slider-dividers span:last-child {
  transform: translate(-100%, -50%);
}

.quantity-ticks {
  position: relative;
  min-height: 24px;
  margin-top: 8px;
  margin-inline: var(--quantity-track-inset);
  color: var(--text);
  font-size: clamp(13px, 0.9vw, 16px);
  font-weight: 800;
}

.quantity-ticks span {
  position: absolute;
  left: var(--tick);
  top: 0;
  transform: translateX(-50%);
  white-space: nowrap;
}

.quantity-ticks span:first-child {
  transform: translateX(0);
}

.quantity-ticks span:last-child {
  transform: translateX(-100%);
}

.quantity-display {
  min-height: 88px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 251, 255, 0.48);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.quantity-display strong {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: clamp(44px, 3.2vw, 62px);
  line-height: 0.82;
}

.quantity-display span {
  color: var(--text);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.discount-ladder {
  margin-top: 10px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.discount-ladder span {
  min-height: 44px;
  padding: 8px 10px;
  display: grid;
  align-content: center;
  border: 1px solid rgba(42, 182, 255, 0.24);
  border-radius: 5px;
  color: rgba(247, 251, 255, 0.86);
  background: rgba(3, 13, 22, 0.8);
  font-size: clamp(13px, 0.82vw, 16px);
  font-weight: 750;
}

.discount-ladder span.is-active {
  border-color: rgba(79, 244, 126, 0.6);
  color: #baffc7;
  background: rgba(28, 110, 55, 0.16);
}

.discount-ladder strong {
  color: inherit;
  font-weight: 900;
}

.bulk-message {
  display: none;
  margin: 12px 0 0;
  padding: 10px 14px;
  border: 1px solid rgba(79, 244, 126, 0.48);
  border-radius: 5px;
  color: #a9ffb8;
  background: rgba(28, 110, 55, 0.13);
  font-size: clamp(14px, 0.86vw, 17px);
  font-weight: 800;
}

.bulk-message.is-visible {
  display: inline-block;
}

.team-size-row {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  align-items: stretch;
  gap: 8px;
}

.team-size-button {
  min-height: 72px;
  border: 1px solid rgba(247, 251, 255, 0.24);
  border-radius: 6px;
  background: rgba(1, 8, 14, 0.72);
  color: var(--text);
  font: inherit;
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: border-color 180ms ease, background 180ms ease, color 180ms ease, transform 180ms ease;
}

.team-size-button:hover {
  transform: translateY(-1px);
  border-color: rgba(246, 185, 47, 0.74);
  background:
    linear-gradient(180deg, rgba(5, 28, 49, 0.9), rgba(2, 16, 32, 0.94));
  color: var(--gold-soft);
}

.team-size-button:disabled {
  cursor: not-allowed;
  opacity: 0.36;
  transform: none;
}

.team-size-display {
  min-height: 72px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 12px 16px;
  border: 1px solid rgba(247, 251, 255, 0.34);
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.025);
}

.team-size-display strong {
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: clamp(40px, 3vw, 58px);
  line-height: 0.86;
}

.team-size-display span {
  color: var(--text);
  font-size: clamp(13px, 0.82vw, 16px);
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.estimate-team-control {
  margin: clamp(14px, 1.4vw, 22px) 0 0;
  padding: 12px;
  border: 1px solid rgba(247, 251, 255, 0.18);
  border-radius: 6px;
  background: rgba(1, 8, 14, 0.42);
}

.estimate-team-control > span {
  display: block;
  margin: 0 0 8px;
  color: rgba(247, 251, 255, 0.78);
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.estimate-team-control .team-size-row {
  grid-template-columns: 42px minmax(0, 1fr) 42px;
  gap: 6px;
}

.estimate-team-control .team-size-button {
  min-height: 44px;
  font-size: 24px;
}

.estimate-team-control .team-size-display {
  min-height: 44px;
  grid-template-columns: minmax(0, 1fr);
  justify-items: center;
  padding: 8px 10px;
}

.estimate-team-control .team-size-display strong {
  font-size: clamp(28px, 2vw, 38px);
  line-height: 0.9;
}

.estimate-panel {
  isolation: isolate;
  padding: clamp(18px, 2vw, 32px);
  border-left: 1px solid rgba(247, 251, 255, 0.2);
  background: transparent;
}

.estimate-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  inset: clamp(-120px, -6vw, -72px) clamp(-130px, -7vw, -84px) clamp(-120px, -6vw, -72px) clamp(-110px, -6vw, -76px);
  background:
    radial-gradient(ellipse at 42% 22%, rgba(42, 182, 255, 0.22) 0%, rgba(18, 63, 104, 0.13) 32%, rgba(2, 14, 23, 0.08) 54%, transparent 76%),
    radial-gradient(ellipse at 58% 38%, rgba(2, 14, 23, 0.18) 0%, rgba(2, 14, 23, 0.1) 36%, transparent 72%);
  filter: blur(18px);
  pointer-events: none;
}

.estimate-total {
  display: block;
  margin: 8px 0 10px;
  color: var(--text);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: clamp(46px, 3.8vw, 74px);
  font-weight: 700;
  line-height: 0.92;
  letter-spacing: 0.025em;
  text-shadow: 0 0 24px rgba(255, 255, 255, 0.14);
}

.estimate-breakdown {
  margin: clamp(16px, 1.5vw, 24px) 0;
}

.estimate-breakdown div {
  display: grid;
  grid-template-columns: auto minmax(48px, 1fr) auto;
  align-items: end;
  gap: 12px;
  margin-bottom: 8px;
}

.estimate-breakdown div::before {
  content: "";
  grid-column: 2;
  height: 1px;
  background: rgba(247, 251, 255, 0.16);
}

.estimate-breakdown dt {
  grid-column: 1;
  color: rgba(247, 251, 255, 0.76);
  font-size: clamp(12px, 0.8vw, 15px);
  font-weight: 900;
}

.estimate-breakdown dd {
  grid-column: 3;
  margin: 0;
  color: var(--text);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 900;
  text-align: right;
}

.pricing-submit {
  display: flex;
  width: min(100%, 300px);
  margin: clamp(16px, 1.4vw, 24px) auto 0;
  min-height: 54px;
  justify-content: center;
  border-color: rgba(246, 185, 47, 0.88) !important;
  color: var(--gold-soft) !important;
}

.pricing-submit::after,
.pricing-final-cta .button::after {
  content: "\00a0\2197";
}

.pricing-disclaimer {
  margin-top: clamp(14px, 1.5vw, 24px);
  margin-bottom: clamp(22px, 2.2vw, 36px);
  min-height: clamp(64px, 4.7vw, 90px);
  padding: clamp(20px, 1.7vw, 30px) clamp(24px, 2vw, 38px);
  border: 0;
  border-radius: 12px;
  color: rgba(247, 251, 255, 0.78);
  background: url("media/content/block-i.png?v=20260504") center / calc(100% - clamp(10px, 0.75vw, 16px)) 100% no-repeat;
  font-size: clamp(14px, 0.92vw, 17px);
  font-weight: 600;
  line-height: 1.4;
}

.pricing-disclaimer a {
  position: relative;
  display: inline-block;
  color: var(--gold-soft);
  font-weight: 900;
  white-space: nowrap;
  text-shadow: 0 0 10px rgba(246, 185, 47, 0.26);
  transition: color 180ms ease, text-shadow 180ms ease, transform 180ms ease;
}

.pricing-disclaimer a > span:last-child {
  position: relative;
  z-index: 1;
}

.contact-snow {
  position: absolute;
  z-index: 0;
  inset: -22px -24px -14px;
  overflow: hidden;
  pointer-events: none;
}

.contact-snow i {
  position: absolute;
  left: var(--snow-x);
  bottom: -6px;
  width: var(--snow-size, 3px);
  height: var(--snow-size, 3px);
  border-radius: 999px;
  background: currentColor;
  box-shadow:
    0 0 10px currentColor,
    0 0 20px currentColor,
    0 0 34px currentColor;
  opacity: 0;
  transform: translate3d(0, 0, 0) scale(0.72);
  animation: contact-snow-rise var(--snow-speed, 1800ms) ease-in infinite;
  animation-delay: var(--snow-delay, 0ms);
}

.contact-snow i:nth-child(1) { --snow-x: 8%; --snow-size: 5px; --snow-speed: 1600ms; --snow-delay: -100ms; --snow-drift: -5px; }
.contact-snow i:nth-child(2) { --snow-x: 22%; --snow-size: 3px; --snow-speed: 1950ms; --snow-delay: -760ms; --snow-drift: 6px; }
.contact-snow i:nth-child(3) { --snow-x: 36%; --snow-size: 6px; --snow-speed: 1750ms; --snow-delay: -1280ms; --snow-drift: -7px; }
.contact-snow i:nth-child(4) { --snow-x: 48%; --snow-size: 3px; --snow-speed: 2100ms; --snow-delay: -420ms; --snow-drift: 4px; }
.contact-snow i:nth-child(5) { --snow-x: 61%; --snow-size: 5px; --snow-speed: 1650ms; --snow-delay: -980ms; --snow-drift: 8px; }
.contact-snow i:nth-child(6) { --snow-x: 74%; --snow-size: 3px; --snow-speed: 2050ms; --snow-delay: -1500ms; --snow-drift: -6px; }
.contact-snow i:nth-child(7) { --snow-x: 86%; --snow-size: 5px; --snow-speed: 1800ms; --snow-delay: -620ms; --snow-drift: 5px; }
.contact-snow i:nth-child(8) { --snow-x: 95%; --snow-size: 3px; --snow-speed: 2200ms; --snow-delay: -1780ms; --snow-drift: -4px; }
.contact-snow i:nth-child(9) { --snow-x: 15%; --snow-size: 3px; --snow-speed: 1820ms; --snow-delay: -1340ms; --snow-drift: 7px; }
.contact-snow i:nth-child(10) { --snow-x: 31%; --snow-size: 4px; --snow-speed: 1680ms; --snow-delay: -360ms; --snow-drift: -6px; }
.contact-snow i:nth-child(11) { --snow-x: 42%; --snow-size: 3px; --snow-speed: 2140ms; --snow-delay: -1080ms; --snow-drift: 5px; }
.contact-snow i:nth-child(12) { --snow-x: 54%; --snow-size: 5px; --snow-speed: 1880ms; --snow-delay: -1660ms; --snow-drift: -8px; }
.contact-snow i:nth-child(13) { --snow-x: 68%; --snow-size: 3px; --snow-speed: 1740ms; --snow-delay: -240ms; --snow-drift: 6px; }
.contact-snow i:nth-child(14) { --snow-x: 81%; --snow-size: 4px; --snow-speed: 2040ms; --snow-delay: -920ms; --snow-drift: -5px; }
.contact-snow i:nth-child(15) { --snow-x: 90%; --snow-size: 2px; --snow-speed: 1560ms; --snow-delay: -1460ms; --snow-drift: 4px; }
.contact-snow i:nth-child(16) { --snow-x: 6%; --snow-size: 4px; --snow-speed: 1980ms; --snow-delay: -560ms; --snow-drift: -4px; }

.pricing-disclaimer a:hover .contact-snow i,
.pricing-disclaimer a:focus-visible .contact-snow i {
  animation-duration: calc(var(--snow-speed, 1800ms) * 0.42);
}

.pricing-disclaimer a:hover,
.pricing-disclaimer a:focus-visible {
  color: #fff4be;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.72),
    0 0 18px rgba(246, 185, 47, 0.9),
    0 0 30px rgba(42, 182, 255, 0.42);
  transform: translateY(-1px);
  animation: pricing-disclaimer-link-glow 700ms ease-in-out infinite alternate;
}

.has-button-snow {
  position: relative;
  overflow: hidden;
  isolation: isolate;
}

.has-button-snow > :not(.contact-snow) {
  position: relative;
  z-index: 1;
}

.button.ghost.has-button-snow,
.button.primary.has-button-snow,
.view-all-link.has-button-snow,
.filter-button.has-button-snow,
.pricing-choice.has-button-snow,
.quantity-button.has-button-snow,
.team-size-button.has-button-snow,
.pricing-submit.has-button-snow,
.contact-submit.has-button-snow {
  --button-snow-color: currentColor;
}

.contact-link.has-button-snow,
.team-linkedin.has-button-snow {
  --button-snow-color: #2ab6ff;
}

.has-button-snow > .button-snow {
  color: var(--button-snow-color, currentColor);
  top: 50%;
  right: 10%;
  bottom: auto;
  left: 10%;
  height: 2.8em;
  transform: translateY(-50%);
  z-index: 0;
  opacity: var(--button-snow-opacity, 0.94);
}

.pricing-choice.has-button-snow > .button-snow {
  top: auto;
  right: 12%;
  bottom: clamp(7px, 0.7vw, 12px);
  left: 12%;
  height: clamp(42px, 3.3vw, 58px);
  transform: none;
  inset-block-start: auto;
}

.pricing-choice.has-button-snow,
.tier-segments button.has-button-snow {
  --button-snow-color: rgba(150, 156, 162, 0.84);
  --button-snow-opacity: 0.47;
}

.pricing-choice.has-button-snow:hover,
.pricing-choice.has-button-snow:focus-visible,
.pricing-choice.has-button-snow.is-selected,
.tier-segments button.has-button-snow:hover,
.tier-segments button.has-button-snow:focus-visible,
.tier-segments button.has-button-snow.is-selected {
  --button-snow-color: var(--text);
  --button-snow-opacity: 1;
}

.tier-segments button.has-button-snow > .button-snow {
  top: auto;
  right: 16%;
  bottom: clamp(5px, 0.6vw, 10px);
  left: 16%;
  height: clamp(32px, 2.4vw, 44px);
  transform: none;
}

.contact-link.has-button-snow > .button-snow {
  right: 4%;
  left: clamp(48px, 3.7vw, 68px);
  height: 2.6em;
}

.team-linkedin.has-button-snow > .button-snow,
.lightbox-close.has-button-snow > .button-snow,
.lightbox-nav.has-button-snow > .button-snow,
.quantity-button.has-button-snow > .button-snow,
.team-size-button.has-button-snow > .button-snow {
  inset: -8px;
  height: auto;
  transform: none;
}

.has-button-snow:hover > .button-snow,
.has-button-snow:focus-visible > .button-snow,
.has-button-snow.is-selected > .button-snow {
  opacity: 1;
}

.has-button-snow:hover > .button-snow i,
.has-button-snow:focus-visible > .button-snow i,
.has-button-snow.is-selected > .button-snow i {
  animation-duration: calc(var(--snow-speed, 1800ms) * 0.42);
}

.team-linkedin.has-button-snow {
  overflow: visible;
}

.header-cta.has-button-snow {
  --button-snow-color: currentColor;
  overflow: hidden;
}

.lightbox .lightbox-nav.has-button-snow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.lightbox .lightbox-nav.has-button-snow:hover,
.lightbox .lightbox-nav.has-button-snow:focus-visible {
  transform: translateY(-50%) scale(1.04);
}

.lightbox .lightbox-prev.has-button-snow {
  left: clamp(12px, 2.4vw, 42px);
}

.lightbox .lightbox-next.has-button-snow {
  right: clamp(12px, 2.4vw, 42px);
}

.lightbox .lightbox-close.has-button-snow {
  position: absolute;
  top: 20px;
  right: 20px;
}

@keyframes contact-snow-rise {
  0% {
    opacity: 0;
    transform: translate3d(0, 0, 0) scale(0.55);
  }

  18%,
  74% {
    opacity: 1;
  }

  100% {
    opacity: 0;
    transform: translate3d(var(--snow-drift, 6px), -42px, 0) scale(1.08);
  }
}

@keyframes pricing-disclaimer-link-glow {
  from {
    filter: brightness(1);
  }

  to {
    filter: brightness(1.28);
  }
}

.pricing-info-grid {
  margin-top: clamp(30px, 3vw, 52px);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.pricing-info-grid h2 {
  grid-column: 1 / -1;
  margin-bottom: 4px;
  font-size: clamp(34px, 3vw, 62px);
}

.pricing-info-grid article,
.pricing-asset-list,
.pricing-example-card,
.pricing-final-cta {
  border: 1px solid rgba(42, 182, 255, 0.2);
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.024), rgba(255, 255, 255, 0.006)),
    rgba(2, 9, 15, 0.82);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.025),
    inset 0 -1px 0 rgba(40, 160, 210, 0.08);
}

.pricing-info-grid article {
  aspect-ratio: 2074 / 621;
  min-height: 0;
  padding: clamp(18px, 1.45vw, 28px) clamp(26px, 2.2vw, 42px);
  display: grid;
  grid-template-columns: clamp(62px, 4.4vw, 86px) minmax(0, 1fr);
  align-items: center;
  gap: clamp(14px, 1.25vw, 24px);
  border: 0;
  border-radius: 0;
  background: url("media/content/block-q.png.webp?v=20260505-optimized-assets") center / calc(100% - clamp(10px, 0.75vw, 16px)) 100% no-repeat;
  box-shadow: none;
}

.pricing-info-grid article:nth-of-type(n + 2) > .pricing-tier-card-mark,
.pricing-info-grid article:nth-of-type(n + 2) > .pricing-tier-copy {
  transform: translateY(clamp(6px, 0.55vw, 12px));
}

.pricing-tier-mark,
.pricing-tier-card-mark {
  position: relative;
  display: grid;
  place-items: center;
  inline-size: 72px;
  block-size: 84px;
}

.pricing-tier-card-mark {
  inline-size: clamp(58px, 4.2vw, 82px);
  block-size: clamp(64px, 4.8vw, 94px);
}

.pricing-tier-symbol {
  display: block;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.pricing-tier-symbol {
  width: 100%;
  height: 100%;
  filter: drop-shadow(0 0 18px rgba(255, 255, 255, 0.12));
}

.tier-segments button .pricing-tier-symbol {
  opacity: 0.62;
  filter:
    grayscale(1)
    brightness(0.72)
    contrast(0.9)
    drop-shadow(0 0 8px rgba(247, 251, 255, 0.08));
  transition: opacity 180ms ease, filter 180ms ease;
}

.tier-segments button:hover .pricing-tier-symbol,
.tier-segments button:focus-visible .pricing-tier-symbol,
.tier-segments button.is-selected .pricing-tier-symbol {
  opacity: 1;
  filter:
    brightness(0)
    invert(1)
    drop-shadow(0 0 10px rgba(247, 251, 255, 0.24));
}

.tier-segments button .pricing-indie-ray,
.tier-segments button .pricing-crown-sparkle {
  background: rgba(150, 156, 162, 0.84);
  box-shadow: 0 0 8px rgba(150, 156, 162, 0.24);
}

.tier-segments button .pricing-star-tail {
  background: linear-gradient(180deg, rgba(150, 156, 162, 0.9), rgba(150, 156, 162, 0.62) 34%, rgba(150, 156, 162, 0));
  filter: drop-shadow(0 0 8px rgba(150, 156, 162, 0.16));
}

.tier-segments button:hover .pricing-indie-ray,
.tier-segments button:focus-visible .pricing-indie-ray,
.tier-segments button.is-selected .pricing-indie-ray,
.tier-segments button:hover .pricing-crown-sparkle,
.tier-segments button:focus-visible .pricing-crown-sparkle,
.tier-segments button.is-selected .pricing-crown-sparkle {
  background: #fff;
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.62);
}

.tier-segments button:hover .pricing-star-tail,
.tier-segments button:focus-visible .pricing-star-tail,
.tier-segments button.is-selected .pricing-star-tail {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0));
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
}

.pricing-tier-mark-indie {
  overflow: visible;
}

.pricing-tier-symbol-indie {
  position: absolute;
  inset: 0;
  z-index: 2;
  animation-duration: 1650ms;
  animation-timing-function: ease-in-out;
  animation-iteration-count: infinite;
}

.pricing-tier-symbol-indie-left {
  animation-name: pricingIndieLeftFive;
}

.pricing-tier-symbol-indie-right {
  animation-name: pricingIndieRightFive;
}

.pricing-indie-ray {
  position: absolute;
  z-index: 3;
  top: 9%;
  left: 50%;
  width: 4px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 0 8px rgba(255, 255, 255, 0.34);
  opacity: 0.2;
  transform-origin: 50% 100%;
  animation: pricingIndieRay 1650ms ease-out infinite;
}

.pricing-indie-ray-left {
  margin-left: -13%;
  transform: translate(-50%, 0) rotate(-34deg) scaleY(0.55);
  animation-delay: -60ms;
}

.pricing-indie-ray-center {
  top: 3%;
  transform: translate(-50%, 0) scaleY(0.55);
}

.pricing-indie-ray-right {
  margin-left: 13%;
  transform: translate(-50%, 0) rotate(34deg) scaleY(0.55);
  animation-delay: -120ms;
}

.pricing-tier-mark-aa {
  overflow: hidden;
}

.pricing-tier-mark-aa .pricing-tier-symbol {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 50%;
  width: 100%;
  height: auto;
  transform: translateX(-50%);
  animation: pricingStarFlight 1800ms ease-in-out infinite;
}

.pricing-star-tail {
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 62%;
  width: 5px;
  height: 34%;
  border-radius: 999px 999px 0 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.72) 34%, rgba(255, 255, 255, 0));
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.2));
  opacity: 0.72;
  transform: translateX(-50%) translateY(0) scaleY(1);
  transform-origin: 50% 0;
  animation: pricingStarTail 1100ms ease-in-out infinite;
}

.pricing-star-tail-left {
  margin-left: -21%;
  height: 30%;
  animation-delay: -180ms;
}

.pricing-star-tail-center {
  margin-left: 0;
  width: 6px;
  height: 42%;
  animation-delay: -40ms;
}

.pricing-star-tail-right {
  margin-left: 21%;
  height: 30%;
  animation-delay: -320ms;
}

.pricing-tier-mark-aaa {
  overflow: visible;
}

.pricing-tier-mark-aaa .pricing-tier-symbol {
  position: relative;
  z-index: 2;
}

.pricing-crown-sparkle {
  position: absolute;
  z-index: 3;
  top: 8%;
  left: 50%;
  inline-size: 6px;
  block-size: 6px;
  border-radius: 50%;
  background: #fff;
  box-shadow: 0 0 9px rgba(255, 255, 255, 0.62);
  opacity: 0.2;
  transform: translate(-50%, 0) scale(0.55);
  animation: pricingCrownSparkle 1500ms ease-in-out infinite;
}

.pricing-crown-sparkle::before,
.pricing-crown-sparkle::after {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 999px;
  transform: translate(-50%, -50%);
}

.pricing-crown-sparkle::before {
  inline-size: 2px;
  block-size: 13px;
}

.pricing-crown-sparkle::after {
  inline-size: 13px;
  block-size: 2px;
}

.pricing-crown-sparkle-left {
  top: 18%;
  margin-left: -23%;
  animation-delay: -260ms;
}

.pricing-crown-sparkle-center {
  top: 3%;
  inline-size: 7px;
  block-size: 7px;
  animation-delay: -40ms;
}

.pricing-crown-sparkle-right {
  top: 18%;
  margin-left: 23%;
  animation-delay: -560ms;
}

.pricing-info-grid h3,
.pricing-example-card h3 {
  margin-bottom: 0;
  color: var(--text);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: clamp(24px, 1.6vw, 34px);
  line-height: 1;
  text-transform: uppercase;
}

.pricing-tier-copy {
  padding-top: 1px;
}

.pricing-tier-copy h3 {
  margin-bottom: clamp(8px, 0.7vw, 12px);
  font-size: clamp(20px, 1.2vw, 28px);
  line-height: 0.95;
  letter-spacing: 0.08em;
}

.pricing-tier-copy ul {
  margin: 0;
  padding-left: 15px;
  color: rgba(247, 251, 255, 0.8);
  font-size: clamp(12px, 0.78vw, 15px);
  font-weight: 700;
  line-height: 1.18;
}

.pricing-tier-copy li::marker {
  color: var(--cyan-2);
  font-size: 0.72em;
}

@keyframes pricingStarFlight {
  0%,
  100% {
    transform: translateX(-50%) translateY(3%);
  }

  48% {
    transform: translateX(-50%) translateY(-8%);
  }
}

@keyframes pricingIndieLeftFive {
  0%,
  100% {
    transform: translateX(-2.6%) rotate(-0.35deg);
  }

  42% {
    transform: translateX(0) rotate(0deg);
  }

  52% {
    transform: translateX(-0.55%) rotate(-0.16deg);
  }
}

@keyframes pricingIndieRightFive {
  0%,
  100% {
    transform: translateX(2.6%) rotate(0.35deg);
  }

  42% {
    transform: translateX(0) rotate(0deg);
  }

  52% {
    transform: translateX(0.55%) rotate(0.16deg);
  }
}

@keyframes pricingIndieRay {
  0%,
  100% {
    opacity: 0.12;
    translate: 0 4px;
    scale: 0.72 0.42;
  }

  40% {
    opacity: 0.72;
    translate: 0 -4px;
    scale: 0.9 0.95;
  }

  56% {
    opacity: 0.24;
    translate: 0 -1px;
    scale: 0.78 0.68;
  }
}

@keyframes pricingStarTail {
  0%,
  100% {
    opacity: 0.22;
    transform: translateX(-50%) translateY(12%) scaleY(0.62);
  }

  42% {
    opacity: 0.9;
    transform: translateX(-50%) translateY(-4%) scaleY(1.18);
  }

  72% {
    opacity: 0.44;
    transform: translateX(-50%) translateY(6%) scaleY(0.9);
  }
}

@keyframes pricingCrownSparkle {
  0%,
  100% {
    opacity: 0.18;
    transform: translate(-50%, 5px) scale(0.45) rotate(0deg);
  }

  42% {
    opacity: 0.95;
    transform: translate(-50%, -3px) scale(1) rotate(45deg);
  }

  70% {
    opacity: 0.44;
    transform: translate(-50%, 0) scale(0.72) rotate(70deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .pricing-tier-symbol-indie,
  .pricing-indie-ray,
  .pricing-tier-mark-aa .pricing-tier-symbol,
  .pricing-star-tail,
  .pricing-crown-sparkle {
    animation: none;
  }
}

.pricing-info-grid p,
.pricing-asset-list-heading p,
.pricing-example-card p,
.pricing-final-cta p {
  margin: 0;
  color: rgba(247, 251, 255, 0.76);
  font-size: clamp(15px, 0.95vw, 18px);
  font-weight: 600;
  line-height: 1.42;
}

.pricing-asset-list {
  margin-top: clamp(24px, 2.8vw, 44px);
  min-height: clamp(650px, 49vw, 930px);
  padding: clamp(58px, 5.4vw, 110px) clamp(62px, 6vw, 126px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  border: 0;
  border-radius: 0;
  background: url("media/content/block-c.png?v=20260505-estimation-per-asset") center / 100% 100% no-repeat;
  box-shadow: none;
}

.pricing-asset-list-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  align-items: end;
  gap: clamp(18px, 2.4vw, 40px);
  margin-bottom: clamp(18px, 2vw, 32px);
}

.pricing-asset-list-heading h2 {
  margin: 0;
  font-size: clamp(34px, 3vw, 62px);
  line-height: 0.92;
}

.pricing-asset-list-heading p {
  max-width: 520px;
}

.pricing-asset-table-wrap {
  width: 100%;
  overflow-x: auto;
}

.pricing-asset-table {
  width: 100%;
  min-width: 920px;
  border-collapse: collapse;
}

.pricing-asset-table th,
.pricing-asset-table td {
  padding: clamp(14px, 1.1vw, 22px) clamp(14px, 1.3vw, 26px);
  text-align: left;
  border-bottom: 1px solid rgba(87, 173, 255, 0.18);
  vertical-align: top;
}

.pricing-asset-table thead th {
  color: var(--gold-soft);
  font-size: clamp(12px, 0.78vw, 14px);
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.pricing-asset-table tbody th {
  color: var(--text);
  font-size: clamp(16px, 1vw, 20px);
  font-weight: 900;
}

.pricing-asset-table tbody tr {
  background: linear-gradient(90deg, rgba(52, 155, 255, 0.055), rgba(52, 155, 255, 0.018), transparent);
}

.pricing-asset-table strong {
  display: block;
  color: var(--text);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: clamp(22px, 1.45vw, 30px);
  line-height: 1;
  white-space: nowrap;
}

.pricing-asset-table span {
  display: block;
  margin-top: 5px;
  color: rgba(247, 251, 255, 0.62);
  font-size: clamp(12px, 0.82vw, 15px);
  font-weight: 700;
  line-height: 1.2;
}

.pricing-asset-table tr:last-child th,
.pricing-asset-table tr:last-child td {
  border-bottom: 0;
}

.pricing-examples {
  margin-top: clamp(30px, 3vw, 52px);
}

.pricing-examples h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 3vw, 62px);
}

.pricing-example-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  width: calc(100% - clamp(10px, 0.75vw, 16px));
  margin-left: auto;
  margin-right: auto;
  gap: clamp(10px, 1vw, 18px);
}

.pricing-example-card {
  aspect-ratio: 1284 / 680;
  min-height: 0;
  display: grid;
  grid-template-rows: 34px 76px 40px 24px;
  align-content: center;
  align-items: start;
  row-gap: clamp(2px, 0.26vw, 5px);
  padding: clamp(15px, 1.8vw, 39px) clamp(30px, 2.8vw, 54px) clamp(53px, 4.05vw, 75px);
  border: 0;
  border-radius: 0;
  background: url("media/content/block-csp.png?v=20260504-pricing-block-csp") center / 100% 100% no-repeat;
  box-shadow: none;
}

.pricing-example-card h3 {
  align-self: start;
  margin: 0;
  max-width: none;
  font-size: clamp(21px, 1.35vw, 29px);
  line-height: 0.98;
  transform: translateY(clamp(20px, 1.45vw, 27px));
}

.pricing-example-card strong {
  display: block;
  margin: 0;
  color: var(--text);
  font-family: "RajdhaniHero", "EurostileExtendedBlack", sans-serif;
  font-size: clamp(28px, 2vw, 42px);
  line-height: 1;
  align-self: start;
}

.pricing-example-card span {
  display: block;
  align-self: center;
  color: var(--gold-soft);
  font-size: clamp(11px, 0.72vw, 13px);
  font-weight: 900;
  line-height: 1.2;
  transform: translateY(clamp(20px, 1.45vw, 27px));
}

.pricing-example-card p {
  align-self: start;
}

.pricing-final-cta {
  margin-top: clamp(30px, 3vw, 52px);
  aspect-ratio: 2157 / 370;
  min-height: 0;
  padding: clamp(34px, 3.1vw, 58px) clamp(58px, 5.2vw, 112px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: clamp(24px, 4vw, 76px);
  border: 0;
  border-radius: 0;
  background: url("media/content/block-p-pricing.png?v=20260504-block-p-width-align") center / 101.8% auto no-repeat;
  box-shadow: none;
}

.pricing-final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(36px, 3.6vw, 70px);
  line-height: 0.9;
}

@media (max-width: 1180px) {
  .pricing-rates,
  .pricing-info-grid,
  .pricing-example-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .pricing-rates {
    aspect-ratio: auto;
    max-height: none;
    background-size: 100% 100%;
  }

  .pricing-rates article:nth-child(2)::after {
    content: none;
  }

  .pricing-rates article:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(150, 205, 255, 0.36), transparent);
  }

  .pricing-calculator,
  .pricing-final-cta {
    grid-template-columns: 1fr;
  }

  .estimate-panel {
    border-left: 0;
    border-top: 1px solid rgba(247, 251, 255, 0.2);
  }
}

@media (max-width: 760px) {
  .pricing-hero,
  .pricing-rates,
  .pricing-rate-note,
  .pricing-calculator,
  .pricing-disclaimer,
  .pricing-asset-list,
  .pricing-info-grid,
  .pricing-examples,
  .pricing-final-cta {
    width: calc(100% - 24px);
  }

  .pricing-hero {
    min-height: 0;
    padding-top: 108px;
    background: none;
  }

  .pricing-rates,
  .pricing-info-grid,
  .pricing-example-grid,
  .discount-ladder {
    grid-template-columns: 1fr;
  }

  .asset-card-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tier-segments {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .tier-segments button {
    min-height: 112px;
    grid-template-rows: 70px auto;
    padding: 10px 6px;
    font-size: 13px;
  }

  .pricing-tier-mark {
    inline-size: 58px;
    block-size: 70px;
  }

  .pricing-rates article,
  .pricing-rates article:nth-child(2) {
    border-right: 0;
  }

  .pricing-rates article::after,
  .pricing-rates article:nth-child(2)::after {
    content: none;
  }

  .pricing-rates article:not(:last-child)::before,
  .pricing-rates article:nth-child(-n + 2)::before {
    content: "";
    position: absolute;
    left: 10%;
    right: 10%;
    bottom: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(150, 205, 255, 0.36), transparent);
  }

  .pricing-rates article:last-child::before {
    content: none;
  }

  .pricing-calculator {
    padding: 42px 24px;
  }

  .pricing-calculator::before {
    border-width: 34px;
    border-image-slice: 58 fill;
  }

  .pricing-asset-list {
    min-height: 0;
    padding: 42px 26px;
    background-size: 100% 100%;
  }

  .pricing-asset-list-heading {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .pricing-asset-table {
    min-width: 0;
  }

  .pricing-asset-table thead {
    display: none;
  }

  .pricing-asset-table,
  .pricing-asset-table tbody,
  .pricing-asset-table tr,
  .pricing-asset-table th,
  .pricing-asset-table td {
    display: block;
  }

  .pricing-asset-table tr {
    padding: 14px 0;
    border-bottom: 1px solid rgba(150, 205, 255, 0.18);
    background: transparent;
  }

  .pricing-asset-table tr:last-child {
    border-bottom: 0;
  }

  .pricing-asset-table th,
  .pricing-asset-table td,
  .pricing-asset-table tr:last-child th,
  .pricing-asset-table tr:last-child td {
    padding: 9px 0;
    border-bottom: 0;
  }

  .pricing-asset-table td {
    display: grid;
    grid-template-columns: minmax(96px, 0.42fr) minmax(0, 1fr);
    gap: 10px;
    align-items: start;
  }

  .pricing-asset-table td::before {
    content: attr(data-label);
    color: var(--gold-soft);
    font-size: 12px;
    font-weight: 900;
    text-transform: uppercase;
  }

  .quantity-row {
    grid-template-columns: 1fr;
  }

  .quantity-display {
    min-height: 96px;
  }

  .estimate-breakdown div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .estimate-breakdown div::before {
    content: none;
  }

  .estimate-breakdown dd {
    grid-column: 1;
    text-align: left;
  }
}

/* Premium stats icon hover. */
.studio-stats img {
  transform-origin: 50% 50%;
  transition: filter 180ms ease, transform 180ms ease;
  will-change: transform;
}

.studio-stats .stat-item:hover img {
  animation: stat-icon-energize 520ms cubic-bezier(0.2, 0.9, 0.2, 1) both;
  filter:
    brightness(1.28)
    saturate(1.08)
    drop-shadow(0 0 20px rgba(42, 182, 255, 0.58))
    drop-shadow(0 0 9px rgba(247, 251, 255, 0.3));
}

@keyframes stat-icon-energize {
  0% {
    transform: translateY(0) scale(1);
    opacity: 0.96;
  }

  34% {
    transform: translateY(-5px) scale(1.1);
    opacity: 1;
  }

  62% {
    transform: translateY(-2px) scale(1.04);
  }

  100% {
    transform: translateY(-3px) scale(1.06);
    opacity: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  .studio-stats .stat-item:hover img {
    animation: none;
    transform: scale(1.06);
  }
}

/* Strong service-card icon hover. */
.hero-service-card {
  overflow: hidden;
}

.hero-service-card::before {
  content: "";
  display: block;
  position: absolute;
  left: clamp(16px, 1.2vw, 24px);
  top: 50%;
  width: clamp(72px, 4.8vw, 96px);
  aspect-ratio: 1;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(247, 251, 255, 0.34), rgba(42, 182, 255, 0.2) 34%, transparent 68%);
  opacity: 0;
  transform: translateY(-50%) scale(0.74);
  filter: blur(7px);
  pointer-events: none;
  transition: opacity 220ms ease, transform 220ms ease;
}

.hero-service-card img {
  transform-origin: 50% 50%;
  transition: none;
  will-change: transform;
}

.hero-service-card:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1.08);
}

.hero-service-card:hover img {
  transform: scale(1.12);
  filter: brightness(0) invert(1);
}

@keyframes service-icon-power {
  0% {
    transform: translateY(0) scale(1) rotate(0deg);
  }

  26% {
    transform: translateY(-7px) scale(1.16) rotate(-2deg);
  }

  42% {
    transform: translateY(2px) scale(0.98) rotate(1deg);
  }

  62% {
    transform: translateY(-3px) scale(1.08) rotate(0deg);
  }

  100% {
    transform: translateY(0) scale(1.04) rotate(0deg);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-service-card:hover img {
    animation: none;
    transform: scale(1.06);
  }
}

/* Premium review refinements. */
.projects-section .project-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(14px, 1.1vw, 22px);
}

.projects-section .project-card {
  border-color: rgba(255, 255, 255, 0.12);
}

.testimonials-section h2 {
  font-size: clamp(38px, 4.8vw, 82px);
  margin-bottom: clamp(12px, 1.25vw, 22px);
  white-space: normal;
}

.testimonials-heading {
  margin-bottom: clamp(24px, 2.7vw, 42px);
}

.testimonial-heading-rule {
  margin-bottom: clamp(16px, 1.55vw, 26px);
  transform: translateY(clamp(-22px, -1.1vw, -14px));
}

.testimonial-subtitle {
  margin: 0;
  transform: translateY(4mm);
}

.testimonial-grid {
  width: min(100%, 1560px);
  gap: clamp(16px, 1.8vw, 28px);
}

.testimonial-card {
  grid-template-rows: auto;
  align-content: start;
  min-height: clamp(300px, 19vw, 380px);
  padding: clamp(28px, 2.2vw, 40px) clamp(28px, 2.4vw, 44px);
}

.testimonial-content {
  grid-template-rows: auto auto auto;
  align-content: start;
  height: auto;
  min-height: 100%;
}

.testimonial-card .testimonial-copy::before {
  margin-bottom: clamp(8px, 0.8vw, 14px);
  font-size: clamp(48px, 3.5vw, 66px);
}

.testimonial-copy p {
  font-size: clamp(16px, 1.05vw, 20px);
  font-weight: 650;
  line-height: 1.36;
}

.testimonial-divider {
  height: 14px;
  margin: clamp(16px, 1.4vw, 24px) 0 clamp(14px, 1.2vw, 22px);
}

.testimonial-person {
  gap: clamp(12px, 1vw, 18px);
}

.testimonial-avatar {
  width: clamp(56px, 3.9vw, 72px);
  height: clamp(56px, 3.9vw, 72px);
}

.testimonial-person strong {
  font-size: clamp(16px, 1.15vw, 22px);
  line-height: 1.05;
}

.testimonial-person span {
  margin-top: 6px;
  font-size: clamp(11px, 0.78vw, 14px);
  line-height: 1.18;
}

.testimonial-person em {
  margin-top: 7px;
  font-size: clamp(11px, 0.76vw, 13px);
  line-height: 1.2;
}

.contact-message-arrow {
  display: none;
}

@media (max-width: 1180px) {
  .projects-section .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-grid {
    grid-template-columns: 1fr;
    width: min(100%, 760px);
  }
}

@media (max-width: 760px) {
  .projects-section .project-grid {
    grid-template-columns: 1fr;
  }
}

/* Review placement: core services live between hero stats and Featured Work. */
.core-services-section {
  width: var(--content-wide);
  margin: clamp(-48px, -2.55vw, -32px) auto clamp(10px, 1vw, 18px);
  box-sizing: border-box;
}

.core-services-section .services-after-proof {
  margin-top: 0;
}

.core-services-section + .projects-section {
  margin-top: 0;
  padding-top: 0;
}

#projects {
  scroll-margin-top: clamp(82px, 5.6vw, 112px);
}

#team {
  scroll-margin-top: clamp(54px, 3.8vw, 72px);
}

.clients-team-section .clients-showcase {
  transform: translateY(clamp(-19px, -1vw, -9px));
  margin-bottom: clamp(-19px, -1vw, -9px);
}

.clients-team-section {
  overflow: visible;
  border-top: 0;
}

.clients-team-section .clients-showcase > .section-kicker {
  display: none;
}

.clients-team-section .clients-showcase h2 {
  line-height: 0.82;
}

.clients-team-section .clients-showcase > p {
  margin: clamp(4px, 0.35vw, 7px) 0 clamp(2px, 0.25vw, 5px);
  line-height: 1.25;
}

.clients-team-section .client-showcase-bar {
  --client-frame-pad-y: clamp(6px, 0.62vw, 12px);
  margin-top: clamp(2px, 0.25vw, 5px);
}

.clients-team-section .team-heading {
  transform: translateY(-57px);
  margin-bottom: clamp(-34px, -1.8vw, -22px);
}

.clients-team-section .team-grid {
  transform: translateY(-95px);
  margin-bottom: -48px;
}

.clients-team-section {
  padding-bottom: clamp(22px, 1.8vw, 34px);
}

.testimonials-section {
  margin-top: clamp(4px, 0.8vw, 14px);
  padding-top: clamp(12px, 1.1vw, 22px);
}

.testimonials-heading {
  margin-bottom: clamp(12px, 1.4vw, 24px);
}

.testimonial-heading-rule {
  margin-bottom: clamp(8px, 0.85vw, 16px);
}

.contact-section {
  margin-top: clamp(-22px, -1.5vw, -12px);
  padding-top: clamp(42px, 3.6vw, 70px);
}

@media (max-width: 900px) {
  .core-services-section {
    padding-inline: 0;
  }

  .clients-team-section .clients-showcase {
    transform: translateY(6px);
    margin-bottom: 6px;
  }

  .clients-team-section .team-heading {
    transform: translateY(-34px);
    margin-bottom: -18px;
  }

  .clients-team-section .team-grid {
    transform: translateY(-52px);
    margin-bottom: -22px;
  }

  .testimonials-section {
    margin-top: 8px;
    padding-top: 12px;
  }

  .contact-section {
    margin-top: -8px;
    padding-top: 36px;
  }
}

.studio-stats .stat-copy .stat-title {
  max-width: none;
  font-size: clamp(17px, 1.2vw, 24px);
  line-height: 1.04;
  letter-spacing: 0.02em;
  white-space: nowrap;
  text-wrap: balance;
}

.studio-stats .stat-copy span {
  max-width: 25ch;
  line-height: 1.22;
  letter-spacing: 0.055em;
  text-wrap: balance;
}

@media (min-width: 1051px) {
  .studio-stats {
    width: calc(100% + clamp(18px, 1.25vw, 28px));
    margin-left: calc(clamp(18px, 1.25vw, 28px) / -2);
    margin-right: calc(clamp(18px, 1.25vw, 28px) / -2);
    padding-inline: clamp(34px, 4.4vw, 88px);
  }

  .core-services-section .hero-services {
    width: calc(100% + clamp(8px, 0.47vw, 12px));
    margin-left: calc(clamp(8px, 0.47vw, 12px) / -2);
    margin-right: calc(clamp(8px, 0.47vw, 12px) / -2);
  }

  .studio-stats .stat-item {
    justify-content: flex-start;
    gap: clamp(14px, 1.2vw, 24px);
  }
}

@media (min-width: 1280px) {
  .studio-stats img {
    width: clamp(78px, 4.2vw, 96px);
    height: clamp(78px, 4.2vw, 96px);
  }
}

/* Review alignment: keep core service titles on the same vertical row. */
@media (min-width: 981px) {
  .core-services-section .hero-service-card {
    grid-template-columns: clamp(58px, 3.8vw, 76px) minmax(0, 1fr);
    grid-template-rows: auto 1fr;
    align-content: start;
    align-items: start;
    padding-top: clamp(26px, 1.7vw, 34px);
  }

  .core-services-section .hero-service-card img {
    align-self: center;
  }

  .core-services-section .hero-service-card h2 {
    align-self: start;
    max-width: none;
    margin: 0;
    font-size: clamp(24px, 1.55vw, 32px);
    line-height: 0.9;
  }

  .core-services-section .hero-service-card:first-child h2 {
    white-space: nowrap;
  }

  .core-services-section .hero-service-card ul {
    align-self: start;
    margin-top: 2px;
  }
}

/* Subtle glow over each client logo in the running line. */
.clients-team-section .client-logo {
  isolation: isolate;
}

.clients-team-section .client-logo::after {
  content: "";
  position: absolute;
  inset: 10% 4%;
  z-index: -1;
  border-radius: 999px;
  background:
    radial-gradient(ellipse at 50% 50%, rgba(64, 184, 255, 0.44), rgba(64, 184, 255, 0.18) 42%, transparent 76%);
  opacity: 0;
  filter: blur(18px);
  transform: scale(0.86);
  transition: opacity 180ms ease, transform 180ms ease;
  pointer-events: none;
}

.clients-team-section .client-logo img {
  filter:
    grayscale(1)
    brightness(2.85)
    contrast(1.02);
  opacity: 0.92;
  transition: filter 180ms ease, opacity 180ms ease, transform 180ms ease;
}

.clients-team-section .client-logo:hover::after {
  opacity: 0.78;
  transform: scale(1.08);
}

.clients-team-section .client-logo:hover img {
  filter:
    grayscale(1)
    brightness(3.32)
    contrast(1.08)
    drop-shadow(0 0 18px rgba(42, 182, 255, 0.48))
    drop-shadow(0 0 6px rgba(247, 251, 255, 0.42));
  opacity: 0.98;
  transform: translateY(-2px) scale(1.03);
}

.cursor-sparkle-layer {
  position: fixed;
  inset: 0;
  z-index: 2147483647;
  overflow: hidden;
  pointer-events: none;
}

.cursor-sparkle {
  position: absolute;
  left: 0;
  top: 0;
  width: var(--sparkle-size, 7px);
  height: var(--sparkle-size, 7px);
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.96);
  box-shadow:
    0 0 12px rgba(247, 251, 255, 0.92),
    0 0 28px rgba(42, 182, 255, 0.7),
    0 0 42px rgba(42, 182, 255, 0.28);
  opacity: 0;
  transform: translate3d(var(--sparkle-x, 0), var(--sparkle-y, 0), 0) scale(0.35);
  animation: cursor-sparkle-fade 880ms ease-out forwards;
}

.cursor-sparkle::before,
.cursor-sparkle::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 250%;
  height: 2px;
  border-radius: 999px;
  background: rgba(247, 251, 255, 0.9);
  transform: translate(-50%, -50%) rotate(var(--sparkle-rotate, 0deg));
}

.cursor-sparkle::after {
  transform: translate(-50%, -50%) rotate(calc(var(--sparkle-rotate, 0deg) + 90deg));
}

@keyframes cursor-sparkle-fade {
  0% {
    opacity: 0;
    transform: translate3d(var(--sparkle-x, 0), var(--sparkle-y, 0), 0) scale(0.35);
  }

  18% {
    opacity: 0.96;
  }

  100% {
    opacity: 0;
    transform:
      translate3d(
        calc(var(--sparkle-x, 0) + var(--sparkle-drift-x, 0px)),
        calc(var(--sparkle-y, 0) + var(--sparkle-drift-y, -18px)),
        0
      )
      scale(0);
  }
}

@media (prefers-reduced-motion: reduce), (pointer: coarse) {
  .cursor-sparkle-layer {
    display: none;
  }
}

/* People/testimonials spacing lock. Keep this after legacy spacing overrides. */
.clients-team-section {
  padding-bottom: clamp(14px, 1.45vw, 28px);
}

.clients-team-section .clients-showcase {
  transform: none;
  margin-bottom: 0;
}

.clients-team-section .team-section {
  padding-top: clamp(24px, 2.4vw, 46px);
}

.clients-team-section .team-heading {
  transform: none;
  margin-bottom: clamp(14px, 1.35vw, 24px);
}

.clients-team-section .team-grid {
  transform: none;
  margin-bottom: 0;
}

.testimonials-section {
  margin-top: 0;
  padding-top: clamp(14px, 1.45vw, 28px);
  padding-bottom: clamp(12px, 1.35vw, 24px);
}

.testimonials-heading {
  margin-bottom: clamp(10px, 1.2vw, 20px);
}

.testimonial-heading-rule {
  margin-bottom: clamp(6px, 0.75vw, 12px);
}

.testimonial-subtitle {
  transform: none;
}

.contact-section {
  margin-top: clamp(-14px, -0.9vw, -6px);
  padding-top: clamp(46px, 4.2vw, 76px);
}

@media (max-width: 900px) {
  .clients-team-section .clients-showcase,
  .clients-team-section .team-heading,
  .clients-team-section .team-grid {
    transform: none;
  }

  .clients-team-section .clients-showcase,
  .clients-team-section .team-grid {
    margin-bottom: 0;
  }

  .clients-team-section .team-heading {
    margin-bottom: 16px;
  }

  .testimonials-section {
    margin-top: 0;
    padding-top: 18px;
  }

  .contact-section {
    margin-top: -4px;
    padding-top: 34px;
  }
}

/* Final icon interaction pass: keep service, stats, partner, and team visuals static. */
.studio-stats img,
.studio-stats .stat-item:hover img,
.hero-service-card img,
.hero-service-card:hover img,
.clients-team-section .client-logo img,
.clients-team-section .client-logo:hover img,
.clients-team-section .team-card .team-photo,
.clients-team-section .team-card:hover .team-photo {
  animation: none;
  transform: none;
}

.studio-stats .stat-item:hover img,
.hero-service-card:hover img,
.clients-team-section .team-card:hover .team-photo {
  filter: inherit;
}

.hero-service-card::before,
.hero-service-card:hover::before,
.clients-team-section .client-logo::after,
.clients-team-section .client-logo:hover::after {
  opacity: 0;
  transform: none;
}

.clients-team-section .team-card .team-photo {
  filter: grayscale(1) contrast(1.08) brightness(0.9);
  transition: filter 180ms ease;
}

.clients-team-section .team-card:hover .team-photo {
  filter: grayscale(1) contrast(1.08) brightness(0.9);
}

.clients-team-section .client-logo:hover img {
  filter: grayscale(1) brightness(2.85) contrast(1.02);
  opacity: 0.92;
}

.clients-team-section .team-card .team-linkedin {
  outline: 1px solid transparent;
  outline-offset: 4px;
  box-shadow: none;
  transition: outline-color 180ms ease, filter 180ms ease;
}

.clients-team-section .team-card .team-linkedin:hover,
.clients-team-section .team-card .team-linkedin:focus-visible {
  transform: none;
  outline-color: rgba(42, 182, 255, 0.8);
  filter: brightness(1.08);
}

.hero-service-card img,
.hero-service-card:hover img,
.hero-service-card:focus-within img {
  filter: brightness(0) invert(1);
  transition: none;
}

/* Unified blue frame pass: applies the thank-you proof-bar border language to site blocks. */
:root {
  --io-frame-border: rgba(90, 174, 255, 0.76);
  --io-frame-border-soft: rgba(90, 174, 255, 0.34);
  --io-frame-bg-top: rgba(4, 36, 66, 0.78);
  --io-frame-bg-bottom: rgba(0, 8, 18, 0.94);
  --io-frame-radius: clamp(16px, 1.45vw, 26px);
  --io-frame-shadow:
    0 0 0 1px rgba(247, 251, 255, 0.08) inset,
    0 0 0 5px rgba(90, 174, 255, 0.08),
    0 0 24px rgba(90, 174, 255, 0.42);
}

.studio-stats,
.hero-service-card,
.project-card,
.project-proof,
.clients-team-section .clients-showcase,
.clients-team-section .client-showcase-bar,
.clients-team-section .team-card,
.testimonial-card,
.portfolio-hero,
.portfolio-cta,
.art-tile,
.pricing-rates,
.pricing-calculator,
.estimate-panel,
.pricing-choice,
.tier-segments button,
.team-size-display,
.estimate-team-control,
.pricing-disclaimer,
.pricing-asset-list,
.pricing-info-grid article,
.pricing-example-card,
.pricing-final-cta {
  border: 1px solid var(--io-frame-border) !important;
  border-radius: var(--io-frame-radius) !important;
  background:
    linear-gradient(180deg, var(--io-frame-bg-top), var(--io-frame-bg-bottom)),
    #02060c !important;
  box-shadow: var(--io-frame-shadow) !important;
}

.hero-service-card::before,
.hero-service-card::after,
.pricing-calculator::before,
.estimate-panel::before,
.pricing-info-grid article::before,
.pricing-info-grid article::after,
.testimonial-frame-panel::before,
.testimonial-frame-panel::after {
  content: none !important;
}

.project-card,
.art-tile,
.testimonial-card,
.clients-team-section .team-card {
  overflow: hidden;
}

.pricing-calculator,
.estimate-panel,
.pricing-info-grid article,
.pricing-example-card,
.pricing-final-cta,
.portfolio-cta {
  background:
    radial-gradient(circle at 18% 0%, rgba(90, 174, 255, 0.12), transparent 34%),
    linear-gradient(180deg, var(--io-frame-bg-top), var(--io-frame-bg-bottom)),
    #02060c !important;
}

.pricing-choice,
.tier-segments button,
.team-size-display,
.estimate-team-control {
  --io-frame-radius: 8px;
  --io-frame-shadow:
    0 0 0 1px rgba(247, 251, 255, 0.06) inset,
    0 0 14px rgba(90, 174, 255, 0.16);
}

.pricing-choice:hover,
.pricing-choice:focus-visible,
.pricing-choice.is-selected,
.tier-segments button:hover,
.tier-segments button:focus-visible,
.tier-segments button.is-selected {
  border-color: rgba(130, 197, 255, 0.96) !important;
  background:
    linear-gradient(180deg, rgba(23, 94, 163, 0.5), rgba(6, 35, 66, 0.72)),
    #02060c !important;
  box-shadow:
    inset 0 0 0 1px rgba(199, 229, 255, 0.18),
    inset 0 0 28px rgba(75, 164, 255, 0.14),
    0 0 22px rgba(77, 163, 255, 0.48) !important;
}

.studio-stats {
  overflow: hidden;
}

.project-proof,
.pricing-rates,
.studio-stats {
  background:
    linear-gradient(180deg, rgba(4, 48, 88, 0.86), rgba(0, 10, 22, 0.96)),
    #02060c !important;
}

@media (max-width: 900px) {
  .studio-stats,
  .hero-service-card,
  .project-card,
  .project-proof,
  .clients-team-section .client-showcase-bar,
  .clients-team-section .team-card,
  .testimonial-card,
  .portfolio-hero,
  .portfolio-cta,
  .art-tile,
  .pricing-rates,
  .pricing-calculator,
  .estimate-panel,
  .pricing-disclaimer,
  .pricing-asset-list,
  .pricing-info-grid article,
  .pricing-example-card,
  .pricing-final-cta {
    --io-frame-radius: 16px;
  }
}

/* Frame cleanup: parent wrappers stay open; individual cards keep one outline. */
.clients-team-section .clients-showcase,
.clients-team-section .team-grid,
.testimonial-grid {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.clients-team-section .clients-showcase::before,
.clients-team-section .clients-showcase::after,
.clients-team-section .team-grid::before,
.clients-team-section .team-grid::after,
.testimonial-grid::before,
.testimonial-grid::after {
  content: none !important;
}

.clients-team-section .team-card::before,
.clients-team-section .team-card::after,
.testimonial-card::before,
.testimonial-card::after {
  content: none !important;
}

.clients-team-section .team-card .team-frame,
.testimonial-frame,
.testimonial-glow {
  display: none !important;
}

.testimonial-frame-panel {
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

/* Final layout rail pass: consistent side margins and breathing room between blocks. */
:root {
  --page-rail: min(1900px, calc(100vw - clamp(32px, 5.2vw, 108px)));
  --page-rail-mobile: calc(100vw - 24px);
  --block-air: clamp(18px, 1.55vw, 30px);
  --section-air: clamp(28px, 2.55vw, 50px);
}

.home-hero,
.reference-hero,
.section,
.core-services-section,
.clients-team-section,
.contact-section,
.portfolio-hero,
.portfolio-wall,
.portfolio-cta,
.pricing-hero,
.pricing-rates,
.pricing-rate-note,
.pricing-calculator,
.pricing-disclaimer,
.pricing-asset-list,
.pricing-info-grid,
.pricing-examples,
.pricing-final-cta {
  width: var(--page-rail) !important;
  max-width: var(--page-rail) !important;
  margin-left: auto !important;
  margin-right: auto !important;
}

.home-hero {
  gap: var(--block-air) !important;
  padding-bottom: clamp(18px, 2vw, 34px) !important;
}

.hero-stage,
.studio-stats,
.services-after-proof,
.project-grid,
.project-proof,
.clients-team-section .clients-showcase,
.clients-team-section .client-showcase-bar,
.clients-team-section .team-section,
.clients-team-section .team-grid,
.testimonial-grid,
.pricing-example-grid {
  width: 100% !important;
  max-width: 100% !important;
}

.studio-stats,
.projects-section,
.clients-team-section,
.clients-team-section .clients-showcase,
.clients-team-section .team-section,
.testimonials-section,
.contact-section {
  margin-top: 0 !important;
}

.core-services-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: clamp(22px, 2vw, 38px) !important;
}

.projects-section,
.clients-team-section,
.testimonials-section {
  padding-top: var(--section-air) !important;
  padding-bottom: var(--section-air) !important;
}

.services-after-proof,
.project-grid,
.project-proof,
.clients-team-section .client-showcase-bar,
.clients-team-section .team-grid,
.testimonial-grid,
.pricing-example-grid {
  margin-top: var(--block-air) !important;
}

.clients-team-section .team-section,
.pricing-info-grid,
.pricing-examples,
.pricing-final-cta,
.pricing-asset-list,
.pricing-calculator,
.pricing-disclaimer,
.pricing-rates,
.portfolio-wall,
.portfolio-cta {
  margin-top: var(--section-air) !important;
}

.core-services-section + .projects-section {
  padding-top: clamp(24px, 2.2vw, 42px) !important;
}

.portfolio-hero {
  padding-top: clamp(118px, 8vw, 156px) !important;
  padding-bottom: var(--section-air) !important;
}

.portfolio-wall {
  margin-bottom: 0 !important;
}

.portfolio-cta {
  margin-bottom: var(--section-air) !important;
}

.pricing-page main {
  --pricing-block-width: var(--page-rail);
}

.pricing-hero {
  padding-top: clamp(112px, 7.5vw, 150px) !important;
}

.pricing-rate-note {
  margin-top: clamp(14px, 1.3vw, 24px) !important;
  margin-bottom: 0 !important;
}

.pricing-rates {
  margin-top: var(--block-air) !important;
}

@media (max-width: 900px) {
  :root {
    --page-rail: var(--page-rail-mobile);
    --block-air: 20px;
    --section-air: 34px;
  }

  .home-hero,
  .reference-hero,
  .section,
  .core-services-section,
  .clients-team-section,
  .contact-section,
  .portfolio-hero,
  .portfolio-wall,
  .portfolio-cta,
  .pricing-hero,
  .pricing-rates,
  .pricing-rate-note,
  .pricing-calculator,
  .pricing-disclaimer,
  .pricing-asset-list,
  .pricing-info-grid,
  .pricing-examples,
  .pricing-final-cta {
    width: var(--page-rail-mobile) !important;
    max-width: var(--page-rail-mobile) !important;
  }

  .portfolio-hero,
  .pricing-hero {
    padding-top: 108px !important;
  }
}

/* Homepage gap compression: keep air, remove the oversized vertical bands. */
.home-hero {
  gap: 0 !important;
  padding-bottom: 0 !important;
}

.home-hero + .core-services-section,
.core-services-section {
  margin-top: 0 !important;
  padding-top: 0 !important;
  padding-bottom: clamp(8px, 0.8vw, 16px) !important;
}

.home-hero .studio-stats,
.core-services-section .hero-services,
.core-services-section .services-after-proof {
  width: 100% !important;
  max-width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.home-hero .studio-stats {
  justify-self: stretch !important;
  margin-top: clamp(-8px, -0.45vw, -4px) !important;
}

.core-services-section .services-after-proof {
  margin-top: -3mm !important;
}

.core-services-section + .projects-section {
  padding-top: clamp(12px, 1.1vw, 22px) !important;
}

.projects-section .section-heading {
  margin-bottom: clamp(10px, 0.9vw, 16px) !important;
  transform: translateY(-4mm);
}

.projects-section .project-grid {
  transform: translateY(-8mm);
}

.clients-team-section .clients-showcase h2,
.clients-team-section .clients-showcase > p {
  transform: translateY(-2cm);
}

.clients-team-section .client-showcase-bar {
  transform: translateY(-1.9cm);
}

.clients-team-section .team-heading {
  transform: translateY(-3cm);
}

.clients-team-section .team-grid {
  transform: translateY(-2.7cm);
}

#team {
  scroll-margin-top: calc(clamp(54px, 3.8vw, 72px) + 3cm);
}

.testimonials-heading {
  transform: translateY(-3cm);
}

.testimonial-grid {
  transform: translateY(-2.5cm);
}

.contact-section {
  transform: translateY(-3.5cm);
}

@media (max-width: 900px) {
  .home-hero {
    gap: 12px !important;
  }

  .core-services-section {
    padding-bottom: 12px !important;
  }

  .core-services-section + .projects-section {
    padding-top: 18px !important;
  }
}

.portfolio-page .portfolio-wall {
  margin-top: var(--section-air) !important;
}

.portfolio-page {
  min-height: 100vh;
  background: #000 !important;
  overflow-x: hidden !important;
}

@supports (overflow: clip) {
  html,
  body,
  .portfolio-page {
    overflow-x: clip !important;
  }
}

.portfolio-page .portfolio-hero {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.portfolio-page .art-tile,
.portfolio-page .art-tile:hover,
.portfolio-page .art-tile:focus-visible {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: 0;
}

.portfolio-page .art-tile img {
  border-radius: 0 !important;
}

.projects-section .project-card,
.projects-section .project-card:hover,
.projects-section .project-card:focus-visible {
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  outline: 0;
}

.projects-section .project-card img {
  border-radius: 0 !important;
}

/* Pricing hero follows the home hero copy placement and scale. */
.pricing-hero {
  gap: 0 !important;
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}

.pricing-hero-copy {
  max-width: none !important;
}

.pricing-hero .hero-stage {
  grid-template-columns: minmax(650px, 0.72fr) minmax(0, 1.28fr) !important;
  align-items: end !important;
  min-height: 515px !important;
  overflow: hidden !important;
  border-bottom: 0 !important;
}

.pricing-hero .hero-visual {
  min-height: 515px !important;
  align-items: flex-end !important;
  justify-content: flex-end !important;
}

.pricing-hero .hero-visual img {
  width: 1500px !important;
  max-width: none !important;
  flex: 0 0 auto !important;
  transform: translateX(4%) translateY(calc(-4% + 5.5mm)) !important;
}

.pricing-hero .pricing-hero-copy > .hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: none;
  margin: 0 0 clamp(18px, 1.4vw, 26px);
  color: #fff;
  font-family: inherit;
  font-size: clamp(13px, 0.9vw, 17px);
  font-weight: 800;
  letter-spacing: 0.17em;
  line-height: normal;
  text-transform: uppercase;
  white-space: normal;
}

.pricing-hero .hero-copy h1 {
  max-width: 10ch;
  margin: 0 0 clamp(18px, 1.6vw, 28px);
  font-size: clamp(62px, 4.2vw, 94px);
  line-height: 0.86;
}

.pricing-hero-copy > p:not(.hero-kicker) {
  max-width: 500px;
  margin: 0 0 clamp(22px, 2vw, 34px);
  color: #fff;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: clamp(17px, 1vw, 22px);
  font-weight: 500;
  line-height: 1.38;
  white-space: normal;
}

.pricing-hero-note {
  margin-top: 0;
}

.pricing-rates {
  margin-top: calc(var(--block-air) - 8mm) !important;
}

@media (max-width: 900px) {
  .pricing-hero {
    padding-top: 108px !important;
  }
}

/* Mobile homepage hero: keep the carousel art compact and centered. */
@media (max-width: 980px) {
  .home-hero .hero-stage {
    row-gap: clamp(8px, 2.8vw, 16px);
  }

  .home-hero .hero-visual {
    width: 100%;
    min-height: clamp(300px, 80vw, 460px);
    margin-top: clamp(-56px, -9vw, -28px);
    align-items: center;
    justify-content: center;
    overflow: hidden;
  }

  .home-hero .hero-visual .hero-visual-slide {
    position: absolute;
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(200vw, 960px);
    max-width: none;
    margin: 0;
    transform: translate(-50%, -50%);
  }
}

/* Mobile content grids: keep project and team sections compact. */
@media (max-width: 760px) {
  .projects-section .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .projects-section .project-card {
    aspect-ratio: 16 / 10;
    border: 1px solid rgba(36, 95, 149, 0.55) !important;
    border-radius: 6px !important;
    background: rgba(3, 10, 16, 0.94) !important;
  }

  .projects-section .project-card img {
    border-radius: inherit !important;
  }
}

@media (max-width: 700px) {
  .clients-team-section .team-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .clients-team-section .team-card {
    aspect-ratio: 0.73;
  }

  .clients-team-section .team-card div {
    left: 8%;
    right: 8%;
    bottom: 5%;
    min-height: 18%;
    padding: 8px 9px;
    gap: 2px;
  }

  .clients-team-section .team-card strong {
    font-size: clamp(12px, 3.45vw, 15px);
    line-height: 1.02;
  }

  .clients-team-section .team-card span {
    font-size: clamp(7px, 2.1vw, 9px);
    line-height: 1.12;
    letter-spacing: 0.06em;
  }

  .clients-team-section .team-card .team-linkedin {
    right: 8px;
    bottom: 0;
    width: 30px;
    height: 30px;
  }
}

/* Mobile portfolio: two-column artwork wall and correctly framed CTA. */
@media (max-width: 700px) {
  .portfolio-page .portfolio-grid.fixed-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
    gap: 10px !important;
  }

  .portfolio-page .fixed-grid .art-tile,
  .portfolio-page .fixed-grid .art-tile:nth-child(10n + 1),
  .portfolio-page .fixed-grid .art-tile:nth-child(10n + 4),
  .portfolio-page .fixed-grid .art-tile:nth-child(10n + 6) {
    grid-column: auto !important;
  }

  .portfolio-page .fixed-grid .art-tile.is-wide,
  .portfolio-page .fixed-grid .art-tile.is-square {
    aspect-ratio: 1 / 1;
  }

  .portfolio-page .portfolio-cta {
    aspect-ratio: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 18px;
    padding: 26px 22px 22px !important;
  }

  .portfolio-page .portfolio-cta > div {
    min-width: 0;
    align-content: start;
  }

  .portfolio-page .portfolio-cta h2 {
    margin-bottom: 10px;
    font-size: clamp(28px, 8.4vw, 38px);
    line-height: 1.02;
  }

  .portfolio-page .portfolio-cta p:not(.eyebrow) {
    max-width: 100%;
    font-size: clamp(15px, 4.2vw, 18px);
    line-height: 1.28;
    white-space: normal;
  }

  .portfolio-page .portfolio-cta .button {
    width: 100%;
    justify-self: stretch;
  }
}

/* Mobile pricing: stop desktop hero/CTA framing from overlapping stacked blocks. */
@media (max-width: 700px) {
  .pricing-page main {
    padding-bottom: 36px;
  }

  .pricing-page .pricing-hero {
    padding-top: 108px !important;
    padding-bottom: 0 !important;
  }

  .pricing-page .pricing-hero .hero-stage {
    grid-template-columns: 1fr !important;
    min-height: 0 !important;
    align-items: start !important;
    overflow: hidden !important;
  }

  .pricing-page .pricing-hero .hero-copy {
    z-index: 3;
    padding: 94px 0 28px !important;
  }

  .pricing-page .pricing-hero .hero-copy h1 {
    font-size: clamp(48px, 13.2vw, 66px);
    line-height: 0.88;
  }

  .pricing-page .pricing-hero-copy > p:not(.hero-kicker) {
    max-width: 100%;
    font-size: clamp(16px, 4.2vw, 18px);
    line-height: 1.34;
  }

  .pricing-page .pricing-hero .hero-visual {
    position: absolute;
    inset: 0;
    z-index: 1;
    min-height: 0 !important;
    opacity: 0.72;
  }

  .pricing-page .pricing-hero .hero-visual img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover;
    object-position: center;
    transform: none !important;
    filter: brightness(0.78) contrast(1.04);
  }

  .pricing-page .pricing-rates {
    margin-top: 12px !important;
    padding: 18px 18px !important;
    grid-template-columns: 1fr !important;
    gap: 0;
  }

  .pricing-page .pricing-rates article {
    min-height: 66px;
    padding: 12px 38px;
  }

  .pricing-page .pricing-rate-note {
    margin-top: 14px !important;
    margin-bottom: 24px !important;
  }

  .pricing-page .pricing-calculator {
    grid-template-columns: 1fr !important;
    gap: 24px;
    padding: 32px 18px !important;
    overflow: hidden;
  }

  .pricing-page .pricing-section-title h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .pricing-page .asset-card-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .pricing-page .pricing-choice {
    min-height: 142px;
    aspect-ratio: auto;
    padding: 12px 8px;
  }

  .pricing-page .pricing-choice img {
    inline-size: 62px;
    block-size: 62px;
  }

  .pricing-page .tier-segments {
    grid-template-columns: 1fr;
  }

  .pricing-page .tier-segments button {
    min-height: 82px;
    grid-template-columns: 82px 1fr;
    grid-template-rows: 1fr;
    justify-items: start;
    padding: 10px 14px;
  }

  .pricing-page .estimate-panel {
    border-left: 0 !important;
    border-top: 1px solid rgba(150, 205, 255, 0.26) !important;
    padding: 24px 16px 20px !important;
  }

  .pricing-page .estimate-panel::before {
    inset: -36px -18px;
    filter: blur(12px);
  }

  .pricing-page .estimate-total {
    font-size: clamp(46px, 13vw, 62px);
  }

  .pricing-page .estimate-breakdown div {
    grid-template-columns: 1fr auto;
    gap: 8px 12px;
  }

  .pricing-page .estimate-breakdown div::before {
    content: none;
  }

  .pricing-page .pricing-final-cta {
    aspect-ratio: auto;
    min-height: 0;
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 20px;
    padding: 28px 22px 22px !important;
  }

  .pricing-page .pricing-final-cta > div {
    min-width: 0;
  }

  .pricing-page .pricing-final-cta h2 {
    margin-bottom: 12px;
    font-size: clamp(32px, 9vw, 44px);
    line-height: 0.98;
  }

  .pricing-page .pricing-final-cta p {
    max-width: 100%;
    font-size: clamp(15px, 4.1vw, 18px);
    line-height: 1.34;
  }

  .pricing-page .pricing-final-cta .button {
    width: 100%;
    justify-self: stretch;
  }
}

/* Desktop pricing polish: let framed content define enough height. */
@media (min-width: 701px) {
  .pricing-page .pricing-hero {
    padding-top: 0 !important;
  }

  .pricing-page .pricing-hero .hero-stage {
    min-height: clamp(430px, 34vw, 560px) !important;
  }

  .pricing-page .pricing-hero .hero-copy {
    padding-left: clamp(22px, 2vw, 38px);
  }

  .pricing-page .pricing-rates {
    margin-top: 0 !important;
  }

  .pricing-page .pricing-calculator {
    align-items: start;
    overflow: visible;
  }

  .pricing-page .estimate-panel {
    align-self: start;
  }

  .pricing-page .pricing-info-grid {
    align-items: stretch;
    gap: clamp(14px, 1.2vw, 22px);
  }

  .pricing-page .pricing-info-grid article {
    aspect-ratio: auto;
    min-height: clamp(170px, 14vw, 230px);
    padding: clamp(24px, 2vw, 36px) clamp(30px, 2.4vw, 46px);
    align-items: center;
    background-size: 100% 100%;
  }

  .pricing-page .pricing-info-grid article:nth-of-type(n + 2) > .pricing-tier-card-mark,
  .pricing-page .pricing-info-grid article:nth-of-type(n + 2) > .pricing-tier-copy {
    transform: none;
  }

  .pricing-page .pricing-tier-copy h3 {
    margin-bottom: 10px;
  }

  .pricing-page .pricing-tier-copy ul {
    font-size: clamp(12px, 0.82vw, 14px);
    line-height: 1.28;
  }

  .pricing-page .pricing-example-grid {
    width: 100%;
    gap: clamp(12px, 1.1vw, 20px);
  }

  .pricing-page .pricing-example-card {
    aspect-ratio: auto;
    min-height: clamp(170px, 13vw, 230px);
    grid-template-rows: auto 1fr auto auto;
    align-content: stretch;
    row-gap: 12px;
    padding: clamp(26px, 2.2vw, 42px) clamp(28px, 2.5vw, 48px);
    background-size: 100% 100%;
  }

  .pricing-page .pricing-example-card h3,
  .pricing-page .pricing-example-card span {
    transform: none;
  }

  .pricing-page .pricing-example-card strong {
    align-self: center;
  }

  .pricing-page .pricing-final-cta {
    aspect-ratio: auto;
    min-height: clamp(190px, 15vw, 260px);
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.25fr);
    padding: clamp(42px, 3.4vw, 66px) clamp(64px, 5vw, 108px);
    background-size: 100% 100%;
  }

  .pricing-page .pricing-final-cta h2 {
    max-width: 18ch;
  }

  .pricing-page .pricing-final-cta p {
    max-width: 820px;
  }

  .pricing-page .pricing-final-cta .button {
    width: 100%;
    min-width: 0;
  }
}

/* Mobile navigation panel. */
.mobile-nav-toggle {
  display: none;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: auto 44px auto;
    justify-content: space-between;
    overflow: visible;
  }

  .mobile-nav-toggle {
    display: inline-grid;
    place-items: center;
    justify-self: end;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.018);
    color: var(--text);
    cursor: pointer;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.025),
      0 10px 34px rgba(0, 0, 0, 0.28);
  }

  .mobile-nav-toggle span {
    display: block;
    grid-area: 1 / 1;
    width: 20px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 180ms ease, opacity 180ms ease;
  }

  .mobile-nav-toggle span:nth-child(1) {
    transform: translateY(-7px);
  }

  .mobile-nav-toggle span:nth-child(3) {
    transform: translateY(7px);
  }

  .site-header.nav-is-open .mobile-nav-toggle {
    border-color: rgba(246, 185, 47, 0.82);
    color: var(--gold-soft);
  }

  .site-header.nav-is-open .mobile-nav-toggle span:nth-child(1) {
    transform: rotate(45deg);
  }

  .site-header.nav-is-open .mobile-nav-toggle span:nth-child(2) {
    opacity: 0;
  }

  .site-header.nav-is-open .mobile-nav-toggle span:nth-child(3) {
    transform: rotate(-45deg);
  }

  .site-header .nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 12px;
    left: 12px;
    display: grid !important;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 14px;
    border: 1px solid rgba(90, 174, 255, 0.42);
    border-radius: 12px;
    background:
      radial-gradient(circle at 82% 0%, rgba(90, 174, 255, 0.16), transparent 34%),
      linear-gradient(180deg, rgba(4, 36, 66, 0.96), rgba(0, 8, 18, 0.98)),
      #02060c;
    box-shadow:
      0 0 0 1px rgba(247, 251, 255, 0.06) inset,
      0 18px 54px rgba(0, 0, 0, 0.58),
      0 0 24px rgba(90, 174, 255, 0.24);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-header.nav-is-open .nav {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .site-header .nav a {
    display: flex;
    align-items: center;
    min-height: 48px;
    padding: 12px 14px;
    border: 1px solid rgba(247, 251, 255, 0.16);
    border-radius: 7px;
    background: rgba(0, 0, 0, 0.22);
    line-height: 1.05;
  }

  .site-header .nav a[aria-current="page"],
  .site-header .nav a[aria-current="location"] {
    border-color: rgba(246, 185, 47, 0.68);
    color: var(--gold-soft);
  }

  .site-header .nav a[aria-current="page"]::after,
  .site-header .nav a[aria-current="location"]::after {
    content: none;
  }
}

@media (max-width: 700px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 44px auto;
  }

  .site-header .brand img {
    width: min(158px, 36vw);
  }

  .site-header .header-cta {
    white-space: nowrap;
  }
}

@media (max-width: 420px) {
  .site-header {
    grid-template-columns: minmax(0, 1fr) 42px;
  }

  .site-header .header-cta {
    display: none;
  }

  .mobile-nav-toggle {
    width: 42px;
    height: 42px;
  }

  .site-header .nav {
    grid-template-columns: 1fr;
  }
}

/* iOS mobile: keep the marquee visible immediately in WebKit's composited layer. */
@media (max-width: 700px) {
  .clients-team-section {
    --client-mobile-logo-width: 210px;
    --client-mobile-cycle-width: calc(var(--client-mobile-logo-width) * 11);
  }

  .clients-team-section .client-logo-mask {
    display: block !important;
    align-items: center !important;
    padding: var(--client-frame-pad-y) var(--client-frame-pad-x) !important;
    overflow: hidden !important;
  }

  .clients-team-section .client-track {
    display: flex !important;
    align-items: center !important;
    gap: 0 !important;
    width: max-content !important;
    height: 100% !important;
    padding: 0 var(--client-frame-pad-x) !important;
    animation: client-marquee-mobile 46s linear infinite !important;
    transform: translate3d(0, 0, 0);
    will-change: transform !important;
    -webkit-transform: translate3d(0, 0, 0);
  }

  .clients-team-section .client-logo {
    display: grid !important;
    flex: 0 0 var(--client-mobile-logo-width) !important;
    width: var(--client-mobile-logo-width) !important;
    height: 58px !important;
    min-width: 0 !important;
    padding: 0 22px !important;
  }

  .clients-team-section .client-logo::before,
  .clients-team-section .client-logo::after {
    content: none !important;
  }

  .clients-team-section .client-logo img,
  .clients-team-section .client-logo:hover img {
    width: auto !important;
    max-width: 100% !important;
    height: clamp(38px, 8.6vw, 48px) !important;
    max-height: 48px !important;
    opacity: 0.96 !important;
    filter: none !important;
    visibility: visible !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

@media (min-width: 701px) and (max-width: 980px) {
  .is-ios-webkit .clients-team-section {
    --client-mobile-logo-width: 230px;
    --client-mobile-cycle-width: calc(var(--client-mobile-logo-width) * 11);
  }

  .is-ios-webkit .clients-team-section .client-track {
    animation: client-marquee-mobile 50s linear infinite !important;
    transform: translate3d(0, 0, 0);
    -webkit-transform: translate3d(0, 0, 0);
  }

  .is-ios-webkit .clients-team-section .client-logo {
    flex: 0 0 var(--client-mobile-logo-width) !important;
    width: var(--client-mobile-logo-width) !important;
  }

  .is-ios-webkit .clients-team-section .client-logo img,
  .is-ios-webkit .clients-team-section .client-logo:hover img {
    visibility: visible !important;
    opacity: 0.96 !important;
    filter: none !important;
    transform: translateZ(0) !important;
    -webkit-transform: translateZ(0) !important;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
  }
}

@keyframes client-marquee-mobile {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(calc(-1 * var(--client-mobile-cycle-width)), 0, 0);
  }
}

/* Testimonial rotation: keep card rows stable while quote content swaps. */
.testimonial-grid {
  --testimonial-card-height: clamp(360px, 26vw, 430px);
  grid-auto-rows: var(--testimonial-card-height);
  align-items: stretch;
}

.testimonial-card {
  height: var(--testimonial-card-height);
  min-height: var(--testimonial-card-height);
}

.testimonial-card > [data-testimonial-slot],
.testimonial-content {
  height: 100%;
  min-height: 0;
}

.testimonial-copy {
  min-height: clamp(150px, 10.5vw, 190px);
}

@media (max-width: 900px) {
  .testimonial-grid {
    --testimonial-card-height: auto;
    grid-auto-rows: auto;
  }

  .testimonial-card {
    height: auto;
  }

  .testimonial-copy {
    min-height: 0;
  }
}

/* Homepage header CTA: glowing Book Intro Call pill. */
.site-header .intro-call-cta {
  position: relative;
  gap: 11px;
  min-height: 42px;
  padding: 7px 9px 7px 23px;
  border: 2px solid rgba(247, 251, 255, 0.95);
  border-radius: 999px;
  background:
    radial-gradient(circle at 84% 50%, rgba(105, 184, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(18, 28, 38, 0.88), rgba(3, 8, 14, 0.92));
  color: #fff;
  font-family: "RajdhaniHero", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.09em;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 18px rgba(60, 155, 235, 0.78),
    0 0 40px rgba(25, 112, 188, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 18px rgba(120, 200, 255, 0.08);
}

.site-header .intro-call-cta:hover,
.site-header .intro-call-cta:focus-visible {
  border-color: #fff;
  background:
    radial-gradient(circle at 84% 50%, rgba(105, 184, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(20, 33, 45, 0.96), rgba(5, 12, 20, 0.96));
  color: #fff;
  transform: translateY(-1px);
  box-shadow:
    0 0 24px rgba(72, 174, 255, 0.92),
    0 0 54px rgba(25, 112, 188, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 22px rgba(120, 200, 255, 0.12);
}

.site-header .intro-call-text {
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

.site-header .intro-call-icon {
  position: relative;
  z-index: 1;
  width: 28px;
  height: 28px;
  display: block;
  background: url("media/icons/link-arrow.png") center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.site-header .intro-call-cta::after {
  content: none;
  margin-left: 0;
}

.site-header .intro-call-cta.has-button-snow {
  overflow: hidden;
}

@media (max-width: 700px) {
  .site-header .intro-call-cta {
    min-height: 40px;
    padding-left: 18px;
    font-size: 13px;
  }

  .site-header .intro-call-icon {
    width: 26px;
    height: 26px;
    font-size: 18px;
  }
}

/* Unified glowing action buttons. Navigation links are intentionally excluded. */
.button,
.contact-submit,
.pricing-submit,
.view-all-link,
.filter-button {
  --io-btn-accent: #8bc9ff;
  --io-btn-text: #f7fbff;
  --io-btn-glow: rgba(72, 174, 255, 0.55);
  position: relative;
  min-height: clamp(54px, 4.4vw, 72px);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-wrap: nowrap;
  gap: clamp(10px, 1.25vw, 22px);
  padding: clamp(12px, 1vw, 17px) clamp(14px, 1.3vw, 24px) clamp(12px, 1vw, 17px) clamp(24px, 2.2vw, 42px);
  border: 2px solid rgba(247, 251, 255, 0.95) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 82% 50%, color-mix(in srgb, var(--io-btn-accent) 13%, transparent), transparent 36%),
    linear-gradient(180deg, rgba(17, 25, 34, 0.9), rgba(3, 8, 14, 0.94)) !important;
  color: var(--io-btn-text) !important;
  font-family: "RajdhaniHero", Impact, Haettenschweiler, "Arial Black", sans-serif !important;
  font-size: clamp(17px, 1.45vw, 26px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase !important;
  white-space: nowrap;
  text-shadow:
    0 0 8px color-mix(in srgb, var(--io-btn-text) 78%, transparent),
    0 2px 0 rgba(255, 255, 255, 0.08);
  box-shadow:
    0 0 18px var(--io-btn-glow),
    0 0 42px color-mix(in srgb, var(--io-btn-accent) 26%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    inset 0 0 20px color-mix(in srgb, var(--io-btn-accent) 7%, transparent) !important;
  overflow: hidden;
}

.button::before,
.contact-submit::before,
.pricing-submit::before,
.view-all-link::before,
.filter-button::before {
  content: "";
  order: 2;
  width: 1px;
  height: clamp(30px, 2.4vw, 44px);
  margin-left: clamp(4px, 0.8vw, 12px);
  background: color-mix(in srgb, var(--io-btn-accent) 30%, rgba(255, 255, 255, 0.38));
  box-shadow: 0 0 10px color-mix(in srgb, var(--io-btn-accent) 18%, transparent);
  opacity: 0.68;
}

.button::after,
.contact-submit::after,
.pricing-submit::after,
.view-all-link::after,
.filter-button::after {
  content: "" !important;
  order: 3;
  width: clamp(32px, 3vw, 50px);
  height: clamp(32px, 3vw, 50px);
  display: block;
  margin-left: 0 !important;
  border: 0;
  border-radius: 0;
  background-color: var(--io-btn-text);
  -webkit-mask: url("media/icons/link-arrow.png") center / contain no-repeat;
  mask: url("media/icons/link-arrow.png") center / contain no-repeat;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--io-btn-accent) 62%, transparent));
}

.button.primary,
.hero-actions .button.primary,
.portfolio-cta .button.primary,
.pricing-final-cta .button.primary {
  --io-btn-accent: #f6c221;
  --io-btn-text: #ffd629;
  --io-btn-glow: rgba(246, 194, 33, 0.46);
  border-color: rgba(255, 214, 41, 0.96) !important;
}

.button.ghost,
.contact-submit,
.pricing-submit,
.filter-button,
.view-all-link {
  --io-btn-accent: #84c4ff;
  --io-btn-text: #f7fbff;
  --io-btn-glow: rgba(72, 174, 255, 0.52);
}

.hero-actions {
  gap: clamp(12px, 1.45vw, 22px);
}

.hero-actions .button {
  width: auto !important;
  min-height: clamp(52px, 3.8vw, 60px) !important;
  min-width: 0 !important;
  gap: clamp(7px, 0.62vw, 10px);
  padding: clamp(10px, 0.78vw, 13px) clamp(12px, 0.82vw, 15px) clamp(10px, 0.78vw, 13px) clamp(18px, 1.18vw, 23px) !important;
  border-width: 2px !important;
  font-size: clamp(15px, 1.05vw, 20px) !important;
  letter-spacing: 0.09em !important;
}

.hero-actions .button::before {
  content: none !important;
}

.hero-actions .button::after {
  width: clamp(26px, 1.95vw, 30px);
  height: clamp(26px, 1.95vw, 30px);
  flex: 0 0 clamp(26px, 1.95vw, 30px);
}

.view-all-link {
  width: auto !important;
  min-height: clamp(52px, 3.8vw, 60px) !important;
  min-width: 0 !important;
  gap: clamp(7px, 0.62vw, 10px) !important;
  padding: clamp(10px, 0.78vw, 13px) clamp(12px, 0.82vw, 15px) clamp(10px, 0.78vw, 13px) clamp(18px, 1.18vw, 23px) !important;
  font-size: clamp(15px, 1.05vw, 20px) !important;
  letter-spacing: 0.09em !important;
}

.view-all-link::before {
  content: none !important;
}

.view-all-link::after {
  width: clamp(26px, 1.95vw, 30px) !important;
  height: clamp(26px, 1.95vw, 30px) !important;
  flex: 0 0 clamp(26px, 1.95vw, 30px) !important;
}

.button:hover,
.button:focus-visible,
.contact-submit:hover,
.contact-submit:focus-visible,
.pricing-submit:hover,
.pricing-submit:focus-visible,
.view-all-link:hover,
.view-all-link:focus-visible,
.filter-button:hover,
.filter-button:focus-visible {
  transform: translateY(-1px);
  border-color: currentColor !important;
  background:
    radial-gradient(circle at 82% 50%, color-mix(in srgb, var(--io-btn-accent) 18%, transparent), transparent 36%),
    linear-gradient(180deg, rgba(21, 33, 45, 0.96), rgba(4, 12, 20, 0.98)) !important;
  box-shadow:
    0 0 24px var(--io-btn-glow),
    0 0 58px color-mix(in srgb, var(--io-btn-accent) 36%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 24px color-mix(in srgb, var(--io-btn-accent) 10%, transparent) !important;
}

.button.has-button-snow > .button-snow,
.contact-submit.has-button-snow > .button-snow,
.pricing-submit.has-button-snow > .button-snow,
.view-all-link.has-button-snow > .button-snow,
.filter-button.has-button-snow > .button-snow {
  top: auto;
  right: 12%;
  bottom: 10px;
  left: 12%;
  height: 30px;
  transform: none;
  opacity: 0.84;
}

.contact-submit span,
.pricing-submit span,
.button > span[aria-hidden="true"],
.view-all-link > span[aria-hidden="true"] {
  display: none !important;
}

.contact-submit,
.pricing-submit,
.pricing-final-cta .button {
  width: min(100%, 430px) !important;
  min-width: 320px !important;
  max-width: 100%;
  gap: clamp(8px, 1vw, 16px);
  padding-right: clamp(12px, 1vw, 18px);
  padding-left: clamp(20px, 1.8vw, 34px);
  font-size: clamp(15px, 1.05vw, 20px) !important;
  letter-spacing: 0.08em !important;
}

.contact-submit::before,
.pricing-submit::before,
.pricing-final-cta .button::before {
  height: 32px;
  margin-left: 6px;
}

.contact-submit::after,
.pricing-submit::after,
.pricing-final-cta .button::after {
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
}

.pricing-page .pricing-final-cta .button {
  width: min(100%, 360px) !important;
  min-width: 320px !important;
}

.portfolio-page .site-header .header-cta {
  --io-btn-accent: #84c4ff;
  --io-btn-text: #f7fbff;
  --io-btn-glow: rgba(72, 174, 255, 0.52);
  min-height: 46px !important;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 8px 10px 8px 20px !important;
  border: 2px solid rgba(247, 251, 255, 0.95) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 84% 50%, color-mix(in srgb, var(--io-btn-accent) 12%, transparent), transparent 36%),
    linear-gradient(180deg, rgba(18, 28, 38, 0.88), rgba(3, 8, 14, 0.92)) !important;
  color: var(--io-btn-text) !important;
  font-family: "RajdhaniHero", Impact, Haettenschweiler, "Arial Black", sans-serif !important;
  font-size: 15px !important;
  line-height: 1 !important;
  letter-spacing: 0.09em !important;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.72);
  box-shadow:
    0 0 18px var(--io-btn-glow),
    0 0 40px color-mix(in srgb, var(--io-btn-accent) 26%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 18px color-mix(in srgb, var(--io-btn-accent) 8%, transparent) !important;
}

.portfolio-page .site-header .header-cta::after {
  content: "" !important;
  width: 28px;
  height: 28px;
  display: block;
  background-color: var(--io-btn-text);
  -webkit-mask: url("media/icons/link-arrow.png") center / contain no-repeat;
  mask: url("media/icons/link-arrow.png") center / contain no-repeat;
  filter: drop-shadow(0 0 8px rgba(255, 255, 255, 0.5));
}

.portfolio-page .portfolio-cta .button {
  width: auto !important;
  min-height: clamp(52px, 3.8vw, 60px) !important;
  min-width: 0 !important;
  gap: clamp(7px, 0.62vw, 10px) !important;
  padding: clamp(10px, 0.78vw, 13px) clamp(12px, 0.82vw, 15px) clamp(10px, 0.78vw, 13px) clamp(18px, 1.18vw, 23px) !important;
  font-size: clamp(15px, 1.05vw, 20px) !important;
  letter-spacing: 0.09em !important;
}

.portfolio-page .portfolio-cta .button::before {
  content: none !important;
}

.portfolio-page .portfolio-cta .button::after {
  width: clamp(26px, 1.95vw, 30px) !important;
  height: clamp(26px, 1.95vw, 30px) !important;
  flex: 0 0 clamp(26px, 1.95vw, 30px) !important;
}

.pricing-submit,
.pricing-final-cta .button {
  width: auto !important;
  min-width: 0 !important;
  max-width: 100% !important;
  min-height: 62px !important;
  gap: clamp(8px, 0.75vw, 12px) !important;
  padding-right: clamp(14px, 1vw, 18px) !important;
  padding-left: clamp(22px, 1.45vw, 28px) !important;
  font-size: clamp(15px, 1.05vw, 20px) !important;
  letter-spacing: 0.08em !important;
}

.pricing-submit::before,
.pricing-final-cta .button::before {
  height: 30px !important;
  margin-left: 2px !important;
}

.pricing-submit::after,
.pricing-final-cta .button::after {
  width: 30px !important;
  height: 30px !important;
  flex: 0 0 30px !important;
}

.pricing-page .pricing-final-cta .button {
  width: max-content !important;
  min-width: 244px !important;
  max-width: 100% !important;
}

.button.primary,
.hero-actions .button.primary,
.portfolio-cta .button.primary,
.pricing-submit.button.primary,
.pricing-final-cta .button.primary {
  --io-btn-accent: #f6c221;
  --io-btn-text: #ffd629;
  --io-btn-glow: rgba(246, 194, 33, 0.46);
  --button-snow-color: #ffd629;
  border-color: rgba(255, 214, 41, 0.96) !important;
}

.button.ghost,
.header-cta,
.contact-submit,
.view-all-link,
.contact-link,
.team-linkedin {
  --button-snow-color: #fff;
}

.contact-actions {
  align-items: stretch;
}

.contact-link {
  --io-btn-accent: #84c4ff;
  --io-btn-text: #f7fbff;
  --io-btn-glow: rgba(72, 174, 255, 0.52);
  position: relative;
  min-height: clamp(86px, 6.2vw, 112px);
  display: grid !important;
  grid-template-columns: clamp(58px, 4.6vw, 86px) 1px minmax(0, 1fr) clamp(42px, 3.8vw, 62px);
  align-items: center;
  column-gap: clamp(18px, 2vw, 34px);
  padding: clamp(14px, 1.4vw, 22px) clamp(18px, 1.7vw, 30px) !important;
  border: 2px solid rgba(247, 251, 255, 0.95) !important;
  border-radius: 999px !important;
  background:
    radial-gradient(circle at 90% 50%, color-mix(in srgb, var(--io-btn-accent) 13%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(17, 25, 34, 0.9), rgba(3, 8, 14, 0.94)) !important;
  box-shadow:
    0 0 18px var(--io-btn-glow),
    0 0 42px color-mix(in srgb, var(--io-btn-accent) 26%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.09),
    inset 0 0 20px color-mix(in srgb, var(--io-btn-accent) 7%, transparent) !important;
  overflow: hidden;
}

.contact-link::before {
  content: "";
  grid-column: 2;
  grid-row: 1;
  width: 1px;
  height: clamp(44px, 3.2vw, 62px);
  background: color-mix(in srgb, var(--io-btn-accent) 54%, rgba(255, 255, 255, 0.58));
  box-shadow: 0 0 14px color-mix(in srgb, var(--io-btn-accent) 34%, transparent);
}

.contact-link::after {
  content: "";
  grid-column: 4;
  grid-row: 1;
  width: clamp(42px, 3.8vw, 62px);
  height: clamp(42px, 3.8vw, 62px);
  display: block;
  background: url("media/icons/link-arrow.png") center / contain no-repeat;
  filter: drop-shadow(0 0 10px color-mix(in srgb, var(--io-btn-accent) 62%, transparent));
}

.contact-link img {
  grid-column: 1;
  grid-row: 1;
  width: clamp(44px, 3.9vw, 72px) !important;
  height: clamp(44px, 3.9vw, 72px) !important;
  object-fit: contain;
  filter: drop-shadow(0 0 12px color-mix(in srgb, var(--io-btn-accent) 48%, transparent));
}

.contact-link span {
  grid-column: 3;
  grid-row: 1;
  min-width: 0;
}

.contact-link strong {
  color: var(--io-btn-text) !important;
  font-family: "RajdhaniHero", Impact, Haettenschweiler, "Arial Black", sans-serif;
  font-size: clamp(24px, 2vw, 36px) !important;
  font-weight: 700 !important;
  line-height: 1 !important;
  letter-spacing: 0.12em !important;
  text-transform: uppercase;
  text-shadow: 0 0 8px rgba(255, 255, 255, 0.72);
}

.contact-link em {
  margin-top: 6px;
  color: rgba(247, 251, 255, 0.72) !important;
  font-size: clamp(11px, 0.8vw, 14px) !important;
  line-height: 1.2;
}

.contact-link:hover,
.contact-link:focus-visible {
  transform: translateY(-1px);
  background:
    radial-gradient(circle at 90% 50%, color-mix(in srgb, var(--io-btn-accent) 18%, transparent), transparent 34%),
    linear-gradient(180deg, rgba(21, 33, 45, 0.96), rgba(4, 12, 20, 0.98)) !important;
  box-shadow:
    0 0 24px var(--io-btn-glow),
    0 0 58px color-mix(in srgb, var(--io-btn-accent) 36%, transparent),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 24px color-mix(in srgb, var(--io-btn-accent) 10%, transparent) !important;
}

.contact-link.has-button-snow > .button-snow {
  grid-column: 1 / -1;
  right: 12%;
  bottom: 8px;
  left: 12%;
  height: 30px;
}

.pricing-calculator .pricing-choice,
.pricing-calculator .tier-segments button,
.pricing-calculator .team-size-button {
  border-radius: 6px !important;
  border-width: 1px !important;
}

@media (max-width: 700px) {
  .button,
  .contact-submit,
  .pricing-submit,
  .view-all-link,
  .filter-button {
    min-height: 52px;
    min-width: 0 !important;
    padding: 11px 14px 11px 22px;
    font-size: clamp(14px, 4vw, 18px) !important;
    gap: 14px;
  }

  .button::before,
  .contact-submit::before,
  .pricing-submit::before,
  .view-all-link::before,
  .filter-button::before {
    height: 32px;
    margin-left: 4px;
  }

  .button::after,
  .contact-submit::after,
  .pricing-submit::after,
  .view-all-link::after,
  .filter-button::after {
    width: 34px;
    height: 34px;
  }

  .contact-link {
    min-height: 74px;
    grid-template-columns: 44px 1px minmax(0, 1fr) 36px;
    column-gap: 12px;
    padding: 12px 14px !important;
  }

  .contact-link::after {
    width: 36px;
    height: 36px;
  }
}

/* Final sparkle lock: use the Book Intro Call-style particles on every CTA pill. */
.site-header .intro-call-cta.has-button-snow,
.button.has-button-snow,
.header-cta.has-button-snow,
.contact-submit.has-button-snow,
.pricing-submit.has-button-snow,
.view-all-link.has-button-snow,
.contact-link.has-button-snow,
.team-linkedin.has-button-snow {
  --button-snow-opacity: 1;
}

.button.primary.has-button-snow,
.portfolio-cta .button.primary.has-button-snow,
.pricing-submit.button.primary.has-button-snow,
.pricing-final-cta .button.primary.has-button-snow {
  --button-snow-color: #ffd629 !important;
}

.button.ghost.has-button-snow,
.header-cta.has-button-snow,
.site-header .intro-call-cta.has-button-snow,
.contact-submit.has-button-snow,
.view-all-link.has-button-snow,
.contact-link.has-button-snow,
.team-linkedin.has-button-snow {
  --button-snow-color: #fff !important;
}

.button.has-button-snow > .button-snow,
.header-cta.has-button-snow > .button-snow,
.contact-submit.has-button-snow > .button-snow,
.pricing-submit.has-button-snow > .button-snow,
.view-all-link.has-button-snow > .button-snow,
.contact-link.has-button-snow > .button-snow,
.team-linkedin.has-button-snow > .button-snow {
  position: absolute !important;
  display: block !important;
  z-index: 1 !important;
  top: 50% !important;
  right: 10% !important;
  bottom: auto !important;
  left: 10% !important;
  height: 2.8em !important;
  color: var(--button-snow-color) !important;
  opacity: 1 !important;
  overflow: hidden !important;
  transform: translateY(-50%) !important;
}

.contact-link.has-button-snow > .button-snow {
  grid-column: 1 / -1 !important;
  right: 15% !important;
  left: 25% !important;
}

.has-button-snow > .button-snow i {
  background: currentColor !important;
  box-shadow:
    0 0 10px currentColor,
    0 0 20px currentColor,
    0 0 34px currentColor !important;
}

.button.has-button-snow > .button-snow::before,
.button.has-button-snow > .button-snow::after,
.header-cta.has-button-snow > .button-snow::before,
.header-cta.has-button-snow > .button-snow::after,
.contact-submit.has-button-snow > .button-snow::before,
.contact-submit.has-button-snow > .button-snow::after,
.pricing-submit.has-button-snow > .button-snow::before,
.pricing-submit.has-button-snow > .button-snow::after,
.view-all-link.has-button-snow > .button-snow::before,
.view-all-link.has-button-snow > .button-snow::after,
.contact-link.has-button-snow > .button-snow::before,
.contact-link.has-button-snow > .button-snow::after,
.team-linkedin.has-button-snow > .button-snow::before,
.team-linkedin.has-button-snow > .button-snow::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.button.has-button-snow > .button-snow::before,
.header-cta.has-button-snow > .button-snow::before,
.contact-submit.has-button-snow > .button-snow::before,
.pricing-submit.has-button-snow > .button-snow::before,
.view-all-link.has-button-snow > .button-snow::before,
.contact-link.has-button-snow > .button-snow::before,
.team-linkedin.has-button-snow > .button-snow::before {
  background:
    radial-gradient(circle at 12% 58%, currentColor 0 2px, transparent 2.6px),
    radial-gradient(circle at 28% 30%, currentColor 0 1.5px, transparent 2.1px),
    radial-gradient(circle at 45% 68%, currentColor 0 2px, transparent 2.7px),
    radial-gradient(circle at 62% 38%, currentColor 0 1.6px, transparent 2.2px),
    radial-gradient(circle at 78% 66%, currentColor 0 2px, transparent 2.7px),
    radial-gradient(circle at 93% 32%, currentColor 0 1.5px, transparent 2.1px);
  filter: drop-shadow(0 0 8px currentColor) drop-shadow(0 0 18px currentColor);
  opacity: 0.95;
}

.button.has-button-snow > .button-snow::after,
.header-cta.has-button-snow > .button-snow::after,
.contact-submit.has-button-snow > .button-snow::after,
.pricing-submit.has-button-snow > .button-snow::after,
.view-all-link.has-button-snow > .button-snow::after,
.contact-link.has-button-snow > .button-snow::after,
.team-linkedin.has-button-snow > .button-snow::after {
  background:
    radial-gradient(circle at 20% 74%, currentColor 0 1px, transparent 1.7px),
    radial-gradient(circle at 36% 44%, currentColor 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 55% 80%, currentColor 0 1px, transparent 1.7px),
    radial-gradient(circle at 70% 24%, currentColor 0 1.2px, transparent 1.9px),
    radial-gradient(circle at 86% 58%, currentColor 0 1px, transparent 1.7px);
  filter: drop-shadow(0 0 7px currentColor) drop-shadow(0 0 14px currentColor);
  opacity: 0.72;
  animation: button-snow-twinkle 1450ms ease-in-out infinite alternate;
}

.has-button-snow > :not(.contact-snow),
.contact-link.has-button-snow::before,
.contact-link.has-button-snow::after,
.button.has-button-snow::before,
.button.has-button-snow::after,
.contact-submit.has-button-snow::before,
.contact-submit.has-button-snow::after,
.pricing-submit.has-button-snow::before,
.pricing-submit.has-button-snow::after,
.view-all-link.has-button-snow::before,
.view-all-link.has-button-snow::after,
.header-cta.has-button-snow::after {
  position: relative;
  z-index: 2;
}

.button.has-button-snow > .button-snow::before,
.button.has-button-snow > .button-snow::after,
.header-cta.has-button-snow > .button-snow::before,
.header-cta.has-button-snow > .button-snow::after,
.contact-submit.has-button-snow > .button-snow::before,
.contact-submit.has-button-snow > .button-snow::after,
.pricing-submit.has-button-snow > .button-snow::before,
.pricing-submit.has-button-snow > .button-snow::after,
.view-all-link.has-button-snow > .button-snow::before,
.view-all-link.has-button-snow > .button-snow::after,
.contact-link.has-button-snow > .button-snow::before,
.contact-link.has-button-snow > .button-snow::after,
.team-linkedin.has-button-snow > .button-snow::before,
.team-linkedin.has-button-snow > .button-snow::after {
  content: none !important;
}

.button.has-button-snow:hover > .button-snow i,
.button.has-button-snow:focus-visible > .button-snow i,
.header-cta.has-button-snow:hover > .button-snow i,
.header-cta.has-button-snow:focus-visible > .button-snow i,
.contact-submit.has-button-snow:hover > .button-snow i,
.contact-submit.has-button-snow:focus-visible > .button-snow i,
.pricing-submit.has-button-snow:hover > .button-snow i,
.pricing-submit.has-button-snow:focus-visible > .button-snow i,
.view-all-link.has-button-snow:hover > .button-snow i,
.view-all-link.has-button-snow:focus-visible > .button-snow i,
.contact-link.has-button-snow:hover > .button-snow i,
.contact-link.has-button-snow:focus-visible > .button-snow i,
.team-linkedin.has-button-snow:hover > .button-snow i,
.team-linkedin.has-button-snow:focus-visible > .button-snow i {
  animation-duration: calc(var(--snow-speed, 1800ms) * 0.42) !important;
}

.contact-link img {
  width: clamp(32px, 2.45vw, 42px) !important;
  height: clamp(32px, 2.45vw, 42px) !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  filter: none !important;
}

.contact-actions .contact-link,
.contact-actions .contact-link:first-child,
.contact-actions .contact-link:last-child {
  border-color: rgba(247, 251, 255, 0.95) !important;
  background:
    radial-gradient(circle at 84% 50%, rgba(105, 184, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(18, 28, 38, 0.88), rgba(3, 8, 14, 0.92)) !important;
  box-shadow:
    0 0 18px rgba(60, 155, 235, 0.78),
    0 0 40px rgba(25, 112, 188, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 18px rgba(120, 200, 255, 0.08) !important;
}

.contact-actions .contact-link:hover,
.contact-actions .contact-link:focus-visible {
  border-color: #fff !important;
  background:
    radial-gradient(circle at 84% 50%, rgba(105, 184, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(20, 33, 45, 0.96), rgba(5, 12, 20, 0.96)) !important;
  box-shadow:
    0 0 24px rgba(72, 174, 255, 0.92),
    0 0 54px rgba(25, 112, 188, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 22px rgba(120, 200, 255, 0.12) !important;
}

.button.ghost,
.view-all-link,
.portfolio-page .site-header .header-cta {
  border-color: rgba(247, 251, 255, 0.95) !important;
  background:
    radial-gradient(circle at 84% 50%, rgba(105, 184, 255, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(18, 28, 38, 0.88), rgba(3, 8, 14, 0.92)) !important;
  box-shadow:
    0 0 18px rgba(60, 155, 235, 0.78),
    0 0 40px rgba(25, 112, 188, 0.34),
    inset 0 0 0 1px rgba(255, 255, 255, 0.1),
    inset 0 0 18px rgba(120, 200, 255, 0.08) !important;
}

.button.ghost:hover,
.button.ghost:focus-visible,
.view-all-link:hover,
.view-all-link:focus-visible,
.portfolio-page .site-header .header-cta:hover,
.portfolio-page .site-header .header-cta:focus-visible {
  border-color: #fff !important;
  background:
    radial-gradient(circle at 84% 50%, rgba(105, 184, 255, 0.18), transparent 36%),
    linear-gradient(180deg, rgba(20, 33, 45, 0.96), rgba(5, 12, 20, 0.96)) !important;
  box-shadow:
    0 0 24px rgba(72, 174, 255, 0.92),
    0 0 54px rgba(25, 112, 188, 0.42),
    inset 0 0 0 1px rgba(255, 255, 255, 0.16),
    inset 0 0 22px rgba(120, 200, 255, 0.12) !important;
}

.home-hero .hero-actions {
  padding-left: clamp(18px, 1.6vw, 30px);
}

@media (min-width: 1281px) and (max-width: 1600px) {
  .home-hero .hero-visual img {
    width: 1400px;
    transform: translateX(3%) translateY(2%);
  }
}

.contact-form label > span:first-child {
  color: #fff !important;
  text-shadow:
    0 0 8px rgba(255, 255, 255, 0.58),
    0 0 18px rgba(42, 182, 255, 0.24);
}

.contact-field {
  position: relative;
  display: block;
  border: 2px solid rgba(247, 251, 255, 0.9);
  border-radius: 10px;
  background:
    radial-gradient(circle at 90% 50%, rgba(132, 196, 255, 0.08), transparent 30%),
    linear-gradient(180deg, rgba(17, 25, 34, 0.84), rgba(3, 8, 14, 0.94));
  box-shadow:
    0 0 17px rgba(139, 201, 255, 0.44),
    0 0 40px rgba(72, 174, 255, 0.2),
    inset 0 0 0 1px rgba(255, 255, 255, 0.11),
    inset 0 0 24px rgba(132, 196, 255, 0.08);
  overflow: hidden;
  transition: border-color 160ms ease, box-shadow 160ms ease, background 160ms ease;
}

.contact-field::before,
.contact-field::after {
  content: none;
  position: absolute;
  inset: 0;
  z-index: 0;
  border-radius: inherit;
  pointer-events: none;
}

.contact-field:focus-within {
  border-color: rgba(255, 255, 255, 1);
  background:
    radial-gradient(circle at 90% 50%, rgba(132, 196, 255, 0.12), transparent 30%),
    linear-gradient(180deg, rgba(20, 30, 41, 0.9), rgba(3, 8, 14, 0.96));
  box-shadow:
    0 0 22px rgba(247, 251, 255, 0.58),
    0 0 54px rgba(72, 174, 255, 0.28),
    inset 0 0 0 1px rgba(255, 255, 255, 0.18),
    inset 0 0 28px rgba(132, 196, 255, 0.12);
}

.contact-field > input,
.contact-field > textarea {
  position: relative;
  z-index: 2;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
}

.contact-field::before {
  background: none;
  opacity: 0;
  animation: none;
}

.contact-field::after {
  background: none;
  opacity: 0;
  animation: none;
}

.contact-message-field::after {
  background: none;
}

.contact-field.has-field-snow {
  --button-snow-color: #fff !important;
  --button-snow-opacity: 0.95;
}

.contact-field.has-field-snow > .button-snow {
  position: absolute !important;
  z-index: 1 !important;
  inset: auto 10px 4px 10px !important;
  display: block !important;
  height: clamp(34px, 3vw, 46px) !important;
  color: #fff !important;
  opacity: 0.95 !important;
  overflow: hidden !important;
  transform: none !important;
}

.contact-message-field.has-field-snow > .button-snow {
  height: clamp(62px, 5vw, 82px) !important;
}

.contact-field.has-field-snow > .button-snow i {
  width: var(--snow-size, 3px) !important;
  height: var(--snow-size, 3px) !important;
  background: currentColor !important;
  box-shadow:
    0 0 9px currentColor,
    0 0 18px rgba(255, 255, 255, 0.72),
    0 0 28px rgba(139, 201, 255, 0.35) !important;
}

.contact-field.has-field-snow > .button-snow i:nth-child(1) { --snow-x: 1.4%; --snow-size: 2px; --snow-speed: 1650ms; --snow-delay: -160ms; --snow-drift: 3px; }
.contact-field.has-field-snow > .button-snow i:nth-child(2) { --snow-x: 3.6%; --snow-size: 2px; --snow-speed: 2050ms; --snow-delay: -900ms; --snow-drift: -3px; }
.contact-field.has-field-snow > .button-snow i:nth-child(3) { --snow-x: 6.5%; --snow-size: 3px; --snow-speed: 1780ms; --snow-delay: -1320ms; --snow-drift: 4px; }
.contact-field.has-field-snow > .button-snow i:nth-child(4) { --snow-x: 10%; --snow-size: 2px; --snow-speed: 2150ms; --snow-delay: -540ms; --snow-drift: -4px; }
.contact-field.has-field-snow > .button-snow i:nth-child(5) { --snow-x: 82%; --snow-size: 2px; --snow-speed: 1880ms; --snow-delay: -1120ms; --snow-drift: 5px; }
.contact-field.has-field-snow > .button-snow i:nth-child(6) { --snow-x: 86%; --snow-size: 2px; --snow-speed: 2020ms; --snow-delay: -1480ms; --snow-drift: -5px; }
.contact-field.has-field-snow > .button-snow i:nth-child(7) { --snow-x: 90%; --snow-size: 3px; --snow-speed: 1700ms; --snow-delay: -640ms; --snow-drift: 4px; }
.contact-field.has-field-snow > .button-snow i:nth-child(8) { --snow-x: 93.5%; --snow-size: 2px; --snow-speed: 2180ms; --snow-delay: -1720ms; --snow-drift: -4px; }
.contact-field.has-field-snow > .button-snow i:nth-child(9) { --snow-x: 96%; --snow-size: 3px; --snow-speed: 1800ms; --snow-delay: -1240ms; --snow-drift: 5px; }
.contact-field.has-field-snow > .button-snow i:nth-child(10) { --snow-x: 98.4%; --snow-size: 2px; --snow-speed: 2100ms; --snow-delay: -320ms; --snow-drift: -3px; }
.contact-field.has-field-snow > .button-snow i:nth-child(n + 11) {
  display: none !important;
}

.contact-field:not(.contact-message-field).has-field-snow > .button-snow i:nth-child(-n + 4) {
  display: none !important;
}

@keyframes contact-field-shine {
  from {
    opacity: 0.58;
  }

  to {
    opacity: 0.84;
  }
}

@keyframes contact-field-sparkle {
  from {
    opacity: 0.58;
    filter: drop-shadow(0 0 2px rgba(42, 182, 255, 0.55));
  }

  to {
    opacity: 0.9;
    filter: drop-shadow(0 0 5px rgba(255, 255, 255, 0.58));
  }
}

@keyframes button-snow-twinkle {
  from {
    opacity: 0.42;
    transform: translate3d(-2px, 1px, 0);
  }

  to {
    opacity: 0.95;
    transform: translate3d(2px, -1px, 0);
  }
}

/* Final responsive hero clearance: keep the fixed header from covering the carousel artwork. */
:root {
  --home-hero-top-clearance: clamp(78px, 4.8vw, 96px);
}

.home-hero.reference-hero {
  padding-top: var(--home-hero-top-clearance) !important;
}

.home-hero .hero-stage {
  min-height: clamp(470px, 31vw, 610px) !important;
  overflow: hidden;
}

.home-hero .hero-visual {
  min-height: clamp(430px, 30vw, 570px);
  padding-top: 0;
  overflow: visible;
}

.home-hero .hero-visual img {
  transform: translateX(3.5%) translateY(0);
}

@media (max-width: 1280px) {
  :root {
    --home-hero-top-clearance: clamp(82px, 7.8vw, 108px);
  }

  .home-hero .hero-stage {
    min-height: clamp(450px, 41vw, 540px) !important;
  }

  .home-hero .hero-visual {
    min-height: clamp(400px, 38vw, 500px);
  }
}

@media (max-width: 980px) {
  :root {
    --home-hero-top-clearance: clamp(96px, 14vw, 116px);
  }

  .home-hero.reference-hero {
    width: calc(100vw - 24px);
    max-width: calc(100vw - 24px);
  }

  .home-hero .hero-stage {
    min-height: auto !important;
    row-gap: 0;
  }

  .home-hero .hero-copy {
    padding-top: clamp(28px, 6vw, 42px);
  }

  .home-hero .hero-visual {
    min-height: clamp(330px, 72vw, 500px);
    margin-top: clamp(-34px, -5vw, -16px);
    padding-top: 0;
    overflow: hidden;
  }

  .home-hero .hero-visual .hero-visual-slide {
    width: min(186vw, 960px);
  }
}

@media (max-width: 700px) {
  .home-hero .hero-copy p:not(.hero-kicker) {
    max-width: 100%;
    white-space: normal !important;
    overflow-wrap: break-word;
  }

  .home-hero .hero-actions {
    gap: 12px;
  }

  .home-hero .hero-actions .button {
    flex: 1 1 calc(50% - 6px);
    min-width: 0;
    padding-inline: 14px;
    font-size: clamp(12px, 3.1vw, 14px);
  }
}

@media (max-width: 560px) {
  :root {
    --home-hero-top-clearance: clamp(92px, 20vw, 108px);
  }

  .home-hero.reference-hero {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .home-hero .hero-copy {
    padding-top: clamp(24px, 7vw, 34px);
    padding-bottom: clamp(16px, 5vw, 22px);
  }

  .home-hero .hero-visual {
    min-height: clamp(292px, 76vw, 380px);
    margin-top: clamp(-22px, -4vw, -10px);
  }

  .home-hero .hero-visual .hero-visual-slide {
    width: min(176vw, 760px);
  }

  .site-header .header-cta {
    display: none;
  }

}

@media (max-width: 420px) {
  :root {
    --home-hero-top-clearance: clamp(88px, 22vw, 102px);
  }

  .home-hero .hero-visual {
    min-height: clamp(270px, 74vw, 330px);
  }

  .home-hero .hero-actions .button {
    min-height: 52px;
    padding-inline: 12px;
  }
}

/* Homepage header is in-flow: nav ends, hero carousel starts immediately. */
.home-page .site-header {
  position: sticky;
}

.home-page .home-hero.reference-hero {
  padding-top: 0 !important;
}

@media (min-width: 1051px) {
  .home-page .home-hero .hero-stage {
    min-height: clamp(500px, 25.2vw, 520px) !important;
    overflow: visible;
  }

  .home-page .home-hero .hero-visual {
    align-self: stretch;
    min-height: 0;
    align-items: flex-end;
    overflow: visible;
  }

  .home-page .home-hero .hero-visual .hero-visual-slide {
    width: min(1500px, 112vw);
    height: auto;
    max-width: none;
    transform: translateX(3.5%) translateY(0);
  }
}

/* Homepage hero artwork anchor: the top-right corner stays fixed; only scale changes. */
.home-page .site-header {
  position: sticky;
}

.home-page .home-hero.reference-hero {
  padding-top: 0 !important;
}

.home-page .home-hero .hero-stage {
  align-items: start !important;
  min-height: clamp(500px, 25.2vw, 520px) !important;
  overflow: hidden !important;
  z-index: 1;
}

.home-page .home-hero .hero-stage::before {
  z-index: 3;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.98) 0 31%, rgba(0, 0, 0, 0.78) 43%, rgba(0, 0, 0, 0.28) 61%, transparent 82%),
    radial-gradient(circle at 76% 56%, rgba(18, 63, 104, 0.2), transparent 34%);
}

.home-page .home-hero .hero-copy {
  position: relative;
  z-index: 4;
  align-self: start !important;
  padding-top: clamp(44px, 4.2vw, 72px);
  padding-bottom: clamp(22px, 2vw, 34px);
}

.home-page .home-hero .hero-visual {
  position: absolute !important;
  inset: 0 !important;
  z-index: 2;
  display: block !important;
  min-height: 0 !important;
  margin: 0 !important;
  overflow: hidden !important;
  pointer-events: auto;
}

.home-page .home-hero .hero-visual .hero-visual-slide,
.home-page .home-hero .hero-visual .hero-visual-slide:first-child,
.home-page .home-hero .hero-visual .hero-visual-slide:nth-child(1) {
  position: absolute !important;
  top: 0 !important;
  right: 0 !important;
  bottom: auto !important;
  left: auto !important;
  width: min(1500px, 112vw) !important;
  max-width: none !important;
  height: auto !important;
  margin: 0 !important;
  transform: translate3d(0, 0, 0) !important;
  transform-origin: top right !important;
}

@media (min-width: 981px) {
  .home-page .home-hero {
    gap: 0 !important;
    min-height: auto !important;
    padding-bottom: clamp(4px, 0.4vw, 7px) !important;
  }

  .home-page .home-hero .studio-stats {
    z-index: 4;
    margin-top: clamp(3px, 0.32vw, 6px) !important;
  }

  .home-page .core-services-section {
    margin-top: 0 !important;
  }

  .home-page .core-services-section .services-after-proof {
    margin-top: clamp(-16px, -0.8vw, -8px) !important;
  }
}

@media (max-width: 1280px) {
  .home-page .home-hero .hero-stage {
    min-height: clamp(430px, 39vw, 520px) !important;
  }

  .home-page .home-hero .hero-visual .hero-visual-slide,
  .home-page .home-hero .hero-visual .hero-visual-slide:first-child,
  .home-page .home-hero .hero-visual .hero-visual-slide:nth-child(1) {
    width: min(1500px, 112vw) !important;
  }
}

@media (max-width: 980px) {
  .home-page .home-hero .hero-stage {
    min-height: clamp(430px, 46vw, 500px) !important;
    row-gap: 0 !important;
  }

  .home-page .home-hero .hero-copy {
    width: min(620px, calc(100vw - 32px));
    max-width: calc(100vw - 32px);
    padding-top: clamp(30px, 5.8vw, 52px);
    padding-bottom: 18px;
  }

  .home-page .home-hero .hero-copy h1 {
    max-width: 10.4ch;
    font-size: clamp(44px, 8.4vw, 72px);
    line-height: 0.9;
  }

  .home-page .home-hero .hero-copy p:not(.hero-kicker) {
    max-width: 56ch;
    font-size: clamp(16px, 2.25vw, 20px);
    line-height: 1.28;
  }

  .home-page .home-hero .hero-visual .hero-visual-slide,
  .home-page .home-hero .hero-visual .hero-visual-slide:first-child,
  .home-page .home-hero .hero-visual .hero-visual-slide:nth-child(1) {
    width: min(980px, 188vw) !important;
    transform: translate3d(18%, 0, 0) !important;
  }
}

@media (max-width: 560px) {
  .home-page .home-hero.reference-hero {
    width: calc(100vw - 20px);
    max-width: calc(100vw - 20px);
  }

  .home-page .home-hero .hero-stage {
    min-height: clamp(350px, 75vw, 380px) !important;
  }

  .home-page .home-hero .hero-copy {
    position: absolute;
    inset: 0 !important;
    width: 100%;
    height: 100%;
    max-width: none;
    padding: 0;
    transform: none !important;
  }

  .home-page .home-hero .hero-copy h1 {
    position: absolute;
    top: clamp(164px, 36vw, 190px);
    left: clamp(10px, 3.2vw, 18px);
    right: clamp(10px, 3.2vw, 18px);
    bottom: auto;
    max-width: 10.6ch;
    margin-bottom: 0;
    font-size: clamp(36px, 9.2vw, 48px);
    line-height: 0.92;
    transform: none !important;
  }

  .home-page .home-hero .hero-copy p:not(.hero-kicker) {
    display: none !important;
  }

  .home-page .home-hero .hero-kicker {
    position: absolute;
    top: clamp(126px, 28vw, 148px);
    left: clamp(10px, 3.2vw, 18px);
    right: clamp(10px, 3.2vw, 18px);
    bottom: auto;
    margin: 0;
    font-size: clamp(12px, 3vw, 14px);
    transform: none !important;
  }

  .home-page .home-hero .hero-actions {
    position: absolute;
    left: clamp(10px, 3.2vw, 18px);
    right: clamp(10px, 3.2vw, 18px);
    top: clamp(260px, 61vw, 292px);
    bottom: auto;
    margin: 0;
    transform: none !important;
  }

  .home-page .home-hero .hero-visual .hero-visual-slide,
  .home-page .home-hero .hero-visual .hero-visual-slide:first-child,
  .home-page .home-hero .hero-visual .hero-visual-slide:nth-child(1) {
    width: min(760px, 186vw) !important;
    transform: translate3d(28%, 0, 0) !important;
  }
}

@media (max-width: 420px) {
  .home-page .home-hero .hero-stage {
    min-height: clamp(340px, 88vw, 370px) !important;
  }

  .home-page .home-hero .hero-kicker {
    top: clamp(120px, 32vw, 134px);
  }

  .home-page .home-hero .hero-copy h1 {
    top: clamp(158px, 42vw, 176px);
    font-size: clamp(34px, 9.1vw, 40px);
  }

  .home-page .home-hero .hero-actions {
    top: clamp(250px, 67vw, 276px);
  }

  .home-page .home-hero .hero-visual .hero-visual-slide,
  .home-page .home-hero .hero-visual .hero-visual-slide:first-child,
  .home-page .home-hero .hero-visual .hero-visual-slide:nth-child(1) {
    width: min(700px, 190vw) !important;
    transform: translate3d(32%, 0, 0) !important;
  }
}


