:root {
  --bg: #050505;
  --paper: rgba(255, 255, 255, 0.94);
  --card: rgba(255, 255, 255, 0.88);
  --line: rgba(255, 255, 255, 0.14);
  --line-dark: rgba(0, 0, 0, 0.1);
  --ink: #050505;
  --muted: #5f6368;
  --accent: #b6ff2b;
  --accent-2: #2d7cff;
  --accent-soft: rgba(182, 255, 43, 0.14);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --shadow: 0 30px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(45, 124, 255, 0.2), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(182, 255, 43, 0.18), transparent 20%),
    linear-gradient(180deg, #050505 0%, #0c0d0f 100%);
}

.grain {
  position: fixed;
  inset: 0;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(circle at center, black 45%, transparent 90%);
}

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

.page {
  width: min(1240px, calc(100% - 40px));
  margin: 0 auto;
  padding: 20px 0 72px;
}

.topbar,
.hero-copy,
.hero-stage,
.featured-card,
.service-card,
.approach-panel,
.finish-card,
.process-line article,
.contact-panel,
.contact-link {
  border: 1px solid var(--line-dark);
  background: var(--paper);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px 18px;
  border-radius: 999px;
  margin-bottom: 26px;
  background: rgba(10, 10, 10, 0.72);
  border-color: rgba(255, 255, 255, 0.08);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-sign {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  display: block;
}

.brand-sign-animated {
  position: relative;
  overflow: hidden;
}

.brand-wordmark {
  width: auto;
  height: 21px;
  max-width: min(33vw, 220px);
  display: block;
  filter: brightness(0) invert(1);
}

.eyebrow,
h1,
h2,
.chip,
.logo-pill {
  font-family: "Syne", sans-serif;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.nav a {
  color: rgba(255, 255, 255, 0.72);
}

.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.92rem;
  transition: transform 180ms ease, background 180ms ease;
}

.chip:hover {
  transform: translateY(-2px);
}

.chip-accent {
  color: #050505;
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #d4ff70);
}

.sales-hero-copy .chip:not(.chip-accent),
.lead-section .chip:not(.chip-accent),
.portfolio-card .chip:not(.chip-accent),
.contact-panel .chip:not(.chip-accent),
.sales-card:not(.sales-card-blue) .chip:not(.chip-accent),
.partner-panel:not(.partner-panel-dark) .chip:not(.chip-accent) {
  color: #050505;
  border-color: rgba(0, 0, 0, 0.14);
  background: rgba(0, 0, 0, 0.04);
}

main {
  display: grid;
  gap: 52px;
}

.hero {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 18px;
  min-height: 76vh;
}

.hero-copy,
.hero-stage,
.contact-panel {
  border-radius: var(--radius-xl);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 38px;
}

.eyebrow {
  margin: 0 0 16px;
  color: var(--accent-2);
  font-size: 0.76rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

h1,
h2 {
  margin: 0;
  line-height: 0.95;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 8ch;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
}

h2 {
  max-width: 13ch;
  font-size: clamp(1.9rem, 3.8vw, 3.4rem);
}

.hero-note,
.section-side,
.service-card p,
.finish-card p,
.approach-points p,
.contact-link span {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.featured .section-head h2,
.services .section-head h2,
.process .section-head h2,
.featured .section-side,
.services .section-side,
.process .section-side {
  color: white;
}

.hero-note {
  max-width: 32ch;
  font-size: 1.05rem;
}

.hero-actions,
.section-head.split {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  padding: 8px 0 10px;
}

.section-head > div,
.section-head.split > div {
  display: grid;
  gap: 10px;
}

.hero-stage {
  position: relative;
  overflow: hidden;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(45, 124, 255, 0.08), rgba(255, 255, 255, 0.96)),
    var(--paper);
}

.hero-object {
  position: relative;
  height: 100%;
  min-height: 540px;
  border-radius: 18px;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.hero-photo,
.hero-badge {
  z-index: 1;
}

.hero-badge {
  position: absolute;
  right: 24px;
  bottom: 24px;
  padding: 12px 16px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.94);
  color: white;
  font-family: "Syne", sans-serif;
}

.hero-stats {
  position: absolute;
  left: 24px;
  bottom: 24px;
  display: grid;
  gap: 10px;
  width: min(260px, calc(100% - 48px));
}

.hero-stats article,
.process-line article {
  padding: 14px 16px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.9);
}

.hero-stats strong {
  display: block;
  margin-bottom: 2px;
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.92rem;
}

.logo-strip {
  display: grid;
  gap: 14px;
  overflow: hidden;
}

.logo-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
}

.logo-track,
.featured-grid,
.service-grid,
.finish-grid,
.contact-grid,
.approach,
.approach-points,
.process-line {
  display: grid;
  gap: 16px;
}

.logo-track {
  display: flex;
  align-items: center;
  gap: 16px;
  width: max-content;
  min-width: 100%;
  animation: logo-marquee 28s linear infinite;
}

.logo-pill {
  flex: 0 0 168px;
  display: grid;
  place-items: center;
  min-height: 78px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  color: white;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
}

.logo-pill img {
  display: block;
  width: min(100%, 124px);
  height: 40px;
  object-fit: contain;
  object-position: center;
  filter: brightness(1);
}

@keyframes logo-marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 8px));
  }
}

@keyframes brand-cycle {
  0%,
  28% {
    opacity: 1;
  }

  34%,
  100% {
    opacity: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .logo-track,
  .brand-frame {
    animation: none;
  }

  .frame-1 {
    opacity: 1;
  }
}

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

.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.featured-card,
.service-card,
.finish-card {
  border-radius: var(--radius-lg);
}

.featured-card {
  display: grid;
  gap: 16px;
  min-height: 420px;
  padding: 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(242, 247, 255, 0.92));
}

.case-visual {
  position: relative;
  min-height: 220px;
  border-radius: 22px;
  overflow: hidden;
  background: linear-gradient(135deg, rgba(45, 124, 255, 0.16), rgba(182, 255, 43, 0.1));
}

.case-visual img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.case-tag,
.service-index,
.approach-points span,
.process-line span,
.contact-link strong {
  font-family: "Syne", sans-serif;
}

.case-tag,
.service-index {
  width: fit-content;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(45, 124, 255, 0.08);
  font-size: 0.84rem;
}

.featured-copy {
  display: grid;
  gap: 10px;
}

.featured-copy h3,
.portfolio-copy h3,
.service-card h3,
.finish-card h3 {
  margin: 0;
  font-size: 1.18rem;
}

.portfolio-hero {
  padding-top: 16px;
}

.portfolio-hero-card {
  position: relative;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at top right, rgba(182, 255, 43, 0.16), transparent 24%),
    radial-gradient(circle at left center, rgba(45, 124, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(10, 10, 10, 0.92), rgba(16, 17, 20, 0.96));
  box-shadow: var(--shadow);
}

.portfolio-hero .section-head {
  margin-bottom: 0;
}

.portfolio-hero h1,
.portfolio-hero .section-side {
  color: white;
}

.portfolio-hero .section-side {
  max-width: 34ch;
}

.portfolio-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.portfolio-section {
  padding-bottom: 24px;
}

.portfolio-grid {
  display: grid;
  gap: 18px;
}

.portfolio-card {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-xl);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
  box-shadow: var(--shadow);
}

.portfolio-media {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 12px;
  min-height: 360px;
}

.portfolio-shot {
  overflow: hidden;
  border-radius: 22px;
  background: rgba(45, 124, 255, 0.08);
}

.portfolio-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.portfolio-shot-1 {
  grid-row: 1 / span 2;
  min-height: 360px;
}

.portfolio-shot-2,
.portfolio-shot-3 {
  min-height: 174px;
}

.portfolio-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 8px 8px 8px 4px;
}

.portfolio-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.55;
}

.service-card p + p,
.featured-copy p,
.portfolio-copy p {
  max-width: 34ch;
}

.service-grid,
.finish-grid,
.contact-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.finish-card,
.contact-link {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.approach {
  grid-template-columns: 1.15fr 0.85fr;
}

.approach-panel,
.contact-panel {
  padding: 28px;
}

.approach-panel {
  border-radius: var(--radius-xl);
}

.approach-points article {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 14px;
  padding-top: 16px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.approach-points span,
.process-line span {
  font-size: 0.9rem;
  color: var(--accent-2);
}

.process-line {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.process-line article p {
  margin: 6px 0 0;
  font-family: "Syne", sans-serif;
  font-size: 1.04rem;
}

.contact-link {
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(243, 248, 255, 0.92));
}

.contact-link strong {
  font-size: 1rem;
}

.page-home {
  width: calc(100% - 40px);
  max-width: none;
}

.home-main {
  gap: 28px;
}

.home-hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 18px;
  min-height: calc(100vh - 120px);
}

.home-hero-copy,
.home-hero-visual,
.statement-card,
.editorial-tile,
.mosaic-card,
.nav-card,
.contact-panel-home {
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.home-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background: #fff9ec;
}

.hero-brand-animation {
  position: relative;
  width: clamp(84px, 12vw, 132px);
  aspect-ratio: 1;
  border-radius: 28px;
  background:
    radial-gradient(circle at 24% 20%, rgba(45, 124, 255, 0.18), transparent 48%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.4));
  border: 1px solid rgba(0, 0, 0, 0.08);
  overflow: hidden;
}

.brand-frame {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  opacity: 0;
  object-fit: contain;
  object-position: center;
}

.frame-1 {
  animation: brand-cycle 2.4s infinite step-end;
}

.frame-2 {
  animation: brand-cycle 2.4s infinite step-end;
  animation-delay: 0.8s;
}

.frame-3 {
  animation: brand-cycle 2.4s infinite step-end;
  animation-delay: 1.6s;
}

.home-hero-copy h1 {
  max-width: 7ch;
  font-size: clamp(4rem, 9vw, 8.6rem);
  line-height: 0.9;
}

.home-hero-visual {
  min-height: 760px;
  background: #d8ff68;
}

.home-hero-visual img,
.editorial-photo img,
.mosaic-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.logo-strip-home {
  gap: 18px;
  padding: 4px 0 6px;
}

.logo-strip-home p {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  letter-spacing: 0.02em;
}

.home-marquee-copy {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.statement-card {
  min-height: 280px;
  padding: 28px;
  display: grid;
  align-content: space-between;
}

.statement-card h2 {
  max-width: 10ch;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
}

.statement-lime {
  background: #d8ff68;
}

.statement-blue {
  background: #397bff;
  color: white;
}

.statement-blue .eyebrow {
  color: white;
}

.home-editorial-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.editorial-tile {
  min-height: 480px;
}

.editorial-copy {
  display: grid;
  align-content: end;
  gap: 14px;
  padding: 28px;
}

.editorial-copy h2 {
  max-width: 9ch;
  font-size: clamp(2.3rem, 5vw, 4.3rem);
}

.editorial-copy.coral {
  background: #ff7d5c;
}

.editorial-copy.white {
  background: #fff9ec;
}

.inline-link {
  width: fit-content;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-family: "Syne", sans-serif;
}

.section-head-light h2,
.section-head-light .section-side {
  color: white;
}

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

.featured-grid-home .featured-card {
  min-height: 520px;
  padding: 16px;
  background: #fff;
}

.featured-grid-home .case-visual {
  min-height: 360px;
}

.home-mosaic {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.9fr;
  gap: 18px;
}

.mosaic-card {
  min-height: 300px;
}

.mosaic-card.tall {
  grid-row: span 2;
}

.text-card {
  display: grid;
  align-content: end;
  gap: 12px;
  padding: 28px;
}

.text-card h2 {
  max-width: 10ch;
  font-size: clamp(2rem, 4vw, 3.6rem);
}

.black-card {
  background: #070707;
  color: white;
}

.black-card .eyebrow {
  color: var(--accent);
}

.blue-card {
  background: #2f74ff;
  color: white;
}

.blue-card .eyebrow {
  color: white;
}

.lime-card {
  background: #d8ff68;
}

.home-links-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.technology-stack {
  display: grid;
  gap: 18px;
}

.technology-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.technology-tab {
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.technology-tab:hover {
  transform: translateY(-1px);
}

.technology-tab.is-active {
  background: linear-gradient(135deg, var(--accent), #d4ff70);
  border-color: transparent;
  color: #050505;
}

.technology-card {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 18px;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 30px;
  background: #fff;
  box-shadow: var(--shadow);
}

.technology-copy,
.technology-gallery {
  border-radius: 24px;
  overflow: hidden;
}

.technology-copy {
  display: grid;
  align-content: space-between;
  gap: 24px;
  padding: 28px;
  background:
    radial-gradient(circle at top left, rgba(182, 255, 43, 0.22), transparent 34%),
    linear-gradient(180deg, #070707 0%, #121318 100%);
  color: white;
}

.technology-copy-top {
  display: grid;
  gap: 14px;
}

.technology-copy h3 {
  margin: 0;
  max-width: 11ch;
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 0.94;
  letter-spacing: -0.04em;
}

.technology-copy p {
  margin: 0;
  max-width: 34ch;
  color: rgba(255, 255, 255, 0.72);
  line-height: 1.55;
}

.technology-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.technology-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.technology-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 180px;
  gap: 14px;
}

.technology-shot {
  margin: 0;
  min-height: 180px;
  border-radius: 20px;
  overflow: hidden;
  background: #edf1f5;
}

.technology-zoom {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  display: block;
  background: transparent;
  cursor: zoom-in;
}

.technology-shot-featured {
  grid-column: span 2;
  grid-row: span 2;
}

.technology-shot img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.technology-zoom:hover img {
  transform: scale(1.03);
}

.lightbox-open {
  overflow: hidden;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 60;
  display: grid;
  place-items: center;
  padding: 28px;
  opacity: 0;
  pointer-events: none;
  background: rgba(5, 5, 5, 0.84);
  transition: opacity 180ms ease;
}

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

.media-lightbox-dialog {
  width: min(1120px, 100%);
  max-height: calc(100vh - 56px);
  display: grid;
  place-items: center;
}

.media-lightbox-image,
.media-lightbox-video {
  width: auto;
  max-width: 100%;
  max-height: calc(100vh - 56px);
  display: none;
  border-radius: 24px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.42);
}

.media-lightbox-image.is-active,
.media-lightbox-video.is-active {
  display: block;
}

.media-lightbox-video {
  width: min(100%, 1120px);
  background: #050505;
}

.media-lightbox-nav,
.media-lightbox-close {
  position: absolute;
  min-height: 44px;
  padding: 10px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
  cursor: pointer;
}

.media-lightbox-close {
  top: 22px;
  right: 22px;
}

.media-lightbox-nav {
  top: 50%;
  transform: translateY(-50%);
}

.media-lightbox-prev {
  left: 22px;
}

.media-lightbox-next {
  right: 22px;
}

.nav-card {
  display: grid;
  gap: 10px;
  padding: 24px;
  background: #fff;
}

.nav-card h3 {
  margin: 0;
  font-size: 1.45rem;
}

.contact-panel-home {
  background: #fff9ec;
}

.section-cta.dual,
.approach-actions,
.section-actions,
.portfolio-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.industries,
.proof,
.formats,
.entry,
.capability-detail-section,
.facts-section,
.faq-section,
.casebook-section {
  position: relative;
}

.industry-grid,
.reason-grid,
.fact-grid,
.faq-grid,
.capability-detail-grid {
  display: grid;
  gap: 18px;
}

.industry-grid,
.reason-grid,
.fact-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

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

.industry-card,
.reason-card,
.capability-card,
.fact-card,
.faq-card,
.casebook-card {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
  box-shadow: var(--shadow);
}

.industry-card,
.reason-card,
.capability-card,
.fact-card,
.faq-card {
  display: grid;
  gap: 12px;
  padding: 22px;
}

.industry-card h3,
.reason-card strong,
.capability-card h3,
.fact-card h3,
.faq-card h3,
.casebook-copy h3 {
  margin: 0;
}

.industry-card p,
.reason-card p,
.fact-card p,
.faq-card p,
.casebook-copy p,
.casebook-columns p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
}

.reason-card strong {
  font-family: "Syne", sans-serif;
  font-size: 1.3rem;
}

.format-grid,
.path-grid,
.casebook-stack {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.format-pill,
.path-chip,
.casebook-stack span {
  padding: 12px 16px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.path-chip {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
}

.detail-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.detail-list li {
  position: relative;
  padding-left: 16px;
  color: var(--muted);
  line-height: 1.6;
}

.detail-list li::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.casebook-grid {
  display: grid;
  gap: 22px;
}

.casebook-card {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  overflow: hidden;
}

.casebook-media {
  min-height: 360px;
}

.casebook-media img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.casebook-copy {
  display: grid;
  gap: 14px;
  padding: 24px;
}

.casebook-industry {
  font-family: "Syne", sans-serif;
  color: var(--ink);
}

.casebook-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.casebook-columns div {
  padding: 14px;
  border-radius: 18px;
  background: rgba(45, 124, 255, 0.06);
}

.casebook-columns strong {
  display: block;
  margin-bottom: 8px;
}

.casebook-result strong {
  color: var(--ink);
}

.page-gallery {
  width: calc(100% - 40px);
  max-width: none;
}

.gallery-hero .portfolio-hero-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
}

.work-gallery-section {
  display: grid;
  gap: 18px;
}

.gallery-filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.gallery-filter {
  min-height: 42px;
  padding: 10px 15px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.78);
  font: inherit;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.gallery-filter:hover {
  transform: translateY(-1px);
}

.gallery-filter.is-active {
  border-color: transparent;
  background: linear-gradient(135deg, var(--accent), #d4ff70);
  color: #050505;
}

.work-gallery-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 170px;
  grid-auto-flow: dense;
  gap: 14px;
}

.work-gallery-item {
  position: relative;
  min-height: 170px;
  margin: 0;
  overflow: hidden;
  border-radius: 24px;
  background: #111;
  box-shadow: var(--shadow);
}

.work-gallery-item-1,
.work-gallery-item-6 {
  grid-column: span 2;
  grid-row: span 2;
}

.work-gallery-item-3 {
  grid-row: span 2;
}

.work-gallery-item-5 {
  grid-column: span 2;
}

.work-gallery-zoom {
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  display: block;
  background: transparent;
  cursor: zoom-in;
}

.work-gallery-zoom img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.work-gallery-zoom:hover img {
  transform: scale(1.035);
}

.work-gallery-zoom::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 52%, rgba(0, 0, 0, 0.56));
  pointer-events: none;
}

.work-gallery-zoom span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.7);
  color: white;
  font-family: "Syne", sans-serif;
  font-size: 0.78rem;
  line-height: 1.1;
}

@media (max-width: 1100px) {
  .hero,
  .approach,
  .featured-grid,
  .portfolio-card,
  .industry-grid,
  .reason-grid,
  .capability-detail-grid,
  .fact-grid,
  .faq-grid,
  .casebook-card,
  .service-grid,
  .finish-grid,
  .contact-grid,
  .process-line {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .section-head.split {
    align-items: start;
    flex-direction: column;
  }

  .home-hero,
  .home-marquee-copy,
  .home-editorial-grid,
  .home-mosaic,
  .home-links-grid,
  .technology-card {
    grid-template-columns: 1fr;
  }

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

  .technology-tabs {
    gap: 8px;
  }

  .technology-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 200px;
  }

  .technology-shot-featured {
    grid-column: span 2;
    grid-row: span 1;
  }

  .section-side {
    max-width: 40ch;
  }

  .portfolio-hero-card {
    padding: 28px;
  }

  .work-gallery-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 170px;
  }
}

@media (max-width: 760px) {
  .page {
    width: min(100% - 16px, 1240px);
    padding-top: 10px;
    padding-bottom: 56px;
  }

  .topbar {
    position: static;
    border-radius: 28px;
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px;
    margin-bottom: 18px;
  }

  .nav,
  .featured-grid,
  .portfolio-card,
  .portfolio-media,
  .industry-grid,
  .reason-grid,
  .capability-detail-grid,
  .fact-grid,
  .faq-grid,
  .casebook-card,
  .casebook-columns,
  .service-grid,
  .finish-grid,
  .contact-grid,
  .approach,
  .process-line {
    grid-template-columns: 1fr;
  }

  .logo-track {
    gap: 12px;
    animation-duration: 20s;
  }

  .brand {
    justify-content: space-between;
  }

  .brand-wordmark {
    height: 18px;
    max-width: 168px;
  }

  .hero-brand-animation {
    width: 92px;
    border-radius: 24px;
  }

  .home-hero-copy,
  .statement-card,
  .editorial-copy,
  .text-card,
  .nav-card {
    padding: 20px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-visual,
  .editorial-tile,
  .mosaic-card,
  .technology-shot {
    min-height: 320px;
  }

  .featured-grid-home {
    grid-template-columns: 1fr;
  }

  .featured-grid-home .featured-card {
    min-height: auto;
  }

  .featured-grid-home .case-visual {
    min-height: 260px;
  }

  .nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .nav a {
    padding: 10px 12px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 999px;
    text-align: center;
    background: rgba(255, 255, 255, 0.04);
    font-size: 0.88rem;
  }

  .topbar > .chip {
    width: 100%;
  }

  .hero-copy,
  .hero-stage,
  .portfolio-hero-card,
  .approach-panel,
  .contact-panel {
    padding: 20px;
  }

  .home-hero-copy h1 {
    max-width: 8ch;
    font-size: clamp(3rem, 13vw, 5rem);
  }

  .statement-card h2,
  .editorial-copy h2,
  .text-card h2 {
    max-width: 11ch;
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .portfolio-shot-1,
  .portfolio-shot-2,
  .portfolio-shot-3 {
    min-height: 220px;
    grid-row: auto;
  }

  .hero-object {
    min-height: 320px;
  }

  .hero-stage {
    display: grid;
    gap: 14px;
  }

  .hero-stats {
    position: static;
    width: 100%;
  }

  .hero-badge {
    right: 14px;
    bottom: 14px;
    padding: 10px 14px;
    font-size: 0.82rem;
  }

  h1 {
    max-width: 9ch;
    font-size: clamp(2.5rem, 14vw, 4.1rem);
  }

  h2 {
    max-width: 12ch;
    font-size: clamp(1.9rem, 10vw, 2.7rem);
  }

  .hero-note,
  .section-side,
  .contact-link span,
  .portfolio-copy p {
    font-size: 0.96rem;
  }

  .section-head {
    gap: 12px;
    margin-bottom: 18px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: start;
  }

  .hero-actions .chip,
  .portfolio-hero-actions .chip {
    width: 100%;
  }

  .hero-copy {
    gap: 22px;
  }

  .logo-pill {
    flex-basis: 132px;
    min-height: 62px;
    font-size: 0.78rem;
  }

  .logo-pill img {
    width: min(100%, 112px);
    height: 24px;
  }

  .featured-card,
  .service-card,
  .finish-card,
  .portfolio-card,
  .contact-link,
  .technology-card {
    padding: 16px;
  }

  .technology-copy {
    padding: 20px;
  }

  .technology-copy h3 {
    max-width: 12ch;
    font-size: clamp(1.9rem, 9vw, 3rem);
  }

  .technology-gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .technology-shot-featured {
    grid-column: auto;
    grid-row: auto;
  }

  .featured-card {
    min-height: auto;
  }

  .case-visual {
    min-height: 240px;
  }

  .section-cta {
    margin-top: 20px;
  }

  .section-cta .chip {
    width: 100%;
  }

  .section-cta.dual,
  .approach-actions {
    flex-direction: column;
  }

  .approach-points article {
    grid-template-columns: 36px 1fr;
    gap: 10px;
  }

  .process-line {
    gap: 10px;
  }

  .process-line article {
    padding: 12px 14px;
  }

  .portfolio-hero-actions {
    flex-direction: column;
  }

  .portfolio-media {
    min-height: auto;
  }

  .portfolio-copy {
    padding: 0;
  }

  .format-grid,
  .path-grid,
  .casebook-stack {
    gap: 10px;
  }

  .format-pill,
  .path-chip,
  .casebook-stack span {
    width: 100%;
  }

  .casebook-media {
    min-height: 260px;
  }

  .casebook-copy {
    padding: 18px;
  }

  .page-gallery {
    width: min(100% - 16px, 1240px);
  }

  .gallery-filter-bar {
    gap: 8px;
  }

  .gallery-filter {
    flex: 1 1 auto;
    min-height: 40px;
    padding: 9px 12px;
    font-size: 0.88rem;
  }

  .work-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 10px;
  }

  .work-gallery-item,
  .work-gallery-item-1,
  .work-gallery-item-3,
  .work-gallery-item-5,
  .work-gallery-item-6 {
    grid-column: auto;
    grid-row: auto;
  }

  .work-gallery-item:nth-child(5n + 1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}

@media (max-width: 420px) {
  .page {
    width: min(100% - 12px, 1240px);
  }

  .topbar,
  .hero-copy,
  .hero-stage,
  .portfolio-hero-card,
  .approach-panel,
  .contact-panel {
    border-radius: 22px;
  }

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

  .brand-sign {
    width: 22px;
    height: 22px;
  }

  .brand-wordmark {
    height: 16px;
    max-width: 132px;
  }

  .hero-brand-animation {
    width: 78px;
    border-radius: 20px;
  }

  .hero-object {
    min-height: 280px;
  }

  .case-visual,
  .portfolio-shot-1,
  .portfolio-shot-2,
  .portfolio-shot-3 {
    min-height: 190px;
  }
}

.sales-home {
  gap: 24px;
}

.sales-hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 18px;
  height: clamp(608px, calc(90vh - 63px), 729px);
  min-height: 0;
  align-items: stretch;
}

.sales-hero-copy,
.sales-hero-visual,
.sales-statement,
.sales-card,
.case-caption-card,
.trust-section,
.sales-cta,
.partner-panel,
.lead-section {
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.sales-hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 28px;
  background:
    radial-gradient(circle at top right, rgba(182, 255, 43, 0.24), transparent 32%),
    linear-gradient(180deg, #fffaf0, #ffffff);
}

.sales-hero-copy h1 {
  max-width: 7ch;
  font-size: clamp(3.8rem, 7.2vw, 7.8rem);
  line-height: 0.84;
}

.sales-hero-meta {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.5;
}

.sales-hero-visual {
  position: relative;
  display: block;
  padding: 0;
  min-height: 0;
  height: 100%;
  background: #0a0a0a;
}

.sales-hero-visual img,
.case-caption-card img,
.gallery-tile img,
.partner-panel-photo img,
.sales-card-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.hero-shot {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
}

.hero-shot-main {
  object-position: center;
}

.sales-statement,
.trust-section,
.sales-cta,
.lead-section {
  padding: 34px;
}

.sales-statement {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: end;
  gap: 22px;
  background:
    radial-gradient(circle at 80% 10%, rgba(45, 124, 255, 0.22), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
}

.sales-statement .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 0;
}

.sales-statement h2 {
  max-width: 10ch;
  font-size: clamp(2.1rem, 4vw, 4.2rem);
}

.sales-statement p:not(.eyebrow) {
  max-width: 48ch;
  margin: 0;
  color: var(--muted);
  font-size: 1.12rem;
  line-height: 1.6;
}

.sales-section {
  display: grid;
  gap: 24px;
}

.visual-gallery {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-template-rows: repeat(2, 360px);
  gap: 18px;
}

.gallery-tile {
  position: relative;
  min-height: 360px;
  margin: 0;
  overflow: hidden;
  border-radius: 30px;
  background: #111;
  box-shadow: var(--shadow);
}

.gallery-tile-large {
  grid-row: 1 / span 2;
}

.gallery-tile::after,
.direction-card::after,
.sales-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 36%, rgba(0, 0, 0, 0.58));
}

.gallery-tile figcaption {
  position: absolute;
  left: 18px;
  bottom: 18px;
  z-index: 1;
  padding: 9px 13px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.72);
  color: white;
  font-family: "Syne", sans-serif;
  font-size: 0.88rem;
}

.visual-gallery .gallery-tile:not(.gallery-tile-large) {
  background: #f2f4f0;
}

.visual-gallery .gallery-tile:not(.gallery-tile-large) img {
  object-fit: cover;
}

.visual-gallery .gallery-tile:nth-child(2) img {
  object-position: center 58%;
}

.visual-gallery .gallery-tile:nth-child(3) img {
  object-position: center 42%;
}

.sales-card-grid,
.case-caption-grid,
.partner-section,
.sales-split {
  display: grid;
  gap: 18px;
}

.directions-grid,
.benefits-grid,
.case-caption-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.benefits-mosaic {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.45fr);
  align-items: stretch;
}

.benefits-mosaic > .sales-card-lime {
  min-height: 248px;
  padding: 22px;
}

.benefits-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 12px;
  min-height: 248px;
}

.benefit-mini-card {
  min-height: 0;
  padding: 18px;
}

.benefit-mini-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.65rem);
}

.benefit-mini-wide {
  grid-column: 2;
  grid-row: 1 / span 2;
}

.sales-card {
  position: relative;
  display: grid;
  align-content: space-between;
  gap: 18px;
  min-height: 260px;
  padding: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
}

.benefits-mosaic .sales-card,
.benefits-mini-grid .sales-card {
  min-height: 0;
}

.direction-card {
  min-height: 340px;
  align-content: end;
  color: white;
  background-position: center;
  background-size: cover;
}

.direction-card h3,
.direction-card p {
  position: relative;
  z-index: 1;
}

.direction-card p {
  color: rgba(255, 255, 255, 0.78);
}

.direction-install {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7)), url("./contents/стенд Альфа-Банка на ПМЭФ 2025/IMG_1596.JPG");
}

.direction-retail {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7)), url("./contents/изделия для Aviasales/2025-01-25 02.50.51.jpg");
}

.direction-custom {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7)), url("./contents/печать арт-объектов для Аристарха Чернышева/2025-01-25 02.49.49.jpg");
}

.direction-proto {
  background-image: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.7)), url("./contents/FDM tech/IMG_1303.jpg");
}

.sales-card h3,
.case-caption-card p,
.sales-process p,
.lead-form span {
  font-family: "Syne", sans-serif;
}

.sales-card h3 {
  max-width: 12ch;
  margin: 0;
  font-size: 1.7rem;
  line-height: 1.02;
}

.sales-card h2,
.partner-panel h2,
.sales-cta h2,
.lead-section h2,
.trust-section h2 {
  max-width: 14ch;
}

.sales-card p,
.sales-card li,
.partner-panel p,
.partner-panel li,
.sales-cta p,
.lead-section p,
.trust-section p {
  margin: 0;
  color: var(--muted);
  line-height: 1.58;
}

.sales-card-lime {
  background: #d8ff68;
}

.sales-card-blue,
.partner-panel-dark {
  background: #2f74ff;
  color: white;
}

.sales-card-blue .eyebrow,
.partner-panel-dark .eyebrow,
.sales-card-blue p,
.sales-card-blue h2,
.sales-card-blue h3,
.sales-card-blue li,
.sales-card-blue strong,
.partner-panel-dark p,
.partner-panel-dark h2,
.partner-panel-dark h3,
.partner-panel-dark li {
  color: rgba(255, 255, 255, 0.78);
}

.sales-card-blue h2,
.sales-card-blue h3,
.partner-panel-dark h2,
.partner-panel-dark h3 {
  color: #fff;
}

.case-caption-card {
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  background: #fff;
}

.case-caption-card p {
  min-height: 78px;
  margin: 0;
  padding: 18px;
  font-size: 1.05rem;
}

.trust-section {
  display: grid;
  gap: 14px;
  padding: 0;
  overflow: visible;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
  color: white;
}

.trust-head {
  margin: 0;
}

.trust-section h2 {
  max-width: 16ch;
  color: white;
}

.trust-marquee {
  overflow: hidden;
  padding: 4px 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.trust-section .logo-pill {
  flex-basis: 236px;
  min-height: 102px;
}

.trust-section .logo-pill img {
  width: min(100%, 198px);
  height: 68px;
}

.trust-section .logo-pill-bitok img {
  width: min(100%, 168px);
  height: 58px;
}

.trust-section .logo-pill-positive-technologies img {
  width: min(100%, 216px);
  height: 70px;
}

.sales-process {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.sales-process article {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  gap: 0;
  min-height: 360px;
  padding: 0;
  border-radius: 28px;
  overflow: hidden;
  background: #111;
  box-shadow: var(--shadow);
}

.process-card-copy {
  position: absolute;
  inset: 0;
  z-index: 2;
  min-height: 0;
  display: grid;
  align-content: space-between;
  gap: 18px;
  padding: 22px;
  pointer-events: none;
}

.process-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.18), rgba(5, 5, 5, 0.78));
}

.process-media-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(112px, 1fr);
  grid-auto-flow: dense;
  gap: 10px;
  min-height: 100%;
  padding: 10px;
}

.process-media-tile {
  position: relative;
  min-height: 112px;
  margin: 0;
  overflow: hidden;
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(182, 255, 43, 0.2), transparent),
    rgba(5, 5, 5, 0.08);
}

.process-media-large {
  grid-column: span 2;
  grid-row: span 2;
}

.process-media-wide {
  grid-column: span 3;
  grid-row: span 2;
}

.process-media-tile img,
.process-media-tile video,
.process-hover-poster,
.process-hover-motion {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, opacity 160ms ease;
}

.process-media-tile:hover img,
.process-media-tile:hover video,
.process-hover-gif:hover .process-hover-poster,
.process-hover-gif:hover .process-hover-motion {
  transform: scale(1.035);
}

.process-hover-poster,
.process-hover-motion {
  position: absolute;
  inset: 0;
  background-position: center;
  background-size: cover;
}

.process-hover-poster {
  opacity: 0;
  background-image: url("./contents/backgrounds/manufacturing-printing-poster.jpg");
}

.process-hover-motion {
  opacity: 1;
  background-image: url("./contents/backgrounds/manufacturing-printing.gif");
}

.process-media-placeholder {
  border: 1px dashed rgba(5, 5, 5, 0.2);
  background:
    linear-gradient(135deg, rgba(5, 5, 5, 0.08), rgba(5, 5, 5, 0.02)),
    rgba(255, 255, 255, 0.62);
}

.process-media-placeholder::before,
.process-media-placeholder::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 34px;
  height: 2px;
  border-radius: 999px;
  background: rgba(5, 5, 5, 0.24);
  transform: translate(-50%, -50%);
}

.process-media-placeholder::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.sales-process span {
  color: var(--accent);
  font-family: "Syne", sans-serif;
}

.sales-process p {
  margin: 0;
  color: #fff;
  font-size: clamp(1.45rem, 2.2vw, 2.4rem);
  line-height: 1.04;
}

.backstage-section {
  gap: 18px;
}

.backstage-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  grid-auto-rows: 190px;
  grid-auto-flow: dense;
  gap: 14px;
}

.backstage-tile {
  position: relative;
  min-height: 190px;
  margin: 0;
  overflow: hidden;
  border-radius: 28px;
  background: #111;
  box-shadow: var(--shadow);
}

.backstage-tile:has(img),
.backstage-tile:has(video),
.backstage-video-tile {
  cursor: zoom-in;
}

.backstage-tile-large {
  grid-column: span 3;
  grid-row: span 2;
}

.backstage-tile-wide {
  grid-column: span 2;
}

.backstage-tile-tall {
  grid-row: span 2;
}

.backstage-video {
  grid-row: span 2;
}

.backstage-tile img,
.backstage-tile video,
.backstage-motion {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease;
}

.backstage-motion {
  position: absolute;
  inset: 0;
  background: url("./contents/backgrounds/manufacturing-printing.gif") center / cover;
}

.backstage-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 46%, rgba(5, 5, 5, 0.72));
}

.backstage-tile:hover img,
.backstage-tile:hover video,
.backstage-tile:hover .backstage-motion {
  transform: scale(1.035);
}

.backstage-tile figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: calc(100% - 32px);
  color: #fff;
  font-family: "Syne", sans-serif;
  font-size: 0.95rem;
  line-height: 1.15;
}

.backstage-slot {
  display: grid;
  align-items: end;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(135deg, rgba(182, 255, 43, 0.18), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    #151515;
}

.backstage-slot-dark {
  background:
    linear-gradient(135deg, rgba(47, 116, 255, 0.22), transparent 44%),
    #101010;
}

.backstage-slot::after {
  display: none;
}

.backstage-slot figcaption {
  position: static;
  max-width: none;
  color: rgba(255, 255, 255, 0.72);
}

.sales-cta {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 24px;
  min-height: 430px;
  color: white;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.82), rgba(5, 5, 5, 0.18)),
    url("./contents/стенд Альфа-Банка на ПМЭФ 2025/photo_2025-04-24_12-00-16.jpg") center / cover;
}

.sales-cta h2 {
  font-size: clamp(1.9rem, 3.6vw, 3.7rem);
}

.sales-cta > * {
  position: relative;
  z-index: 1;
}

.sales-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.sales-cta .eyebrow,
.sales-cta h2 {
  color: #fff;
}

.cta-actions,
.lead-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.partner-section,
.sales-split,
.lead-section {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.partner-panel {
  display: grid;
  align-content: space-between;
  gap: 22px;
  min-height: 460px;
  padding: 30px;
  background: #fffaf0;
}

.partner-panel-photo,
.sales-card-photo {
  display: block;
  min-height: 460px;
  padding: 0;
  background: #111;
}

.sales-card-photo {
  overflow: hidden;
}

.clean-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.clean-list li {
  position: relative;
  padding-left: 18px;
}

.clean-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72em;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent-2);
}

.sales-card-blue .clean-list li::before,
.partner-panel-dark .clean-list li::before {
  background: var(--accent);
}

.sales-split .sales-card {
  min-height: 430px;
}

.sales-split .sales-card h2 {
  font-size: clamp(1.75rem, 3.2vw, 3.2rem);
}

.lead-section {
  display: grid;
  gap: 22px;
  align-items: start;
  background:
    radial-gradient(circle at top left, rgba(45, 124, 255, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(242, 247, 255, 0.94));
}

.lead-copy {
  display: grid;
  gap: 20px;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: 20px;
  border-radius: 24px;
  background: rgba(5, 5, 5, 0.92);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.lead-form input {
  width: 100%;
  min-height: 48px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  color: white;
  font: inherit;
}

.lead-form input::placeholder {
  color: rgba(255, 255, 255, 0.52);
}

.lead-form input:focus {
  outline: 2px solid rgba(182, 255, 43, 0.55);
  outline-offset: 2px;
}

.lead-form button {
  width: 100%;
  border: 0;
  cursor: pointer;
}

@media (max-width: 1100px) {
  .sales-hero,
  .sales-statement,
  .visual-gallery,
  .partner-section,
  .sales-split,
  .lead-section {
    grid-template-columns: 1fr;
  }

  .directions-grid,
  .benefits-grid,
  .case-caption-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .benefits-mosaic {
    grid-template-columns: 1fr;
  }

  .benefits-mini-grid {
    grid-template-rows: none;
    grid-auto-rows: 118px;
    min-height: 0;
  }

  .sales-process {
    grid-template-columns: 1fr;
  }

  .sales-process article {
    min-height: 340px;
  }

  .backstage-grid {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .backstage-tile-large {
    grid-column: span 2;
  }

  .sales-hero-visual {
    min-height: 520px;
  }

  .visual-gallery {
    grid-template-rows: 560px 420px 420px;
  }

  .gallery-tile-large {
    grid-row: auto;
  }

  .sales-cta {
    align-items: start;
    flex-direction: column;
  }

  .sales-hero {
    grid-template-columns: 0.92fr 1.08fr;
    height: clamp(583px, calc(90vh - 63px), 680px);
  }

  .sales-hero-visual {
    min-height: 0;
    height: 100%;
  }
}

@media (max-width: 760px) {
  .sales-home {
    gap: 22px;
  }

  .sales-hero,
  .sales-hero-visual,
  .visual-gallery,
  .directions-grid,
  .benefits-grid,
  .case-caption-grid,
  .sales-process {
    grid-template-columns: 1fr;
  }

  .benefits-mini-grid {
    grid-template-columns: 1fr;
  }

  .benefit-mini-wide {
    grid-column: auto;
    grid-row: auto;
  }

  .sales-hero {
    height: auto;
    min-height: auto;
  }

  .sales-hero-copy,
  .sales-statement,
  .sales-cta,
  .partner-panel,
  .lead-section {
    padding: 20px;
  }

  .trust-section {
    padding: 0;
  }

  .sales-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.4rem, 11vw, 3.8rem);
  }

  .sales-statement h2,
  .sales-cta h2,
  .lead-section h2,
  .trust-section h2,
  .partner-panel h2,
  .sales-split .sales-card h2 {
    max-width: 14ch;
    font-size: clamp(1.65rem, 8vw, 2.55rem);
  }

  .sales-hero-visual,
  .case-caption-card {
    min-height: 320px;
  }

  .sales-hero-visual {
    min-height: 320px;
  }

  .visual-gallery {
    grid-template-rows: repeat(3, 360px);
  }

  .case-caption-card {
    grid-template-rows: 260px auto;
  }

  .sales-card,
  .partner-panel,
  .sales-split .sales-card {
    min-height: auto;
  }

  .sales-card {
    padding: 20px;
  }

  .cta-actions .chip,
  .lead-actions .chip {
    width: 100%;
  }

  .sales-process article {
    grid-template-columns: 1fr;
    min-height: 420px;
  }

  .process-card-copy {
    padding: 18px;
  }

  .process-media-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(150px, 1fr);
    min-height: 100%;
  }

  .process-media-wide,
  .process-media-large {
    grid-column: span 2;
    grid-row: span 2;
  }

  .backstage-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 170px;
    gap: 10px;
  }

  .backstage-tile,
  .backstage-video,
  .backstage-tile-wide,
  .backstage-tile-tall,
  .backstage-tile-large {
    grid-column: auto;
    grid-row: auto;
    border-radius: 22px;
  }

  .backstage-tile-large,
  .backstage-tile:nth-child(4n + 1) {
    grid-column: span 2;
    grid-row: span 2;
  }
}
