@font-face {
  font-family: "Golos Text";
  src: url("/assets/fonts/golos-text-cyrillic.woff2") format("woff2");
  font-display: swap;
  font-style: normal;
  font-weight: 400 900;
}

:root {
  color-scheme: light;
  --paper: #f7f9fc;
  --surface: #ffffff;
  --surface-blue: #edf4ff;
  --ink: #07172f;
  --muted: #5e6d82;
  --brand: #0b57e3;
  --brand-dark: #063da8;
  --brand-pale: #dbeaff;
  --line: #dce4ef;
  --line-strong: #aebdd0;
  --dark: #07111f;
  --mono: ui-monospace, "SFMono-Regular", "Roboto Mono", Consolas, monospace;
  --radius-s: 0.75rem;
  --radius-m: 1.25rem;
  --radius-l: 2rem;
  --page: min(100% - 2rem, 86rem);
  --shadow-soft: 0 1.25rem 4rem rgba(7, 23, 47, 0.09);
  --motion-ease: cubic-bezier(0.2, 0.8, 0.2, 1);
  --motion-press: 120ms;
  --motion-state: 360ms;
  --motion-reveal: 760ms;
  --motion-media: 900ms;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: clip;
  background: var(--paper);
}

body {
  min-width: 20rem;
  margin: 0;
  overflow-x: clip;
  background:
    linear-gradient(rgba(11, 87, 227, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 87, 227, 0.022) 1px, transparent 1px),
    var(--paper);
  background-size: 4.5rem 4.5rem;
  color: var(--ink);
  font-family: "Golos Text", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 1rem;
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

button,
a,
input,
textarea,
summary {
  -webkit-tap-highlight-color: transparent;
}

button,
summary {
  cursor: pointer;
}

img,
video,
svg {
  display: block;
  max-width: 100%;
}

.video-frame {
  isolation: isolate;
}

.video-frame > .video-poster {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 1;
  transition: opacity var(--motion-state) var(--motion-ease);
}

.video-frame > video {
  position: relative;
  z-index: 1;
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--motion-state) var(--motion-ease), visibility 0s linear var(--motion-state);
}

.video-frame.video-playing > .video-poster {
  visibility: hidden;
  opacity: 0;
  transition: opacity var(--motion-state) var(--motion-ease), visibility 0s linear var(--motion-state);
}

.video-frame.video-playing > video {
  visibility: visible;
  opacity: 1;
  transition-delay: 0s;
}

video::-webkit-media-controls-start-playback-button,
video::-webkit-media-controls-overlay-play-button {
  display: none !important;
  -webkit-appearance: none;
}

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

p,
h1,
h2,
h3,
dl,
dd,
figure {
  margin: 0;
}

button,
input,
textarea {
  border: 0;
}

button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 0.1875rem solid #ffb800;
  outline-offset: 0.1875rem;
}

[hidden] {
  display: none !important;
}

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

.section-shell,
.header-inner {
  width: var(--page);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  transform: translateY(-150%);
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  transform: translateY(0);
}

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

.reveal {
  opacity: 0;
  transform: translateY(1.1rem);
  transition: opacity var(--motion-reveal) var(--motion-ease) var(--reveal-delay, 0ms), transform var(--motion-reveal) var(--motion-ease) var(--reveal-delay, 0ms);
}

.reveal.is-visible,
.no-js .reveal {
  opacity: 1;
  transform: none;
}

.process-line li:nth-child(2),
.work-card:nth-child(2),
.process-proof:nth-child(2) { --reveal-delay: 70ms; }

.process-line li:nth-child(3),
.work-card:nth-child(3),
.process-proof:nth-child(3) { --reveal-delay: 130ms; }

.process-line li:nth-child(4),
.work-card:nth-child(4),
.process-proof:nth-child(4) { --reveal-delay: 190ms; }

.process-line li:nth-child(5),
.process-proof:nth-child(5) { --reveal-delay: 250ms; }

.eyebrow {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  color: var(--brand);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 1.75rem;
  height: 0.25rem;
  background: currentColor;
}

.eyebrow-light {
  color: #83adff;
}

.button {
  position: relative;
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  padding: 0.85rem 1.25rem;
  border: 0.0625rem solid transparent;
  border-radius: 0.75rem;
  font-size: 0.94rem;
  font-weight: 700;
  line-height: 1;
  transition: background-color var(--motion-state) var(--motion-ease), border-color var(--motion-state) var(--motion-ease), color var(--motion-state) var(--motion-ease), transform var(--motion-press) var(--motion-ease);
}

.button:active {
  transform: scale(0.975);
  transition-duration: var(--motion-press);
}

.button i {
  font-style: normal;
  font-size: 1.25em;
}

.button-primary,
.button-small {
  background: var(--brand);
  color: white;
}

.button-primary:hover,
.button-small:hover {
  background: var(--brand-dark);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.125rem;
  border-radius: 0.625rem;
  font-size: 0.83rem;
}

.button-inverse {
  background: white;
  color: var(--brand-dark);
}

.button-inverse:hover {
  background: #eaf2ff;
}

.site-header {
  --header-progress: 0;
  position: sticky;
  z-index: 100;
  top: 0;
  padding: 0.75rem 0;
}

.header-inner {
  min-height: 4.5rem;
  display: grid;
  grid-template-columns: minmax(10rem, 13.5rem) 1fr auto auto;
  align-items: center;
  gap: 1.25rem;
  padding: 0.55rem 0.65rem 0.55rem 1rem;
  border: 0.0625rem solid rgba(174, 189, 208, calc(0.38 + var(--header-progress) * 0.35));
  border-radius: 1rem;
  background: rgba(255, 255, 255, calc(0.78 + var(--header-progress) * 0.17));
  box-shadow: 0 0.6rem 2.2rem rgba(7, 23, 47, calc(var(--header-progress) * 0.1));
  -webkit-backdrop-filter: blur(calc(0.5rem + var(--header-progress) * 0.75rem)) saturate(150%);
  backdrop-filter: blur(calc(0.5rem + var(--header-progress) * 0.75rem)) saturate(150%);
}

.brand {
  display: block;
  width: 100%;
}

.brand img {
  width: 100%;
  height: 3rem;
  object-fit: contain;
  object-position: left center;
}

.main-menu {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.2vw, 2.25rem);
}

.main-menu a,
.header-city {
  color: #24344b;
  font-size: 0.875rem;
  font-weight: 600;
  white-space: nowrap;
}

.main-menu a {
  position: relative;
  padding-block: 0.75rem;
}

.main-menu a::after {
  position: absolute;
  right: 0;
  bottom: 0.35rem;
  left: 0;
  height: 0.125rem;
  transform: scaleX(0);
  transform-origin: right center;
  background: var(--brand);
  content: "";
  transition: transform var(--motion-state) var(--motion-ease);
}

.main-menu a:hover::after,
.main-menu a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left center;
}

.header-city {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.header-city svg {
  width: 1rem;
  fill: none;
  stroke: var(--brand);
  stroke-width: 1.8;
}

.menu-button {
  display: none;
  min-height: 2.75rem;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0.9rem;
  border-radius: 0.625rem;
  background: var(--ink);
  color: white;
  font-size: 0.8rem;
  font-weight: 700;
}

.menu-button i,
.menu-button i::before,
.menu-button i::after {
  width: 1rem;
  height: 0.1rem;
  background: currentColor;
  content: "";
  transition: transform var(--motion-press) var(--motion-ease);
}

.menu-button i {
  position: relative;
}

.menu-button i::before,
.menu-button i::after {
  position: absolute;
  left: 0;
}

.menu-button i::before { top: -0.3rem; }
.menu-button i::after { top: 0.3rem; }

.menu-button[aria-expanded="true"] i { background: transparent; }
.menu-button[aria-expanded="true"] i::before { top: 0; transform: rotate(45deg); }
.menu-button[aria-expanded="true"] i::after { top: 0; transform: rotate(-45deg); }

.hero {
  min-height: calc(100svh - 6rem);
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(32rem, 1.1fr);
  align-items: center;
  gap: clamp(2rem, 4vw, 5.5rem);
  padding-block: clamp(2rem, 5vw, 5rem) clamp(3rem, 6vw, 6rem);
}

.hero-copy {
  display: grid;
  align-content: center;
  gap: 1.5rem;
}

.hero h1 {
  max-width: 12ch;
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: clamp(3.2rem, 5.4vw, 6rem);
  font-weight: 700;
  letter-spacing: -0.065em;
  line-height: 0.94;
  text-wrap: balance;
}

.hero h1 span {
  display: block;
  color: var(--brand);
}

.hero-intro {
  max-width: 38rem;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.35vw, 1.3rem);
  line-height: 1.45;
}

.quick-lead {
  width: min(100%, 38rem);
  display: grid;
  gap: 0.65rem;
  padding: 0.75rem;
  border: 0.0625rem solid var(--line);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 0.8rem 2.5rem rgba(7, 23, 47, 0.07);
}

.quick-lead-main {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto;
  gap: 0.5rem;
}

.phone-field {
  min-height: 3.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding-inline: 1rem;
  border: 0.0625rem solid var(--line-strong);
  border-radius: 0.7rem;
  background: white;
  color: var(--ink);
  transition: border-color var(--motion-state) var(--motion-ease), box-shadow var(--motion-state) var(--motion-ease);
}

.phone-field:focus-within {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(11, 87, 227, 0.12);
}

.phone-field span {
  font-weight: 700;
}

.phone-field input {
  min-width: 0;
  width: 100%;
  padding: 0;
  outline: 0;
  background: transparent;
  color: var(--ink);
  font-size: 1rem;
  font-weight: 600;
}

textarea {
  width: 100%;
  resize: vertical;
  padding: 0.85rem 1rem;
  border: 0.0625rem solid var(--line-strong);
  border-radius: 0.7rem;
  outline: 0;
  background: white;
  color: var(--ink);
}

textarea:focus {
  border-color: var(--brand);
  box-shadow: 0 0 0 0.2rem rgba(11, 87, 227, 0.12);
}

.form-comment-toggle {
  width: max-content;
  padding: 0.35rem 0.25rem;
  background: transparent;
  color: var(--brand-dark);
  font-size: 0.79rem;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: rgba(11, 87, 227, 0.3);
  text-underline-offset: 0.2rem;
}

.consent-field {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.35;
}

.consent-field input {
  width: 1rem;
  height: 1rem;
  margin: 0.05rem 0 0;
  accent-color: var(--brand);
}

.consent-field a {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 0.15rem;
}

.form-status {
  min-height: 1.2em;
  color: var(--brand-dark);
  font-size: 0.78rem;
  font-weight: 600;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-block: 0.0625rem solid var(--line);
}

.hero-facts div {
  padding: 0.85rem 1rem;
  border-right: 0.0625rem solid var(--line);
}

.hero-facts div:first-child { padding-left: 0; }
.hero-facts div:last-child { border-right: 0; }

.hero-facts dt {
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-facts dd {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  text-transform: uppercase;
}

.hero-stage {
  --hero-x: 0px;
  --hero-y: 0px;
  height: clamp(34rem, 50vw, 45rem);
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(11rem, 0.75fr);
  grid-template-rows: 1fr 1fr;
  gap: 0.75rem;
  transform: translate3d(var(--hero-x), var(--hero-y), 0);
  transition: transform 100ms linear;
}

.hero-video,
.hero-case {
  position: relative;
  overflow: hidden;
  border: 0.0625rem solid rgba(7, 23, 47, 0.18);
  border-radius: var(--radius-m);
  background: var(--ink);
  box-shadow: var(--shadow-soft);
}

.hero-video {
  grid-row: 1 / 3;
}

.hero-video video,
.hero-case img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-video::after,
.hero-case::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 58%, rgba(0, 0, 0, 0.72));
  content: "";
}

.hero-video p,
.hero-case span {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  left: 1rem;
  color: white;
}

.hero-video p {
  display: grid;
  gap: 0.15rem;
}

.hero-video strong,
.hero-case span {
  font-size: 0.9rem;
  font-weight: 700;
}

.hero-video p span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-case {
  transition: transform var(--motion-state) var(--motion-ease), box-shadow var(--motion-state) var(--motion-ease);
}

.hero-case:hover {
  z-index: 3;
  transform: translateY(-0.25rem) scale(1.015);
  box-shadow: 0 1.5rem 4rem rgba(7, 23, 47, 0.16);
}

.hero-case img {
  object-position: center;
  transition: transform var(--motion-media) var(--motion-ease);
}

.hero-case:hover img { transform: scale(1.03); }

.hero-case span {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
}

.hero-case i { font-style: normal; }

.proof-ticker {
  width: 100%;
  overflow: hidden;
  border-block: 0.0625rem solid var(--line-strong);
  background: white;
}

.proof-ticker-track {
  min-width: max-content;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 2.5vw, 2.5rem);
  padding: 0.95rem 1rem;
  color: #33445c;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.proof-ticker-track i {
  color: var(--brand);
  font-style: normal;
}

.brandable,
.process,
.works,
.audiences,
.faq {
  padding-block: clamp(5rem, 9vw, 9rem);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.52fr);
  align-items: end;
  gap: 1.25rem 3rem;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.section-heading .eyebrow {
  grid-column: 1 / -1;
}

.section-heading h2,
.solution-grid-heading h2,
.technology-heading h2,
.contact h2,
.lead-dialog h2 {
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: clamp(2.2rem, 4.2vw, 4.6rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.98;
  text-wrap: balance;
}

.section-heading > p:last-child,
.technology-heading > p:last-child {
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.2rem);
}

.product-scene {
  position: relative;
  overflow: hidden;
  border: 0.0625rem solid var(--line-strong);
  border-radius: var(--radius-l);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.product-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.4rem;
  padding: 0.5rem;
  scroll-padding-inline: 0.5rem;
  border-bottom: 0.0625rem solid var(--line);
}

.product-tabs button {
  min-height: 3.25rem;
  padding: 0.65rem 0.75rem;
  border: 0.0625rem solid transparent;
  border-radius: 0.8rem;
  scroll-margin-inline: 0.5rem;
  background: transparent;
  color: var(--muted);
  font-weight: 700;
  transition:
    background-color var(--motion-state) var(--motion-ease),
    border-color var(--motion-state) var(--motion-ease),
    box-shadow var(--motion-state) var(--motion-ease),
    color var(--motion-state) var(--motion-ease);
}

.product-tabs button:hover:not([aria-selected="true"]) {
  border-color: rgba(11, 87, 227, 0.12);
  background: rgba(11, 87, 227, 0.055);
  color: var(--ink);
}

.product-tabs button:focus-visible {
  outline: 0.125rem solid var(--brand-dark);
  outline-offset: 0.125rem;
}

.product-tabs button[aria-selected="true"] {
  background: var(--brand);
  box-shadow: 0 0.35rem 1rem rgba(11, 87, 227, 0.18);
  color: white;
}

.product-viewport {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  touch-action: pan-y;
  cursor: grab;
}

.product-viewport:active { cursor: grabbing; }

.product-track {
  display: flex;
  will-change: transform;
}

.product-track > article {
  min-width: 0;
  flex: 0 0 100%;
  min-height: 38rem;
  display: grid;
  grid-template-columns: minmax(0, 1.35fr) minmax(20rem, 0.65fr);
  align-items: stretch;
}

.product-art {
  position: relative;
  min-height: 38rem;
  overflow: hidden;
  background:
    radial-gradient(circle at 72% 18%, rgba(255, 255, 255, 0.96), transparent 30%),
    radial-gradient(circle at 32% 72%, rgba(112, 167, 255, 0.42), transparent 38%),
    linear-gradient(142deg, #f5f9ff 0%, #dceaff 48%, #b9d5ff 100%);
}

.product-art::before {
  position: absolute;
  z-index: 1;
  inset: 1.25rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.7);
  border-radius: 1.35rem;
  box-shadow: inset 0 0 0 0.0625rem rgba(11, 87, 227, 0.09), 0 2rem 5rem rgba(11, 87, 227, 0.08);
  content: "";
}

.product-art::after {
  position: absolute;
  z-index: 0;
  inset: 15% 5%;
  background: url("/assets/logo-original-light.png") center / 88% auto no-repeat;
  content: "";
  filter: blur(0.35rem);
  opacity: 0.19;
  transform: rotate(-5deg) scale(1.08);
}

.product-art img {
  position: absolute;
  z-index: 2;
  object-fit: contain;
  filter: drop-shadow(0 1.65rem 1.4rem rgba(20, 63, 131, 0.2));
  user-select: none;
  pointer-events: none;
}

.product-art-clothing img:nth-child(1) { width: 57%; height: 75%; right: 9%; bottom: 3%; }
.product-art-clothing img:nth-child(2) { width: 44%; height: 58%; left: 4%; bottom: 7%; }
.product-art-clothing img:nth-child(3) { width: 24%; height: 40%; left: 39%; bottom: 2%; }

.product-art-souvenirs img:nth-child(1) { width: 52%; height: 65%; left: 7%; bottom: 4%; transform: rotate(-5deg); }
.product-art-souvenirs img:nth-child(2) { width: 37%; height: 48%; right: 8%; bottom: 8%; }
.product-art-souvenirs img:nth-child(3) { width: 44%; height: 55%; right: 18%; top: 2%; transform: rotate(7deg); }

.product-art-package img:nth-child(1) { width: 70%; height: 78%; left: 16%; bottom: 3%; }
.product-art-package img:nth-child(2) { width: 34%; height: 44%; right: 3%; top: 6%; transform: rotate(8deg); }

.product-art-gifts img:nth-child(1) { width: 68%; height: 77%; left: 7%; bottom: 2%; }
.product-art-gifts img:nth-child(2) { width: 30%; height: 38%; right: 6%; bottom: 10%; }
.product-art-gifts img:nth-child(3) { width: 36%; height: 46%; right: 5%; top: 4%; transform: rotate(6deg); }

.product-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  padding: clamp(2rem, 4vw, 4rem);
  background:
    linear-gradient(90deg, rgba(11, 87, 227, 0.035) 1px, transparent 1px),
    linear-gradient(rgba(11, 87, 227, 0.035) 1px, transparent 1px),
    white;
  background-size: 2.75rem 2.75rem;
}

.product-copy > p {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.product-copy h3 {
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: clamp(2rem, 3.5vw, 3.8rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 0.96;
}

.product-copy > span {
  max-width: 27rem;
  color: var(--muted);
  font-size: 1rem;
}

.product-copy a {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
  margin-top: 0.75rem;
  padding-bottom: 0.4rem;
  border-bottom: 0.125rem solid var(--brand);
  color: var(--brand-dark);
  font-weight: 700;
}

.product-copy i { font-style: normal; }

.product-scene-status {
  position: absolute;
  z-index: 3;
  right: 1rem;
  bottom: 1rem;
  padding: 0.35rem 0.55rem;
  border: 0.0625rem solid rgba(11, 87, 227, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  color: var(--brand-dark);
  font-family: var(--mono);
  font-size: 0.65rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.solution-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.5vw, 1.25rem);
  margin-top: clamp(4rem, 7vw, 7rem);
}

.solution-grid-heading {
  grid-column: 1 / -1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem 4rem;
  padding: 0 0 1rem;
}

.solution-grid-heading h2 {
  max-width: 14ch;
  font-size: clamp(2rem, 3vw, 3.4rem);
}

.solution-grid-heading > div {
  display: grid;
  gap: 1rem;
}

.solution-grid-heading > div > p:last-child {
  max-width: 32rem;
  color: var(--muted);
}

.solution-card {
  position: relative;
  min-height: clamp(20rem, 29vw, 25rem);
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(1.4rem, 2.6vw, 2.25rem) 48% clamp(1.4rem, 2.6vw, 2.25rem) clamp(1.4rem, 2.6vw, 2.25rem);
  border: 0.0625rem solid rgba(126, 157, 199, 0.42);
  border-radius: 1.5rem;
  background:
    linear-gradient(125deg, rgba(255, 255, 255, 0.94), rgba(237, 245, 255, 0.82)),
    var(--surface-blue);
  box-shadow: 0 1rem 3rem rgba(7, 23, 47, 0.06);
  transition: border-color var(--motion-state) var(--motion-ease), box-shadow var(--motion-state) var(--motion-ease), transform var(--motion-state) var(--motion-ease);
}

.solution-card::before {
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  bottom: 0;
  width: 46%;
  background:
    linear-gradient(90deg, transparent, rgba(11, 87, 227, 0.08)),
    repeating-linear-gradient(90deg, rgba(11, 87, 227, 0.06) 0 1px, transparent 1px 2.75rem);
  content: "";
}

.solution-card:hover {
  transform: translateY(-0.3rem);
  border-color: rgba(11, 87, 227, 0.55);
  box-shadow: 0 1.5rem 3.5rem rgba(11, 87, 227, 0.13);
}

.solution-card > span {
  color: var(--muted);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.solution-card strong {
  max-width: 13ch;
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
  letter-spacing: -0.04em;
  line-height: 1.02;
}

.solution-card p {
  color: var(--muted);
  font-size: 0.9rem;
}

.solution-card i {
  position: relative;
  z-index: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: auto;
  padding: 0.65rem 0.85rem;
  border: 0.0625rem solid rgba(11, 87, 227, 0.2);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.74);
  color: var(--brand);
  font-size: 0.78rem;
  font-weight: 700;
  font-style: normal;
}

.solution-card i b { font-size: 1.1rem; }

.solution-product {
  position: absolute;
  z-index: 1;
  right: -2%;
  bottom: -7%;
  width: 49%;
  height: 86%;
  object-fit: contain;
  filter: drop-shadow(0 1.2rem 1rem rgba(12, 48, 105, 0.2));
  transform: rotate(2deg);
  transition: transform var(--motion-media) var(--motion-ease);
  pointer-events: none;
}

.seo-service-links {
  display: flex;
  align-items: stretch;
  margin-top: 1rem;
  overflow-x: auto;
  border: 0.0625rem solid var(--line-strong);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.74);
  scrollbar-width: none;
}

.seo-service-links::-webkit-scrollbar { display: none; }

.seo-service-links span,
.seo-service-links a {
  min-width: max-content;
  display: flex;
  align-items: center;
  padding: 1rem 1.1rem;
  border-right: 0.0625rem solid var(--line);
  font-size: 0.78rem;
  font-weight: 700;
}

.seo-service-links span {
  background: var(--ink);
  color: white;
  font-family: var(--mono);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.seo-service-links a {
  color: var(--brand-dark);
  transition: background-color var(--motion-state) var(--motion-ease), color var(--motion-state) var(--motion-ease);
}

.seo-service-links a:last-child { border-right: 0; }
.seo-service-links a:hover { background: var(--brand); color: white; }

.solution-card:hover .solution-product { transform: translateY(-0.4rem) rotate(-1deg) scale(1.025); }
.solution-card-print .solution-product { right: -5%; width: 54%; transform: rotate(-3deg); }
.solution-card-souvenir .solution-product { right: 1%; bottom: -3%; width: 43%; height: 80%; transform: rotate(5deg); }
.solution-card-package .solution-product { right: -7%; bottom: -1%; width: 56%; height: 88%; transform: rotate(-2deg); }

.process {
  border-top: 0.0625rem solid var(--line);
}

.process-board {
  position: relative;
  overflow: hidden;
  border: 0.0625rem solid var(--line-strong);
  border-radius: var(--radius-l);
  background:
    linear-gradient(rgba(11, 87, 227, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 87, 227, 0.035) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(234, 243, 255, 0.9));
  background-size: 3rem 3rem, 3rem 3rem, 100% 100%;
  box-shadow: var(--shadow-soft);
}

.process-line {
  --stitch-progress: 0;
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 0;
  padding: 0;
  margin: 0;
  list-style: none;
  border-bottom: 0.0625rem solid var(--line-strong);
}

.process-line::before {
  position: absolute;
  z-index: 1;
  top: 0;
  left: 0;
  width: calc(var(--stitch-progress) * 100%);
  height: 0.1875rem;
  background: var(--brand);
  content: "";
  transition: width 180ms linear;
}

.process-line li {
  min-height: 11.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  padding: 1.4rem 1.3rem 1.7rem;
  border-right: 0.0625rem solid var(--line);
}

.process-line li:first-child { padding-left: 1.3rem; }
.process-line li:last-child { border-right: 0; }

.process-line span {
  margin-bottom: 0.9rem;
  color: var(--brand);
  font-family: var(--mono);
  font-size: clamp(1.1rem, 1.45vw, 1.4rem);
  font-weight: 700;
  letter-spacing: -0.035em;
  line-height: 1;
}

.process-line strong {
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
}

.process-line p {
  color: var(--muted);
  font-size: 0.88rem;
}

.process-proofs {
  position: relative;
  display: grid;
  grid-template-columns: minmax(15rem, 1.3fr) minmax(9rem, 0.92fr) minmax(10rem, 1fr) minmax(11rem, 1.08fr) minmax(11rem, 1.12fr);
  gap: 0.3rem;
  margin: clamp(0.85rem, 1.8vw, 1.35rem);
  padding: 0.4rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(11, 87, 227, 0.18);
  border-radius: 1.35rem;
  background: linear-gradient(120deg, rgba(255, 255, 255, 0.98), rgba(236, 245, 255, 0.92));
  box-shadow: 0 1.15rem 3.2rem rgba(4, 34, 82, 0.09), inset 0 0.0625rem 0 rgba(255, 255, 255, 0.9);
}

.process-proof {
  min-width: 0;
  min-height: 7.5rem;
}

.process-proof-brand {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.15rem 1.2rem;
  overflow: hidden;
  border-radius: 1rem;
  background: linear-gradient(145deg, #dceaff, #f6faff 72%);
}

.process-proof-logo {
  width: min(100%, 11rem);
  height: auto;
  object-fit: contain;
}

.process-proof-brand-copy {
  color: var(--brand);
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-proof-fact {
  display: grid;
  grid-template-rows: auto 1fr;
  align-content: space-between;
  gap: 0.8rem;
  padding: 1.05rem 0.95rem 1.1rem;
  border-left: 0.0625rem solid rgba(11, 87, 227, 0.12);
}

.process-proof-emoji {
  width: 2.65rem;
  height: 2.65rem;
  display: grid;
  place-items: center;
  border: 0.0625rem solid rgba(11, 87, 227, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 0.45rem 1.2rem rgba(11, 87, 227, 0.1);
  font-family: "Apple Color Emoji", "Segoe UI Emoji", "Noto Color Emoji", sans-serif;
  font-size: 1.35rem;
  line-height: 1;
}

.process-proof-text {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.28rem;
}

.process-proof-title {
  color: var(--ink);
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: clamp(0.88rem, 1vw, 1.02rem);
  font-weight: 740;
  letter-spacing: -0.03em;
  line-height: 1.08;
}

.process-proof-copy {
  color: var(--muted);
  font-size: 0.7rem;
  font-weight: 560;
  line-height: 1.3;
}

.process-proof.is-visible .process-proof-emoji {
  animation: proof-emoji-in 560ms cubic-bezier(0.2, 0.8, 0.2, 1) var(--reveal-delay, 0ms) both;
}

@keyframes proof-emoji-in {
  from { opacity: 0; transform: translateY(0.55rem) scale(0.9); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.technologies {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 88% 12%, rgba(142, 187, 255, 0.24), transparent 30%),
    linear-gradient(rgba(11, 87, 227, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(11, 87, 227, 0.04) 1px, transparent 1px),
    #eef5ff;
  background-size: 100% 100%, 4.5rem 4.5rem, 4.5rem 4.5rem, 100% 100%;
  color: var(--ink);
}

.technology-shell {
  padding-block: clamp(5rem, 9vw, 8rem);
}

.technology-heading {
  max-width: 66rem;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(16rem, 0.55fr);
  align-items: end;
  gap: 1.25rem;
  margin-bottom: 3rem;
}

.technology-heading .eyebrow { grid-column: 1 / -1; }

.technology-heading h2 {
  grid-column: 1;
  font-size: clamp(2.4rem, 5vw, 5.4rem);
}

.technology-heading > p:last-child {
  grid-column: 1;
  max-width: 42rem;
  color: var(--muted);
}

.technology-heading-note {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: end;
  justify-self: end;
  display: grid;
  gap: 0.6rem;
  width: min(100%, 21rem);
  padding: 1.15rem 1.3rem 1.25rem;
  border-top: 0.125rem solid var(--brand);
  border-bottom: 0.0625rem solid rgba(11, 87, 227, 0.22);
  color: var(--ink);
}

.technology-heading-note span {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.technology-heading-note strong {
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.technology-heading-note p {
  max-width: 19rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.technologies .eyebrow { color: var(--brand); }

.technology-rail-window {
  position: relative;
  contain: paint;
  overflow: hidden;
  border-block: 0.0625rem solid rgba(11, 87, 227, 0.2);
  background: rgba(255, 255, 255, 0.62);
}

.technology-rail-window::before,
.technology-rail-window::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 5rem;
  pointer-events: none;
  content: "";
}

.technology-rail-window::before { left: 0; background: linear-gradient(90deg, #eef5ff, transparent); }
.technology-rail-window::after { right: 0; background: linear-gradient(-90deg, #eef5ff, transparent); }

.technology-rail-track {
  width: max-content;
  display: flex;
  align-items: stretch;
  animation: none;
  transform: translateZ(0);
  backface-visibility: hidden;
  will-change: transform;
}

.technology-rail.is-ready .technology-rail-track {
  animation: technology-tape 72s linear infinite;
}

.technology-rail.is-paused .technology-rail-track {
  animation-play-state: paused;
}

.technology-rail-track button,
.technology-rail-track [data-technology-repeat] {
  position: relative;
  min-height: 5.25rem;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2.4rem;
  border: 0;
  border-right: 0.0625rem solid rgba(11, 87, 227, 0.16);
  background: transparent;
  color: #536985;
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: 0.025em;
  text-align: center;
  text-transform: uppercase;
  white-space: nowrap;
}

.technology-rail-track [data-technology-repeat] {
  cursor: pointer;
  user-select: none;
}

.technology-rail-track button::before,
.technology-rail-track button::after,
.technology-rail-track [data-technology-repeat]::before,
.technology-rail-track [data-technology-repeat]::after {
  position: absolute;
  left: 50%;
  width: 0.0625rem;
  height: 0.45rem;
  background: rgba(11, 87, 227, 0.35);
  content: "";
}

.technology-rail-track button::before { top: 0; }
.technology-rail-track button::after { bottom: 0; }
.technology-rail-track [data-technology-repeat]::before { top: 0; }
.technology-rail-track [data-technology-repeat]::after { bottom: 0; }

.technology-rail-track button[aria-pressed="true"],
.technology-rail-track [data-technology-repeat].is-active,
.technology-rail-track button:active,
.technology-rail-track [data-technology-repeat]:active {
  background: var(--brand);
  color: white;
}

@keyframes technology-tape {
  from { transform: translate3d(0, 0, 0); }
  to { transform: translate3d(-50%, 0, 0); }
}

.technology-detail {
  position: relative;
  display: grid;
  grid-template-columns: minmax(13rem, 0.55fr) minmax(20rem, 1.45fr);
  align-items: stretch;
  gap: clamp(1.25rem, 2.5vw, 2.5rem);
  min-height: clamp(15rem, 20vw, 19rem);
  margin-top: 1rem;
  padding: 1rem;
  overflow: hidden;
  border: 0.0625rem solid rgba(11, 87, 227, 0.16);
  border-radius: 1.25rem;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 1rem 3rem rgba(7, 23, 47, 0.055);
}

.technology-detail > span {
  position: absolute;
  z-index: 3;
  top: 1.75rem;
  left: 1.75rem;
  padding: 0.45rem 0.62rem;
  border: 0.0625rem solid rgba(255, 255, 255, 0.55);
  border-radius: 999px;
  background: rgba(7, 23, 47, 0.78);
  color: white;
  font-family: var(--mono);
  font-size: 0.75rem;
  line-height: 1;
  -webkit-backdrop-filter: blur(0.55rem);
  backdrop-filter: blur(0.55rem);
}

.technology-example {
  position: relative;
  grid-row: 1 / span 2;
  min-height: 100%;
  overflow: hidden;
  border-radius: 0.8rem;
  background: #dfeaff;
}

.technology-example::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(180deg, transparent, rgba(4, 16, 34, 0.76));
  pointer-events: none;
  content: "";
}

.technology-example [data-technology-image] {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform-origin: center;
}

.technology-example-mark {
  position: absolute;
  z-index: 2;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.65rem;
  height: 2.65rem;
  padding: 0.36rem;
  object-fit: contain;
  border: 0.0625rem solid rgba(255, 255, 255, 0.5);
  border-radius: 0.72rem;
  background: rgba(6, 20, 42, 0.84);
  box-shadow: 0 0.45rem 1.2rem rgba(6, 20, 42, 0.2);
  -webkit-backdrop-filter: blur(0.55rem);
  backdrop-filter: blur(0.55rem);
}

.technology-example figcaption {
  position: absolute;
  z-index: 2;
  right: 1rem;
  bottom: 0.9rem;
  left: 1rem;
  color: white;
  font-family: var(--mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.technology-detail div {
  grid-column: 2;
  grid-row: 1;
  display: grid;
  align-content: center;
  gap: 0.35rem;
  padding-block: 2rem;
}

.technology-detail small {
  color: #6b7c91;
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.technology-detail h3 {
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: clamp(2.1rem, 4vw, 4rem);
  font-weight: 700;
  letter-spacing: -0.055em;
  line-height: 1.02;
}

.technology-detail p { color: var(--muted); }

.technology-detail a {
  grid-column: 2;
  grid-row: 2;
  align-self: end;
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 1.5rem;
  padding: 0.8rem 0;
  border-bottom: 0.125rem solid var(--brand);
  color: var(--brand-dark);
  font-weight: 700;
}

.technology-detail i { font-style: normal; }

.works-heading h2 { max-width: 13ch; }

.work-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(7.75rem, 9vw, 9.75rem);
  grid-auto-flow: dense;
  gap: clamp(0.75rem, 1.3vw, 1.1rem);
}

.work-card {
  position: relative;
  min-width: 0;
  min-height: 0;
  align-self: stretch;
  overflow: hidden;
  border: 0.0625rem solid var(--line-strong);
  border-radius: 1.15rem;
  background: #07172f;
  box-shadow: 0 0.7rem 2rem rgba(7, 23, 47, 0.055);
  isolation: isolate;
  transition: transform var(--motion-state) var(--motion-ease), box-shadow var(--motion-state) var(--motion-ease);
}

.work-card::after {
  position: absolute;
  z-index: 2;
  inset: 42% 0 0;
  background: linear-gradient(180deg, transparent, rgba(3, 13, 29, 0.82));
  pointer-events: none;
  content: "";
}

.work-card:hover {
  transform: translateY(-0.28rem);
  box-shadow: var(--shadow-soft);
}

.work-card img,
.work-card video {
  position: absolute;
  z-index: 1;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--case-position, center);
  transition: transform var(--motion-media) var(--motion-ease);
}

.work-card.video-frame > .video-poster {
  z-index: 1;
  object-position: var(--case-position, center);
}

.work-card:hover img,
.work-card:hover video { transform: scale(1.012); }

.work-card--feature { grid-column: span 7; grid-row: span 3; }
.work-card--portrait { grid-column: span 5; grid-row: span 3; }
.work-card--landscape { grid-column: span 8; grid-row: span 2; }
.work-card--compact { grid-column: span 4; grid-row: span 2; }

.case-orange { --case-position: center 56%; }
.case-motion { --case-position: center 54%; }
.case-machine { --case-position: center 48%; }
.case-corporate { --case-position: center 48%; }
.case-caps { --case-position: center 48%; }
.case-art { --case-position: center 38%; }
.case-pack { --case-position: center 35%; }
.case-gifts { --case-position: center 54%; }
.case-mugs { --case-position: center 44%; }
.case-pigeon { --case-position: center 42%; }
.case-thread { --case-position: center 48%; }
.case-cat { --case-position: center 42%; }

.work-card figcaption {
  position: absolute;
  z-index: 3;
  right: 0;
  bottom: 0;
  left: 0;
  min-height: 4.75rem;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 0.75rem 1.5rem;
  padding: 1.1rem 1.2rem 1rem;
  color: white;
}

.work-card strong {
  max-width: 20ch;
  font-size: clamp(0.96rem, 1.35vw, 1.18rem);
  line-height: 1.12;
}

.work-card span {
  color: rgba(255, 255, 255, 0.72);
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.audiences {
  border-top: 0.0625rem solid var(--line);
}

.audience-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border-top: 0.0625rem solid var(--line-strong);
  border-left: 0.0625rem solid var(--line-strong);
}

.audience-card {
  position: relative;
  min-height: 18rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  overflow: hidden;
  padding: 1.5rem 42% 1.5rem 1.5rem;
  border-right: 0.0625rem solid var(--line-strong);
  border-bottom: 0.0625rem solid var(--line-strong);
  background: rgba(255, 255, 255, 0.72);
  transition: background-color var(--motion-state) var(--motion-ease), color var(--motion-state) var(--motion-ease);
}

.audience-card:hover {
  background: var(--surface-blue);
}

.audience-card > span {
  color: var(--brand);
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.audience-card strong {
  max-width: 18ch;
  font-family: "Golos Text", system-ui, sans-serif;
  font-size: clamp(1.25rem, 2vw, 1.9rem);
  font-weight: 700;
  line-height: 1.12;
}

.audience-card img {
  position: absolute;
  right: -3%;
  bottom: -10%;
  width: 44%;
  height: 90%;
  object-fit: contain;
  filter: drop-shadow(0 1rem 1rem rgba(7, 23, 47, 0.18));
  transition: transform var(--motion-state) var(--motion-ease);
}

.audience-card:hover img { transform: translateY(-0.35rem) rotate(-2deg); }

.audience-card i {
  margin-top: auto;
  color: var(--brand);
  font-size: 1.5rem;
  font-style: normal;
}

.faq {
  display: grid;
  grid-template-columns: minmax(15rem, 0.38fr) minmax(0, 0.62fr);
  gap: clamp(2rem, 6vw, 7rem);
  border-top: 0.0625rem solid var(--line);
}

.faq .section-heading {
  display: block;
  margin: 0;
}

.faq .section-heading .eyebrow { margin-bottom: 1rem; }

.faq-list {
  border-top: 0.0625rem solid var(--line-strong);
}

.faq details {
  border-bottom: 0.0625rem solid var(--line-strong);
}

.faq summary {
  min-height: 4.8rem;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 1rem;
  padding: 1rem 0;
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  font-weight: 700;
  list-style: none;
}

.faq summary::-webkit-details-marker { display: none; }

.faq summary i {
  color: var(--brand);
  font-size: 1.35rem;
  font-style: normal;
  transition: transform var(--motion-state) var(--motion-ease);
}

.faq details[open] summary i { transform: rotate(45deg); }

.faq details p {
  max-width: 44rem;
  padding: 0 3rem 1.5rem 0;
  color: var(--muted);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(28rem, 1.1fr);
  gap: clamp(2rem, 6vw, 7rem);
  margin-bottom: clamp(2rem, 5vw, 5rem);
  padding: clamp(2rem, 5vw, 4.5rem);
  border-radius: var(--radius-l);
  background: var(--brand);
  color: white;
}

.contact-copy {
  display: grid;
  align-content: start;
  gap: 1.1rem;
}

.contact-copy > p:not(.eyebrow) {
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.75);
  font-size: 1.05rem;
}

.contact-direct {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem 1.5rem;
  margin-top: auto;
  padding-top: 2rem;
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
}

.contact-direct a { border-bottom: 0.0625rem solid rgba(255, 255, 255, 0.45); }

.contact-form {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) auto;
  align-content: center;
  gap: 0.65rem;
  padding: clamp(1rem, 2vw, 1.5rem);
  border: 0.0625rem solid rgba(255, 255, 255, 0.28);
  background: rgba(0, 37, 113, 0.2);
}

.contact-form .form-comment-toggle,
.contact-form .consent-field,
.contact-form .form-status,
.contact-form [data-comment-wrap] {
  grid-column: 1 / -1;
}

.contact-form .form-comment-toggle { color: white; }
.contact-form .consent-field { color: rgba(255, 255, 255, 0.72); }
.contact-form .form-status { color: white; }

.lead-dialog {
  width: min(100% - 2rem, 34rem);
  max-height: min(90svh, 46rem);
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: var(--radius-l);
  background: transparent;
  color: var(--ink);
}

.lead-dialog::backdrop {
  background: rgba(3, 12, 26, 0.54);
  -webkit-backdrop-filter: blur(0.5rem);
  backdrop-filter: blur(0.5rem);
}

.dialog-shell {
  position: relative;
  display: grid;
  gap: 1rem;
  padding: clamp(1.5rem, 5vw, 3rem);
  border: 0.0625rem solid var(--line);
  border-radius: var(--radius-l);
  background: white;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.24);
}

.dialog-shell > p:not(.eyebrow) { color: var(--muted); }

.dialog-close {
  position: absolute;
  top: 0.8rem;
  right: 0.8rem;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: var(--paper);
  color: var(--ink);
  font-size: 1.5rem;
}

.dialog-form {
  display: grid;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.field-label {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.78rem;
  font-weight: 700;
}

.field-label span { color: var(--muted); font-weight: 400; }

.site-footer {
  padding-top: 4rem;
  border-top: 0.0625rem solid var(--line-strong);
  background: white;
}

.footer-main {
  display: grid;
  grid-template-columns: minmax(12rem, 1fr) 1.2fr 0.8fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3.5rem;
}

.footer-brand img {
  width: min(100%, 15rem);
  height: auto;
}

.footer-main > p {
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links,
.footer-main address {
  display: grid;
  align-content: start;
  gap: 0.55rem;
  font-size: 0.86rem;
  font-style: normal;
}

.footer-links a:hover,
.footer-main address a:hover { color: var(--brand); }

.footer-main address span { color: var(--muted); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.5rem;
  padding-block: 1rem;
  border-top: 0.0625rem solid var(--line);
  color: var(--muted);
  font-size: 0.68rem;
}

.footer-bottom span:nth-child(2) { margin-right: auto; }

.footer-bottom a { text-decoration: underline; text-underline-offset: 0.15rem; }

@media (max-width: 75rem) {
  :root { --page: min(100% - 2rem, 72rem); }

  .header-inner {
    grid-template-columns: 11.5rem 1fr auto;
  }

  .header-city { display: none; }

  .hero {
    grid-template-columns: minmax(0, 0.92fr) minmax(28rem, 1.08fr);
    gap: 2.5rem;
  }

  .hero h1 { font-size: clamp(2.8rem, 5.6vw, 4.8rem); }

  .product-track > article {
    grid-template-columns: minmax(0, 1.1fr) minmax(19rem, 0.9fr);
  }

  .work-grid { grid-template-columns: repeat(12, minmax(0, 1fr)); }
}

@media (max-width: 62rem) {
  .header-inner {
    grid-template-columns: minmax(9.5rem, 12rem) 1fr auto auto;
  }

  .main-menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    right: 1rem;
    left: 1rem;
    display: grid;
    gap: 0;
    padding: 0.5rem;
    transform: translateY(-0.5rem) scale(0.98);
    transform-origin: top right;
    visibility: hidden;
    opacity: 0;
    border: 0.0625rem solid var(--line);
    border-radius: 1rem;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow-soft);
    transition: opacity var(--motion-state) var(--motion-ease), transform var(--motion-state) var(--motion-ease);
    -webkit-backdrop-filter: blur(1rem);
    backdrop-filter: blur(1rem);
  }

  .main-menu.is-open {
    transform: none;
    visibility: visible;
    opacity: 1;
  }

  .main-menu a {
    padding: 0.9rem 1rem;
    border-bottom: 0.0625rem solid var(--line);
    font-size: 1rem;
  }

  .main-menu a:last-child { border-bottom: 0; }
  .main-menu a::after { display: none; }
  .menu-button { display: inline-flex; }

  .hero {
    min-height: 0;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 3rem;
  }

  .hero-copy { max-width: 47rem; }
  .hero h1 { max-width: 13ch; font-size: clamp(3.8rem, 8vw, 6rem); }
  .hero-stage { height: min(70vw, 41rem); }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading .eyebrow { grid-column: 1; }

  .technology-heading {
    grid-template-columns: 1fr;
  }

  .technology-heading-note {
    grid-column: 1;
    grid-row: auto;
    justify-self: start;
  }

  .technology-detail {
    grid-template-columns: minmax(12rem, 0.58fr) minmax(0, 1.42fr);
  }

  .technology-example {
    grid-row: 1 / span 2;
  }

  .technology-copy {
    grid-column: 2;
    grid-row: 1;
  }

  .technology-detail a {
    grid-column: 2;
    grid-row: 2;
    justify-self: start;
  }

  .product-track > article {
    grid-template-columns: 1fr 0.8fr;
  }

  .solution-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

  .process-line { grid-template-columns: repeat(5, minmax(12rem, 1fr)); overflow-x: auto; }
  .process-line li { min-height: 11rem; }

  .work-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: clamp(8.5rem, 18vw, 11rem);
  }
  .work-card--feature,
  .work-card--landscape { grid-column: span 2; grid-row: span 2; }
  .work-card--portrait,
  .work-card--compact { grid-column: span 1; grid-row: span 2; }

  .contact {
    grid-template-columns: 1fr;
  }

  .footer-main {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 47.5rem) {
  :root {
    --page: min(100% - 1.25rem, 46rem);
    --radius-l: 1.35rem;
  }

  body { background-size: 3.5rem 3.5rem; }

  .site-header { padding: 0.45rem 0; }

  .header-inner {
    min-height: 3.8rem;
    grid-template-columns: minmax(8rem, 10.75rem) 1fr auto;
    gap: 0.5rem;
    padding: 0.4rem 0.4rem 0.4rem 0.75rem;
    border-radius: 0.8rem;
  }

  .brand img { height: 2.55rem; }
  .header-inner > .button-small { justify-self: end; min-height: 2.55rem; padding-inline: 0.8rem; font-size: 0.73rem; }
  .menu-button { min-height: 2.55rem; padding-inline: 0.75rem; }
  .menu-button span { display: none; }

  .hero {
    gap: 2.25rem;
    padding-block: 2.25rem 3.75rem;
  }

  .hero-copy { gap: 1.15rem; }
  .hero h1 { max-width: 12ch; font-size: clamp(2.55rem, 11vw, 4.3rem); line-height: 1; }
  .hero-intro { font-size: 1rem; }

  .quick-lead { padding: 0.55rem; }
  .quick-lead-main { grid-template-columns: 1fr; }
  .quick-lead .button { width: 100%; }

  .hero-facts div { padding: 0.7rem 0.5rem; }
  .hero-facts dt { font-size: 0.96rem; }
  .hero-facts dd { font-size: 0.58rem; }

  .hero-stage {
    height: auto;
    grid-template-columns: 1fr;
    grid-template-rows: minmax(26rem, 70svh) 13rem;
    gap: 0.5rem;
  }

  .hero-case-secondary { display: none; }
  .hero-video { grid-row: 1; }
  .hero-case-primary { grid-row: 2; }

  .hero-video p,
  .hero-case span { right: 0.65rem; bottom: 0.65rem; left: 0.65rem; }
  .hero-video strong,
  .hero-case span { font-size: 0.72rem; }
  .hero-video p span { font-size: 0.51rem; }

  .proof-ticker { overflow-x: auto; }
  .proof-ticker-track { justify-content: flex-start; }

  .brandable,
  .process,
  .works,
  .audiences,
  .faq { padding-block: 4.5rem; }

  .section-heading,
  .technology-heading { margin-bottom: 2rem; }

  .section-heading h2,
  .solution-grid-heading h2,
  .technology-heading h2,
  .contact h2,
  .lead-dialog h2 { font-size: clamp(2rem, 9vw, 3.2rem); }

  .product-tabs {
    grid-template-columns: repeat(4, minmax(6.5rem, 1fr));
    gap: 0.4rem;
    overflow-x: auto;
    padding: 0.4rem;
  }

  .product-tabs button { min-height: 2.9rem; font-size: 0.78rem; }
  .product-viewport,
  .product-track > article { min-height: 42rem; }

  .product-track > article {
    grid-template-columns: 1fr;
    grid-template-rows: 22rem 1fr;
  }

  .product-art { min-height: 22rem; }
  .product-art::before { inset: 0.75rem; }
  .product-copy { justify-content: flex-start; padding: 1.5rem; }
  .product-copy h3 { font-size: clamp(2rem, 10vw, 3rem); }
  .product-copy > span { font-size: 0.9rem; }
  .product-scene-status { display: none; }

  .solution-grid { grid-template-columns: 1fr; gap: 0.8rem; }
  .solution-grid-heading { align-items: start; flex-direction: column; padding-top: 1rem; }
  .solution-card { min-height: 18rem; padding: 1.25rem 47% 1.25rem 1.25rem; border-radius: 1.15rem; }
  .solution-card strong { font-size: 1.35rem; }
  .solution-card p { font-size: 0.82rem; }
  .solution-card i { padding: 0.55rem 0.7rem; font-size: 0.68rem; }
  .solution-product { right: -6%; width: 52%; height: 82%; }

  .process-board { border-radius: 1.15rem; }
  .process-line {
    grid-template-columns: 1fr;
    overflow: visible;
    padding-left: 1rem;
  }
  .process-line::before {
    top: 0;
    left: 0.25rem;
    width: 0.1875rem;
    height: calc(var(--stitch-progress) * 100%);
  }
  .process-line li {
    min-height: 0;
    padding: 1rem 1rem 1.1rem 1.35rem;
    border-right: 0;
    border-bottom: 0.0625rem solid var(--line);
  }
  .process-line li:first-child { padding-left: 1.35rem; }
  .process-line span { margin-bottom: 0.45rem; font-size: 1.125rem; }
  .technology-shell { padding-block: 4.5rem; }
  .technology-rail-window::before,
  .technology-rail-window::after { width: 2rem; }
  .technology-rail-track button { min-height: 4.5rem; padding-inline: 1.5rem; }
  .technology-detail {
    grid-template-columns: minmax(7.5rem, 0.72fr) minmax(0, 1.28fr);
    grid-template-rows: 1fr auto;
    gap: 0.75rem 1rem;
    min-height: 15rem;
    padding: 0.65rem;
  }
  .technology-detail > span { top: 1.2rem; left: 1.2rem; }
  .technology-example {
    grid-column: 1;
    grid-row: 1 / span 2;
    min-height: 13rem;
  }
  .technology-copy {
    grid-column: 2;
    grid-row: 1;
    padding: 0.7rem 0.35rem 0;
  }
  .technology-detail h3 { font-size: clamp(1.55rem, 7vw, 2.25rem); }
  .technology-detail p { font-size: 0.86rem; }
  .technology-detail small { font-size: 0.58rem; }
  .technology-detail a {
    grid-column: 2;
    grid-row: 2;
    width: max-content;
    margin: 0 0.35rem 0.5rem;
    padding-block: 0.65rem;
  }
  .technology-example-mark { top: 0.55rem; right: 0.55rem; width: 2.25rem; height: 2.25rem; }
  .technology-example figcaption { right: 0.65rem; bottom: 0.65rem; left: 0.65rem; font-size: 0.55rem; }

  .work-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 9rem;
    grid-auto-flow: row;
    gap: 1rem;
  }
  .work-card--feature,
  .work-card--portrait { grid-column: 1; grid-row: span 3; }
  .work-card--landscape,
  .work-card--compact { grid-column: 1; grid-row: span 2; }
  .work-card figcaption { min-height: 4.4rem; padding: 0.9rem 1rem; }
  .work-card strong { font-size: 0.95rem; }
  .work-card span { font-size: 0.58rem; }

  .audience-list { grid-template-columns: 1fr; }
  .audience-card { min-height: 14rem; padding-right: 38%; }

  .faq { grid-template-columns: 1fr; }
  .faq summary { min-height: 4rem; }

  .contact {
    gap: 2rem;
    margin-bottom: 1rem;
    padding: 1.5rem;
  }

  .contact-form { grid-template-columns: 1fr; padding: 0.75rem; }
  .contact-form .form-comment-toggle,
  .contact-form .consent-field,
  .contact-form .form-status,
  .contact-form [data-comment-wrap] { grid-column: 1; }

  .footer-main { grid-template-columns: 1fr; gap: 1.5rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
}

@media (max-width: 68.75rem) {
  .process-proofs {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .process-proof-brand {
    min-height: 6rem;
    grid-column: 1 / -1;
    align-items: center;
    flex-direction: row;
    gap: 1rem;
  }

  .process-proof-logo { width: min(70%, 10rem); }

  .process-proof-fact {
    min-height: 6.75rem;
    border-left: 0;
  }
}

@media (max-width: 44rem) {
  .process-proofs {
    gap: 0.25rem;
    margin: 0.85rem;
    padding: 0.3rem;
    border-radius: 1.15rem;
  }

  .process-proof-brand {
    min-height: 5.5rem;
    padding: 0.9rem;
    border-radius: 0.9rem;
  }

  .process-proof-logo { width: min(64%, 9rem); }

  .process-proof-brand-copy {
    max-width: 8rem;
    font-size: 0.6rem;
    text-align: right;
  }

  .process-proof-fact {
    min-height: 7rem;
    padding: 0.8rem;
  }

  .process-proof-emoji {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.15rem;
  }

  .process-proof-title { font-size: clamp(0.8rem, 4vw, 0.94rem); }
  .process-proof-copy { font-size: 0.64rem; }
}

@media (max-width: 23rem) {
  :root { --page: calc(100% - 1rem); }
  .header-inner { grid-template-columns: minmax(7.5rem, 9.5rem) 1fr auto; }
  .header-inner > .button-small { display: none; }
  .header-inner { grid-template-columns: minmax(7.5rem, 10rem) 1fr auto; }
  .hero h1 { font-size: 2.35rem; }
  .hero-stage { grid-template-rows: 25rem 12rem; }
  .hero-facts div { padding-inline: 0.3rem; }
  .process-proof-brand {
    min-height: 6.5rem;
    align-items: flex-start;
    flex-direction: column;
    gap: 0.5rem;
  }
  .process-proof-logo { width: min(100%, 9rem); }
  .process-proof-brand-copy {
    max-width: none;
    font-size: 0.58rem;
    text-align: left;
  }
  .work-grid { grid-template-columns: 1fr; }
  .audience-card { min-height: 13rem; padding-right: 35%; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  .reveal { opacity: 1 !important; transform: none; }
  .process-proof.is-visible .process-proof-emoji { animation: none; }
  .technology-rail-track { animation: none; }
  .technology-rail-window { overflow-x: auto; }
}

@media (prefers-reduced-transparency: reduce) {
  .header-inner,
  .main-menu,
  .lead-dialog::backdrop {
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }
  .header-inner,
  .main-menu { background: white; }
}

@media (prefers-contrast: more) {
  :root {
    --muted: #33445c;
    --line: #8797aa;
    --line-strong: #52647b;
  }
  .header-inner,
  .quick-lead,
  .product-scene,
  .work-card { border-width: 0.125rem; }
}
