@import url("https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&family=IBM+Plex+Serif:wght@500;600&display=swap&subset=cyrillic");

:root {
  --background: #f7f7f4;
  --foreground: #11141b;
  --muted: #687080;
  --muted-2: #9aa0aa;
  --line: rgba(17, 20, 27, 0.14);
  --line-dark: rgba(255, 255, 255, 0.18);
  --card: #ffffff;
  --surface: #ffffff;
  --surface-muted: #eff0ec;
  --surface-dark: rgba(10, 14, 21, 0.84);
  --glass-fill: rgba(255, 255, 255, 0.2);
  --glass-fill-hover: rgba(255, 255, 255, 0.28);
  --chip-button-bg: rgba(255, 255, 255, 0.14);
  --chip-button-bg-hover: rgba(255, 255, 255, 0.2);
  --chip-button-backdrop: blur(18px) saturate(170%);
  --chip-button-dark-bg: rgba(17, 20, 27, 0.9);
  --chip-button-dark-bg-hover: rgba(17, 20, 27, 0.82);
  --chip-button-dark-backdrop: none;
  --blue: #0c4bcb;
  --cyan: #52faff;
  --ink: #06090f;
  --steel: #151a22;
  --radius: 8px;
  --radius-sm: 4px;
  --radius-xs: 2px;
  --page-gutter: clamp(24px, 4.8vw, 56px);
  --container-max: 1440px;
  --container: min(var(--container-max), calc(100vw - var(--page-gutter) - var(--page-gutter)));
  --section-heading-max: 920px;
  --section-heading-max-narrow: 760px;
  --overlay-linear-soft: linear-gradient(90deg, rgba(2, 5, 9, 0.3), rgba(2, 5, 9, 0.3) 48%, rgba(2, 5, 9, 0.3));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--foreground);
  background: var(--background);
  font-family: "Manrope", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  letter-spacing: 0;
}

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

button {
  cursor: pointer;
}

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

.site-header {
  --header-fg: #fff;
  --header-fg-muted: rgba(255, 255, 255, 0.76);
  --header-chip-fg: #fff;
  --header-brand-color: #fff;
  --header-brand-color-hover: rgba(255, 255, 255, 0.82);
  --header-surface: rgba(7, 10, 16, 0.7);
  --header-surface-active: rgba(7, 10, 16, 0.7);
  --header-chip-bg: var(--chip-button-bg);
  --header-chip-bg-hover: var(--chip-button-bg-hover);
  --header-divider: rgba(255, 255, 255, 0.08);
  --header-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
  --header-backdrop: blur(16px) saturate(180%);
  --header-chip-backdrop: var(--chip-button-backdrop);
  position: fixed;
  z-index: 20;
  top: 18px;
  left: 50%;
  width: var(--container);
  min-height: 64px;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0;
  color: var(--header-fg);
  background: transparent;
  box-shadow: none;
  border-radius: var(--radius);
  isolation: isolate;
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition:
    padding 260ms ease,
    background-color 260ms ease,
    box-shadow 260ms ease,
    -webkit-backdrop-filter 260ms ease,
    backdrop-filter 260ms ease;
}

.site-header.theme-light {
  --header-fg: #11141b;
  --header-fg-muted: rgba(17, 20, 27, 0.66);
  --header-chip-fg: #fff;
  --header-brand-color: var(--header-chip-bg);
  --header-brand-color-hover: var(--header-chip-bg-hover);
  --header-surface: rgba(255, 255, 255, 0.7);
  --header-surface-active: rgba(255, 255, 255, 0.7);
  --header-chip-bg: var(--chip-button-dark-bg);
  --header-chip-bg-hover: var(--chip-button-dark-bg-hover);
  --header-divider: rgba(17, 20, 27, 0.08);
  --header-shadow: 0 12px 30px rgba(17, 20, 27, 0.08);
  --header-chip-backdrop: var(--chip-button-dark-backdrop);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  padding: 12px 16px;
  background: var(--header-surface-active);
  box-shadow: var(--header-shadow);
  -webkit-backdrop-filter: var(--header-backdrop);
  backdrop-filter: var(--header-backdrop);
}

.brand {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  color: var(--header-brand-color);
  transition: color 180ms ease, opacity 180ms ease;
}

.brand:hover {
  color: var(--header-brand-color-hover);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 176px;
  color: inherit;
}

.brand-mark svg {
  width: 100%;
  height: auto;
  display: block;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  margin-left: auto;
  font-size: 13px;
  color: var(--header-fg-muted);
}

.desktop-nav a,
.header-cta,
.menu-button,
.mobile-nav a,
.mobile-nav-cta {
  transition:
    color 180ms ease,
    background-color 180ms ease,
    opacity 180ms ease;
}

.desktop-nav a:hover {
  color: var(--header-fg);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 15px;
  background: var(--header-chip-bg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  -webkit-backdrop-filter: var(--header-chip-backdrop);
  backdrop-filter: var(--header-chip-backdrop);
  font-size: 13px;
  color: var(--header-chip-fg);
}

.header-cta:hover {
  background-color: var(--header-chip-bg-hover);
}

.menu-button {
  display: none;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: var(--header-chip-fg);
  background: var(--header-chip-bg);
  border: 1px solid transparent;
  border-radius: var(--radius);
  position: relative;
  -webkit-backdrop-filter: var(--header-chip-backdrop);
  backdrop-filter: var(--header-chip-backdrop);
}

.menu-button:hover {
  background-color: var(--header-chip-bg-hover);
}

.menu-button:hover svg {
  transform: none;
}

.menu-icon {
  position: absolute;
  inset: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: opacity 160ms ease, transform 160ms ease;
}

.menu-icon-close {
  opacity: 0;
  transform: rotate(-45deg) scale(0.82);
}

.site-header.is-menu-open .menu-icon-open {
  opacity: 0;
  transform: rotate(45deg) scale(0.82);
}

.site-header.is-menu-open .menu-icon-close {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

.mobile-nav {
  display: none;
}

@media (prefers-reduced-motion: reduce) {
  .site-header,
  .event-control,
  .event-image,
  .event-tag::after,
  .button,
  .button svg,
  .brand,
  .brand-mark,
  .brand-mark svg,
  .desktop-nav a,
  .header-cta,
  .header-cta svg,
  .mobile-nav-cta,
  .mobile-nav a,
  .menu-button,
  .menu-button svg,
  .product-card a,
  .product-card a svg,
  .event-link,
  .event-link svg,
  .event-control svg,
  .menu-icon {
    transition: none;
    animation: none;
  }
}

.section-dark,
.section-light {
  position: relative;
}

section[id],
footer[id] {
  scroll-margin-top: 112px;
}

.hero {
  min-height: 760px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fff;
  background: #06090f;
}

.hero-media,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media {
  background-image: linear-gradient(90deg, rgba(2, 5, 9, 0.92), rgba(2, 5, 9, 0.68) 48%, rgba(2, 5, 9, 0.44)), url("/public/assets/hero/abstract-waves-dark.jpeg");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background: var(--overlay-linear-soft);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 170px 0 72px;
}

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

.eyebrow-light {
  color: var(--cyan);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 32px;
  font-size: 96px;
  line-height: 0.95;
  font-weight: 500;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(18px, 2.2vw, 23px);
  font-weight: 400;
}

@media (min-width: 1041px) {
  .hero-lead {
    max-width: var(--section-heading-max);
  }
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 48px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.button:hover {
  transform: none;
}

  .button svg,
  .header-cta svg,
  .mobile-nav-cta svg,
  .menu-button svg,
  .product-card a svg,
  .event-link svg,
  .event-control svg {
  transition: transform 180ms ease;
}

.button:hover svg,
.header-cta:hover svg,
.product-card a:hover svg,
.event-link:hover svg,
.event-control:hover svg {
  transform: translateX(3px);
}

.button-primary {
  color: #061018;
  background: var(--cyan);
  border: 1px solid transparent;
}

.button-ghost {
  color: #fff;
  background: var(--chip-button-bg);
  border: 1px solid transparent;
  -webkit-backdrop-filter: var(--chip-button-backdrop);
  backdrop-filter: var(--chip-button-backdrop);
}

.button-ghost:hover {
  background-color: var(--chip-button-bg-hover);
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 880px;
  margin-top: 48px;
}

.proof-item {
  position: relative;
  min-height: 128px;
  padding: 24px 24px 24px 32px;
  background: transparent;
  border-radius: var(--radius-sm);
}

.proof-item::before {
  content: "";
  position: absolute;
  top: 24px;
  bottom: 24px;
  left: 0;
  width: 4px;
  background: linear-gradient(180deg, #7b61ff, #52faff);
  border-radius: 999px;
}

.proof-item strong {
  display: block;
  margin-bottom: 16px;
  font-size: 30px;
  font-weight: 600;
  color: #fff;
}

.proof-item span {
  display: block;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
}

.services,
.team,
.events,
.materials {
  width: var(--container);
  margin: 0 auto;
  padding: 108px 0;
}

.intro {
  padding: 108px 0;
  background: #fff;
}

.intro-inner {
  display: grid;
  width: var(--container);
  margin: 0 auto;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.72fr);
  gap: 0 80px;
  align-items: start;
}

.section-heading,
.cases-heading,
.contact-card h2,
.contact-card p {
  max-width: var(--section-heading-max);
}

.section-heading {
  margin-bottom: 32px;
  min-width: 0;
}

.section-heading-center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-heading h2,
.cases-heading h2,
.contact-card h2 {
  margin-bottom: 16px;
  font-size: clamp(34px, 4vw, 62px);
  line-height: 1.03;
  font-weight: 500;
  letter-spacing: 0;
}

.section-heading p,
.cases-heading p,
.contact-card p {
  color: var(--muted);
  font-size: 18px;
}

.section-heading-intro {
  --intro-heading-gap: 24px;
}

.section-heading-intro h2 {
  margin-bottom: var(--intro-heading-gap);
}

.section-heading-intro .section-heading-text > p {
  margin-bottom: 0;
  color: var(--foreground);
}

.section-heading-intro .section-heading-text > p + p {
  margin-top: var(--intro-heading-gap);
}

.section-heading-text-with-trailing {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 32px;
}

.section-heading-text-trailing {
  flex: 0 0 auto;
  margin-left: auto;
  padding-top: 2px;
}

.section-heading-text-with-trailing > p:first-child {
  flex: 1 1 auto;
  min-width: 0;
  margin-bottom: 0;
}

.products .section-heading p,
.cases-heading p,
.contact-card p {
  color: rgba(255, 255, 255, 0.7);
}

.intro-panel {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: 34px;
  color: #fff;
  background: #121821;
  border-radius: var(--radius-sm);
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
}

.intro-panel-video {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: left bottom;
  mix-blend-mode: screen;
  opacity: 0.92;
  pointer-events: none;
  z-index: 0;
  border-radius: var(--radius-sm);
  -webkit-clip-path: inset(0 round var(--radius-sm));
  clip-path: inset(0 round var(--radius-sm));
  transform: translateZ(0);
}

.intro-panel-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 16, 23, 0.14) 0%, rgba(12, 16, 23, 0.78) 100%);
  pointer-events: none;
}

.intro-panel-content {
  position: relative;
  z-index: 2;
}

.intro-panel-content > span {
  display: block;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.intro-panel p {
  margin-bottom: 32px;
  font-size: 24px;
  line-height: 1.28;
}

.value-row {
  display: grid;
  gap: 8px;
}

.value-row b {
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 14px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.74);
}

.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-auto-rows: auto;
  gap: 16px;
}

.service-card {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: auto;
  flex-direction: column;
  grid-column: 1 / -1;
  overflow: hidden;
  padding: 28px 28px 36px;
  background: var(--surface);
  border-radius: var(--radius-sm);
  --service-pattern-color: rgba(12, 75, 203, 0.1);
  --service-pattern-width: 176px;
  --service-pattern-right: -10px;
  --service-pattern-bottom: -12px;
  --service-link-color: var(--blue);
}

.service-card::after {
  content: "";
  position: absolute;
  right: var(--service-pattern-right);
  bottom: var(--service-pattern-bottom);
  width: var(--service-pattern-width);
  aspect-ratio: 456 / 802;
  background: var(--service-pattern-color);
  -webkit-mask-image: url("/public/assets/patterns/pattern.svg");
  mask-image: url("/public/assets/patterns/pattern.svg");
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: right bottom;
  mask-position: right bottom;
  -webkit-mask-size: contain;
  mask-size: contain;
  pointer-events: none;
}

.service-card-featured {
  grid-column: 1 / -1;
  grid-row: auto;
  min-height: auto;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(82, 250, 255, 0.2), transparent 42%),
    linear-gradient(180deg, #111822 0%, #080b11 100%);
  --service-pattern-color: rgba(82, 250, 255, 0.12);
  --service-link-color: var(--cyan);
}

.service-card-featured::after {
  opacity: 0.92;
}

.service-card-wide {
  grid-column: 1 / -1;
  background:
    linear-gradient(135deg, rgba(82, 250, 255, 0.14), transparent 44%),
    var(--surface-muted);
}

.service-card:not(.service-card-featured):not(.service-card-wide) {
  background: #fff;
}

.service-card:nth-child(3) {
  background: #eef2f6;
}

.service-card:nth-child(4) {
  grid-column: 1 / -1;
  background: #ecefeb;
}

.service-card > * {
  position: relative;
  z-index: 1;
}

.service-card .service-index {
  order: 0;
}

.service-card-wide {
  padding-right: 28px;
}

.service-card-wide h3 {
  max-width: none;
}

.service-card-wide p {
  max-width: none;
}

.service-card-wide ul {
  max-width: none;
}

.service-index {
  margin-bottom: 30px;
  color: var(--muted-2);
  font-size: 13px;
  font-weight: 700;
}

.service-icon {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  margin-bottom: 28px;
  color: var(--blue);
  background: rgba(12, 75, 203, 0.08);
  border-radius: var(--radius);
}

.service-card-featured .service-index {
  color: rgba(255, 255, 255, 0.68);
}

.service-card-featured .service-icon {
  color: var(--cyan);
  background: rgba(82, 250, 255, 0.14);
}

.service-card h3 {
  margin-bottom: 18px;
  max-width: none;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.04;
  font-weight: 500;
}

.service-card-featured h3 {
  max-width: none;
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.04;
  font-weight: 500;
}

.service-card-wide h3 {
  font-size: clamp(28px, 2.6vw, 42px);
  line-height: 1.04;
  font-weight: 500;
}

.service-card p {
  margin: 0;
  color: #4a515e;
  font-size: 15px;
  line-height: 1.5;
}

.service-card-featured p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 15px;
}

.service-text p + p {
  margin-top: 14px;
}

.service-card a {
  color: var(--service-link-color);
  transition: opacity 180ms ease;
}

.service-card a:hover {
  opacity: 0.8;
}

@media (min-width: 1041px) {
  .service-card {
    display: grid;
    grid-template-columns: 60px minmax(0, 1fr);
    grid-template-rows: auto auto auto;
    column-gap: 28px;
    row-gap: 16px;
    align-items: start;
    align-content: start;
  }

  .service-index {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .service-icon {
    grid-column: 1;
    grid-row: 2;
    margin: 0;
    align-self: start;
  }

  .service-card h3 {
    grid-column: 2;
    grid-row: 2;
    margin: 0;
    align-self: start;
  }

  .service-card > p,
  .service-card .service-text {
    grid-column: 2;
    grid-row: 3;
    margin: 0;
    align-self: start;
  }
}

@media (min-width: 1360px) {
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
  }

  .service-card-featured,
  .service-card-wide {
    grid-column: auto;
  }

  .service-card:nth-child(3) {
    grid-column: 1 / -1;
  }
}

.service-card ul {
  padding: 0 0 0 6px;
  margin: 0;
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px 16px;
  align-items: flex-start;
}

.service-card ul {
  margin-top: auto;
}

.service-card li {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 0;
  padding: 5px 8px;
  background: transparent;
  border-radius: 5px;
  color: #222936;
  font-size: 13px;
  line-height: 1.25;
}

.service-card li::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -2px;
  left: -6px;
  width: calc(100% + 12px);
  height: calc(100% + 4px);
  background: rgba(17, 20, 27, 0.07);
  border-radius: 5px;
  transform: skew(-14deg);
  transform-origin: center;
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.service-card-featured li {
  color: rgba(255, 255, 255, 0.86);
}

.service-card-featured li::before {
  background: rgba(255, 255, 255, 0.13);
}

.products {
  overflow: hidden;
  color: #fff;
  background: #070b12;
}

.products-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(90deg, rgba(5, 8, 14, 0.94), rgba(5, 8, 14, 0.58)), url("/public/assets/products/blue-background.png");
  background-size: cover;
  background-position: center;
}

.footer-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background: #06090f;
  pointer-events: none;
  z-index: 0;
}

.products-bg::after,
.footer-bg::before,
.footer-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
}

.products-bg::after {
  background: radial-gradient(circle at 76% 24%, rgba(255, 255, 255, 0.16), transparent 24%);
}

.footer-bg::before {
  background: var(--overlay-linear-soft);
}

.footer-bg::after {
  opacity: 0.3;
  background:
    radial-gradient(circle at 72% 30%, rgba(82, 250, 255, 0.9), transparent 80%),
    linear-gradient(180deg, rgba(6, 9, 15, 0.9) 0%, rgba(6, 9, 15, 0.1) 100%);
  z-index: 2;
}

.footer-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
  z-index: 0;
}

.products-content {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  padding: 110px 0;
}

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

.product-card {
  min-width: 0;
  min-height: 360px;
  padding: 34px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(14px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.12);
}

.product-card > span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 56px 0 18px;
  font-size: clamp(30px, 3vw, 46px);
  line-height: 1.02;
  font-weight: 500;
}

.product-card p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.7);
}

.product-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 22px;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
}

.team-layout {
  width: var(--container);
  margin: 0 auto;
}

.team-layout > .section-heading {
  max-width: var(--section-heading-max);
  margin-bottom: 32px;
}

.team-layout .section-heading-text > p {
  margin-bottom: 0;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.team-card {
  display: grid;
  grid-template-columns: minmax(240px, 320px) minmax(0, 1fr);
  align-items: start;
  min-width: 0;
  overflow: hidden;
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.team-photo {
  height: auto;
  min-height: 0;
  aspect-ratio: 4 / 5;
  align-self: start;
  margin: 0;
  overflow: hidden;
  background: #0b0f16;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 18%;
  border-radius: 0;
}

.team-card-description {
  min-width: 0;
  min-height: 100%;
  padding: 28px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.team-card h3 {
  margin-bottom: 2px;
  font-size: clamp(28px, 3.3vw, 34px);
  line-height: 1.08;
  font-weight: 600;
}

.team-role {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 600;
}

.team-summary {
  margin: 0;
  color: #394150;
  font-size: 18px;
  line-height: 1.5;
}

.team-highlights {
  margin: 2px 0 2px;
  padding: 0;
  list-style: none;
}

.team-highlights li {
  position: relative;
  margin: 0;
  padding: 0 0 0 26px;
  color: #394150;
  font-size: 18px;
  line-height: 1.48;
}

.team-highlights li + li {
  margin-top: 10px;
}

.team-highlights li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62em;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: var(--blue);
  transform: translateY(-50%);
}

.syncretis-note {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  grid-column: 2;
  margin-top: 24px;
  padding: 24px;
  color: #fff;
  background: #101720;
  border-radius: 8px;
  -webkit-mask-image: -webkit-radial-gradient(white, black);
  transform: translateZ(0);
}

.syncretis-note-video {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 0;
  height: 100%;
  width: auto;
  max-width: none;
  object-fit: cover;
  object-position: left center;
  mix-blend-mode: screen;
  filter: saturate(112%);
  pointer-events: none;
  opacity: 0.9;
  border-radius: 8px;
  -webkit-clip-path: inset(0 round 8px);
  clip-path: inset(0 round 8px);
  transform: translateZ(0);
}

.syncretis-note::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.3;
  background: var(--overlay-linear-soft);
  pointer-events: none;
}

.syncretis-note > :not(.syncretis-note-video) {
  position: relative;
  z-index: 2;
}

.syncretis-note > div {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.syncretis-note p {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 18px;
}

.cases {
  position: relative;
  overflow: hidden;
  padding: 108px 0;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(82, 250, 255, 0.08), transparent 32%),
    linear-gradient(180deg, #070c13 0%, #071018 100%);
}

.cases::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/public/assets/cases/light.avif") no-repeat center center / cover;
  opacity: 0.72;
  pointer-events: none;
}

.cases-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
}

.cases-header {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
  gap: 24px 80px;
  margin-bottom: 32px;
}

.cases-heading {
  min-width: 0;
}

.cases-cta {
  justify-self: end;
  align-self: end;
}

.case-board {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  align-items: stretch;
}

.case-card-wide {
  grid-column: span 7;
}

.case-card-small {
  grid-column: span 5;
}

.case-card {
  position: relative;
  min-width: 0;
  min-height: 420px;
  overflow: hidden;
  padding: 32px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045)),
    rgba(255, 255, 255, 0.055);
}

.case-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.34;
  background: linear-gradient(120deg, transparent 0%, rgba(82, 250, 255, 0.08) 42%, transparent 70%);
  pointer-events: none;
}

.case-card-wide {
  display: grid;
  grid-template-rows: auto 1fr;
}

.case-card-small {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.case-client {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 48px;
  width: 100%;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.case-client-meta {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
}

.case-client-name {
  min-width: 0;
}

.case-client-mark {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  color: #061018;
  background: var(--cyan);
  border-radius: var(--radius);
  font-size: 13px;
}

.case-card-main {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(240px, 0.72fr);
  gap: 48px;
  align-items: end;
  min-height: 300px;
}

.case-quote {
  align-self: end;
}

.case-quote p {
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 22px;
  line-height: 1.46;
}

.case-person {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 16px;
}

.case-person-avatar {
  display: inline-flex;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  color: #061018;
  background:
    linear-gradient(135deg, rgba(82, 250, 255, 0.98), rgba(12, 75, 203, 0.92));
  border-radius: 50%;
  font-size: 17px;
  font-weight: 700;
}

.case-person strong,
.case-person small {
  display: block;
}

.case-person strong {
  color: #fff;
  font-size: 17px;
  font-weight: 700;
}

.case-person small {
  color: rgba(255, 255, 255, 0.62);
  font-size: 14px;
}

.case-metric {
  display: grid;
  justify-items: end;
  align-self: end;
  gap: 12px;
  text-align: right;
}

.case-metric strong {
  max-width: 100%;
  color: var(--cyan);
  font-size: 104px;
  line-height: 0.88;
  font-weight: 700;
  letter-spacing: 0;
}

.case-metric-compact strong {
  max-width: 340px;
  font-size: 68px;
  line-height: 0.95;
}

.case-metric span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 16px;
}

.case-link-icon {
  display: inline-flex;
  width: 40px;
  height: 40px;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  color: #fff;
  background: var(--chip-button-bg);
  border: 1px solid transparent;
  -webkit-backdrop-filter: var(--chip-button-backdrop);
  backdrop-filter: var(--chip-button-backdrop);
  border-radius: var(--radius);
  transition: background-color 180ms ease, color 180ms ease;
}

.case-link-icon svg {
  transition: transform 180ms ease;
}

.case-link-icon:hover {
  background-color: var(--chip-button-bg-hover);
}

.case-link-icon:hover svg {
  transform: translateX(3px);
}

.case-story-description {
  position: relative;
  z-index: 1;
}

.case-story-description h3 {
  max-width: 500px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 28px;
  line-height: 1.08;
  font-weight: 700;
}

.case-story-description p {
  max-width: 520px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 16px;
}

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

.material-item {
  min-width: 0;
  padding: 24px;
  background: var(--surface);
  border-radius: var(--radius-sm);
}

.events {
  width: 100%;
  margin: 0;
  overflow: hidden;
  background: #fff;
}

.events-header {
  display: grid;
  grid-template-columns: minmax(0, var(--section-heading-max)) auto;
  align-items: end;
  gap: 24px 80px;
  width: var(--container);
  margin: 0 auto 32px;
}

.events-heading {
  margin: 0;
}

.events-heading .section-heading-text > p {
  margin-bottom: 0;
}

.event-controls {
  --chip-button-bg: var(--chip-button-dark-bg);
  --chip-button-bg-hover: var(--chip-button-dark-bg-hover);
  --chip-button-backdrop: var(--chip-button-dark-backdrop);
  display: inline-flex;
  gap: 8px;
  align-items: center;
  flex: 0 0 auto;
  justify-self: end;
  align-self: end;
}

.event-control {
  display: inline-flex;
  width: 50px;
  height: 50px;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: var(--chip-button-bg);
  border: 1px solid transparent;
  -webkit-backdrop-filter: var(--chip-button-backdrop);
  backdrop-filter: var(--chip-button-backdrop);
  border-radius: var(--radius);
  cursor: pointer;
  transition:
    color 180ms ease,
    background-color 180ms ease,
    transform 180ms ease;
}

.event-control:hover {
  color: #fff;
  background-color: var(--chip-button-bg-hover);
  transform: none;
}

.event-control:focus-visible,
.event-track:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
}

.event-slider {
  width: var(--container);
  margin: 0 auto;
}

.event-track {
  display: flex;
  width: 100%;
  gap: 24px;
  align-items: flex-start;
  padding-bottom: 32px;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: 0;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
}

.event-track::-webkit-scrollbar {
  height: 8px;
}

.event-track::-webkit-scrollbar-track {
  background: #e9edf3;
  border-radius: 999px;
}

.event-track::-webkit-scrollbar-thumb {
  background: #9da9ba;
  border-radius: 999px;
}

.event-card {
  flex: 0 0 clamp(290px, 28vw, 420px);
  min-width: 0;
  scroll-snap-align: start;
}

.event-image-link {
  display: block;
  overflow: hidden;
  background: #e9edf3;
  border-radius: var(--radius-sm);
}

.event-image {
  display: block;
  width: 100%;
  height: auto;
  transition: transform 360ms ease;
}

.event-card:hover .event-image {
  transform: scale(1.025);
}

.event-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  align-items: center;
  margin: 18px 0 10px;
  color: #707782;
  font-size: 15px;
  line-height: 1.2;
}

.event-tag {
  position: relative;
  display: inline-flex;
  gap: 7px;
  align-items: center;
  color: var(--blue);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  line-height: 1.2;
  text-transform: uppercase;
}

.event-tag::before {
  display: block;
  position: relative;
  z-index: 1;
  width: 7px;
  height: 7px;
  background: currentColor;
  border-radius: 50%;
  content: "";
}

.event-tag::after {
  content: "";
  position: absolute;
  left: 0;
  top: 50%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
  transform: translateY(-50%);
  animation: event-tag-pulse 1.8s ease-out infinite;
}

.event-tag-cyan {
  color: #07828d;
}

.event-tag-blue {
  color: var(--blue);
}

.event-tag-dark {
  color: #111823;
}

.event-tag-orange {
  color: #d9632a;
}

.event-card h3 {
  max-width: 390px;
  margin-bottom: 10px;
  font-size: clamp(21px, 2vw, 25px);
  line-height: 1.16;
  font-weight: 650;
}

.event-title-link {
  display: inline-block;
  color: inherit;
  transition: color 180ms ease;
}

.event-title-link:hover {
  color: var(--blue);
}

.event-title-link:focus-visible {
  outline: 2px solid var(--cyan);
  outline-offset: 4px;
  border-radius: 2px;
}

.event-card p {
  max-width: 390px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.52;
}

.event-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  color: var(--foreground);
  font-size: 15px;
  font-weight: 700;
}

.material-item {
  min-height: 220px;
}

.material-item > div {
  margin-bottom: 32px;
  color: var(--blue);
}

.material-item h3 {
  font-size: 23px;
  font-weight: 600;
}

.material-item p {
  color: var(--muted);
}

.partners {
  width: 100%;
  margin: 0;
  padding: 112px 0;
  background: #f4f7fb;
}

.partners-inner {
  width: var(--container);
  margin: 0 auto;
}

.partners-row {
  display: grid;
  grid-template-columns: minmax(220px, 0.48fr) minmax(0, 1fr);
  gap: clamp(28px, 4.6vw, 92px);
  align-items: center;
  padding: 34px 0;
}

.partners-row:first-child {
  padding-top: 0;
}

.partners-row:last-child {
  padding-bottom: 0;
}

.partners-row + .partners-row {
  margin-top: 24px;
  padding-top: 44px;
  border-top: 1px solid rgba(17, 20, 27, 0.08);
}

.partners-heading h2 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 58px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.partners-logos {
  min-width: 0;
}

.partners-logos-stack {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.partners-logos-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px 48px;
  align-items: center;
}

.partners-association-content {
  display: grid;
  gap: 20px;
  min-width: 0;
}

.partners-association-note {
  margin: 0;
  max-width: 820px;
  color: #3f4b5d;
  font-size: 18px;
  line-height: 1.5;
}

.logo-link,
.logo-item {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  min-width: 0;
}

.logo-link {
  transition: opacity 180ms ease;
}

.logo-link:hover {
  opacity: 0.82;
}

.logo-mark {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
}

.contact {
  overflow: hidden;
  color: #fff;
  background: #06090f;
}

.contact-card {
  position: relative;
  width: var(--container);
  margin: 0 auto;
  padding: 96px 0 48px;
}

.contact-card h2 {
  max-width: 980px;
  margin-bottom: 0;
  color: #fff;
}

.footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  width: 100%;
  margin: 0;
  padding: 72px 0 64px;
  color: #fff;
  background: #06090f;
}

.footer-inner {
  position: relative;
  z-index: 1;
  width: var(--container);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(240px, 360px) max-content max-content;
  grid-template-areas: "brand links contact";
  gap: 48px clamp(40px, 4vw, 96px);
  align-items: start;
  justify-content: space-between;
}

.footer-inner > * {
  min-width: 0;
}

.footer-brand {
  grid-area: brand;
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 24px;
}

.footer-logo {
  display: inline-flex;
  color: #fff;
}

.footer-logo .brand-mark {
  width: clamp(176px, 15vw, 240px);
}

.footer-cookie {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.footer-license {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.footer-policy {
  max-width: 360px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 14px;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.footer-cookie a,
.footer-policy a {
  color: #fff;
  text-decoration: none;
  opacity: 1;
  transition: opacity 180ms ease, color 180ms ease;
}

.footer-cookie a:hover,
.footer-policy a:hover {
  opacity: 0.72;
}

.footer-nav {
  grid-area: links;
  display: grid;
  grid-template-columns: repeat(2, max-content);
  width: max-content;
  max-width: 100%;
  column-gap: clamp(56px, 5vw, 104px);
  row-gap: 24px;
  align-content: start;
  justify-self: start;
  padding-top: 8px;
  font-size: 24px;
  line-height: 1.25;
}

.footer-nav a {
  transition: opacity 180ms ease, color 180ms ease;
}

.footer-nav a:hover {
  opacity: 0.72;
}

.footer-contact {
  grid-area: contact;
  display: flex;
  width: max-content;
  max-width: 100%;
  min-width: 0;
  flex-direction: column;
  gap: 32px;
  justify-self: end;
  padding-top: 2px;
}

.footer-phone {
  display: inline-block;
  color: #fff;
  font-size: clamp(48px, 3.8vw, 64px);
  line-height: 0.92;
  font-weight: 600;
  letter-spacing: 0;
  white-space: nowrap;
  transition: opacity 180ms ease, color 180ms ease;
}

.footer-phone:hover {
  opacity: 0.72;
}

.footer-email-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-label {
  color: rgba(255, 255, 255, 0.6);
  font-size: 16px;
  line-height: 1.2;
}

.footer-email-block a {
  font-size: 32px;
  line-height: 1.1;
  font-weight: 600;
  overflow-wrap: anywhere;
  word-break: break-word;
  transition: opacity 180ms ease, color 180ms ease;
}

.footer-email-block a:hover {
  opacity: 0.72;
}

.footer-address {
  margin: 0;
  max-width: 360px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.5;
  overflow-wrap: anywhere;
}

@media (max-width: 1200px) {
  h1 {
    font-size: 82px;
  }
}

@media (max-width: 1120px) {
  .footer-inner {
    grid-template-columns: minmax(0, 1fr) max-content;
    grid-template-areas:
      "brand contact"
      "links links";
    row-gap: 40px;
  }

  .footer-cookie,
  .footer-license,
  .footer-policy {
    max-width: min(90%, 540px);
  }

  .footer-nav {
    max-width: 520px;
  }
}

@media (max-width: 1040px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    min-height: 62px;
    flex-wrap: wrap;
  }

  .menu-button {
    display: inline-flex;
    margin-left: auto;
  }

  .mobile-nav {
    display: none;
    width: 100%;
    padding: 8px 0 4px;
  }

  .site-header.is-menu-open .mobile-nav {
    display: grid;
  }

  .mobile-nav a {
    display: flex;
    min-height: 46px;
    align-items: center;
    justify-content: space-between;
    color: var(--header-fg-muted);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-nav a + a {
    border-top: 1px solid var(--header-divider);
  }

  .mobile-nav a:hover {
    color: var(--header-fg);
  }

  .mobile-nav-cta {
    display: flex;
    width: 100%;
    align-items: center;
    min-height: 46px;
    margin-top: 0;
    justify-content: space-between;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
    color: var(--header-fg-muted);
    font-size: 15px;
    font-weight: 600;
  }

  .mobile-nav-cta:hover {
    color: var(--header-fg);
  }

  h1 {
    font-size: 72px;
  }

  .service-card {
    display: grid;
    grid-template-columns: auto auto minmax(0, 1fr);
    column-gap: 12px;
    align-items: start;
  }

  .service-index {
    grid-column: 2;
    grid-row: 1;
    margin: 0;
    align-self: center;
  }

  .service-icon {
    grid-column: 1;
    grid-row: 1;
    margin: 0;
  }

  .service-card h3 {
    grid-column: 1 / -1;
    grid-row: 2;
    margin-top: 22px;
  }

  .service-card > p,
  .service-card .service-text {
    grid-column: 1 / -1;
    grid-row: 3;
    margin-top: 0;
  }

  .team-layout,
  .intro-inner {
    grid-template-columns: 1fr;
  }

  .team-layout > .section-heading {
    position: static;
  }

  .syncretis-note {
    grid-column: auto;
  }

  .cases-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 14px;
    margin-bottom: 32px;
  }

  .cases-cta {
    justify-self: start;
    align-self: start;
  }

  .events-header {
    grid-template-columns: minmax(0, 1fr);
  }

  .event-controls {
    display: none;
  }

  .event-card {
    flex-basis: clamp(300px, 43vw, 390px);
  }

  .partners-row {
    grid-template-columns: 1fr;
    gap: 24px;
    justify-items: center;
    text-align: center;
  }

  .partners-heading {
    text-align: center;
  }

  .partners-logos-row {
    justify-content: center;
    align-items: center;
  }

  .partners-association-content {
    justify-items: center;
    text-align: center;
  }

  .logo-link,
  .logo-item {
    justify-content: center;
  }

  .case-card-wide {
    grid-column: span 12;
  }

  .case-card-small {
    grid-column: span 6;
  }

  .case-card-main {
    grid-template-columns: minmax(0, 1fr) minmax(220px, 0.72fr);
    gap: 32px;
  }

  .case-metric strong {
    font-size: 88px;
  }

  .case-metric-compact strong {
    font-size: 64px;
  }
}

@media (max-width: 760px) {
  .site-header {
    top: 10px;
  }

  .site-header.is-scrolled,
  .site-header.is-menu-open {
    padding: 10px 10px 10px 12px;
  }

  .brand-mark {
    width: 146px;
  }

  .hero {
    min-height: 720px;
  }

  .hero-content {
    padding: 132px 0 42px;
  }

  h1 {
    font-size: 56px;
  }

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

  .hero-actions,
  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  .hero-proof,
  .product-grid,
  .material-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 46px;
  }

  .proof-item {
    padding: 28px 22px 22px;
  }

  .proof-item::before {
    top: 0;
    bottom: auto;
    left: 22px;
    width: 56px;
    height: 3px;
  }

  .services,
  .team,
  .cases,
  .events,
  .partners,
  .materials,
  .products-content,
  .contact-card {
    padding: 72px 0;
  }

  .intro {
    padding-block: 72px;
  }

  .section-heading h2,
  .cases-heading h2,
  .contact-card h2 {
    font-size: clamp(32px, 10vw, 46px);
  }

  .section-heading p,
  .cases-heading p,
  .contact-card p {
    font-size: 16px;
  }

  .intro-panel {
    padding: 24px;
  }

  .intro-panel p {
    font-size: 21px;
  }

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

  .service-card {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 24px;
  }

  .service-card-featured,
  .service-card-wide,
  .service-card:not(.service-card-featured):not(.service-card-wide) {
    grid-column: 1 / -1;
    grid-row: auto;
  }

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

  .service-card-wide {
    padding-right: 24px;
  }

  .partners-row {
    padding: 24px 0;
  }

  .partners-row + .partners-row {
    margin-top: 24px;
    padding-top: 32px;
  }

  .partners-heading h2 {
    font-size: clamp(28px, 9vw, 42px);
  }

  .partners-logos-stack {
    gap: 16px;
  }

  .partners-logos-row {
    flex-direction: column;
    align-items: center;
    gap: 16px;
  }

  .partners-association-note {
    font-size: 16px;
  }

  .product-card {
    min-height: auto;
    padding: 24px;
  }

  .product-card h3 {
    margin-top: 40px;
  }

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

  .team-card {
    display: block;
  }

  .team-photo {
    aspect-ratio: 16 / 13;
  }

  .team-card-description {
    min-height: auto;
    padding: 24px;
  }

  .team-role,
  .team-summary,
  .team-highlights li {
    font-size: 16px;
  }

  .syncretis-note::after {
    opacity: 1;
    background: var(--overlay-linear-soft);
  }

  .cases-header {
    margin-bottom: 32px;
  }

  .case-card {
    min-height: auto;
    padding: 24px;
  }

  .case-board {
    grid-template-columns: 1fr;
  }

  .case-card-wide,
  .case-card-small {
    grid-column: 1 / -1;
  }

  .case-card-main {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .case-client {
    min-height: 44px;
  }

  .case-link-icon {
    width: 40px;
    height: 40px;
  }

  .case-quote p {
    margin-top: 72px;
    margin-bottom: 24px;
    font-size: 18px;
  }

  .case-metric {
    justify-items: start;
    text-align: left;
  }

  .case-metric strong {
    font-size: 72px;
  }

  .case-metric-compact strong {
    font-size: 56px;
  }

  .case-story-description {
    margin-top: 96px;
  }

  .case-story-description h3 {
    font-size: 24px;
  }

  .footer {
    padding: 64px 0 56px;
  }

  .footer-inner {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.98fr);
    grid-template-areas:
      "brand contact"
      "links contact";
    gap: 40px;
  }

  .footer-logo .brand-mark {
    width: clamp(176px, 22vw, 224px);
  }

  .footer-brand {
    gap: 24px;
  }

  .footer-nav {
    column-gap: 32px;
    row-gap: 24px;
    font-size: 24px;
  }

  .footer-contact {
    gap: 24px;
  }

  .footer-phone {
    font-size: clamp(44px, 4.8vw, 56px);
  }

  .footer-email-block a {
    font-size: 32px;
  }

  .event-controls {
    display: none;
  }

  .event-track {
    --event-track-offset: var(--page-gutter);
    gap: 24px;
    padding-bottom: 14px;
  }

  .event-card {
    flex-basis: min(82vw, 360px);
  }

  .event-meta {
    margin-top: 14px;
    font-size: 14px;
  }

  .event-card h3 {
    font-size: 21px;
  }

  .event-card p {
    font-size: 15px;
  }

  .footer {
    padding: 48px 0 40px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    grid-template-areas:
      "brand"
      "contact"
      "links";
    gap: 40px;
    justify-content: stretch;
  }

  .footer-logo .brand-mark {
    width: 176px;
  }

  .footer-brand {
    gap: 24px;
  }

  .footer-nav {
    display: none;
  }

  .footer-contact {
    width: 100%;
    justify-self: stretch;
    align-items: flex-start;
    gap: 24px;
  }

  .footer-phone {
    max-width: 100%;
    font-size: clamp(31px, 9.6vw, 52px);
  }

  .footer-email-block {
    gap: 4px;
  }

  .footer-label {
    font-size: 16px;
  }

  .footer-email-block a {
    font-size: clamp(22px, 6.8vw, 24px);
  }

  .footer-cookie,
  .footer-license,
  .footer-policy,
  .footer-address {
    max-width: 100%;
  }

  .brand-mark {
    width: 144px;
  }
}

@media (max-width: 480px) {
  h1 {
    font-size: 50px;
  }

  .team-card {
    display: block;
  }
}

@media (max-width: 400px) {
  h1 {
    font-size: 36px;
    line-height: 0.98;
  }

  .hero-content {
    padding: 104px 0 56px;
  }
}

@keyframes event-tag-pulse {
  0% {
    transform: translateY(-50%) scale(1);
    opacity: 0.5;
  }

  75% {
    transform: translateY(-50%) scale(2.6);
    opacity: 0;
  }

  100% {
    transform: translateY(-50%) scale(2.6);
    opacity: 0;
  }
}
