:root {
  --ink: #111416;
  --graphite: #252a2d;
  --steel: #697176;
  --line: rgba(17, 20, 22, 0.18);
  --white: #ffffff;
  --header-height: 96px;
  --page-gutter: clamp(24px, 5vw, 80px);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  background: var(--white);
  color: var(--ink);
  font-family: "Segoe UI", Inter, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  border-bottom: 1px solid transparent;
  transition:
    height 350ms var(--ease),
    background-color 350ms var(--ease),
    border-color 350ms var(--ease),
    box-shadow 350ms var(--ease);
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  height: 78px;
  background: rgba(255, 255, 255, 0.96);
  border-color: rgba(17, 20, 22, 0.09);
  box-shadow: 0 8px 28px rgba(11, 15, 17, 0.06);
  backdrop-filter: blur(14px);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100%, 1600px);
  height: 100%;
  margin: 0 auto;
  padding-inline: var(--page-gutter);
}

.brand {
  position: relative;
  z-index: 22;
  display: inline-flex;
  align-items: center;
  width: clamp(184px, 15vw, 226px);
  flex: 0 0 auto;
}

.brand__image {
  display: block;
  width: 100%;
  height: auto;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(16px, 1.65vw, 30px);
}

.main-nav__link {
  position: relative;
  padding: 13px 0;
  color: rgba(255, 255, 255, 0.94);
  font-size: 0.75rem;
  font-weight: 650;
  letter-spacing: 0.075em;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.42);
  transition: color 220ms ease;
}

.main-nav__link::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 7px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 280ms var(--ease);
}

.main-nav__link:hover::after,
.main-nav__link:focus-visible::after,
.main-nav__link.is-active::after {
  transform: scaleX(1);
  transform-origin: left;
}

.site-header.is-scrolled .main-nav__link,
.site-header.is-menu-open .main-nav__link {
  color: var(--graphite);
  text-shadow: none;
}

.menu-toggle {
  position: relative;
  z-index: 22;
  display: none;
  width: 46px;
  height: 46px;
  padding: 12px 9px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 27px;
  height: 1.5px;
  margin: 6px auto;
  background: var(--white);
  transition:
    transform 260ms var(--ease),
    opacity 180ms ease,
    background-color 220ms ease;
}

.site-header.is-scrolled .menu-toggle span,
.site-header.is-menu-open .menu-toggle span {
  background: var(--ink);
}

.site-header.is-menu-open .menu-toggle span:nth-child(1) {
  transform: translateY(7.5px) rotate(45deg);
}

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

.site-header.is-menu-open .menu-toggle span:nth-child(3) {
  transform: translateY(-7.5px) rotate(-45deg);
}

.hero {
  position: relative;
  display: flex;
  align-items: center;
  min-height: 100svh;
  overflow: hidden;
  isolation: isolate;
  background: #d9dde0;
}

.hero__image {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hero__wash {
  position: absolute;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.97) 0%,
    rgba(255, 255, 255, 0.91) 22%,
    rgba(255, 255, 255, 0.62) 38%,
    rgba(255, 255, 255, 0.16) 53%,
    rgba(255, 255, 255, 0) 65%
  );
}

.hero__content {
  width: min(660px, 48vw);
  margin-left: max(var(--page-gutter), calc((100vw - 1600px) / 2 + var(--page-gutter)));
  padding-top: calc(var(--header-height) * 0.55);
  animation: content-in 900ms 120ms var(--ease) both;
}

.hero__eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 0 0 25px;
  color: #464d51;
  font-size: clamp(0.69rem, 0.75vw, 0.78rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 1.4;
  text-transform: uppercase;
}

.hero__eyebrow::before {
  content: "";
  width: 34px;
  height: 1px;
  flex: 0 0 auto;
  background: currentColor;
}

.hero__title {
  max-width: 650px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.75rem, 4.15vw, 4.45rem);
  font-weight: 560;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: clamp(34px, 4vw, 52px);
}

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 0 25px;
  border: 1px solid var(--ink);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  transition:
    color 250ms ease,
    background-color 250ms ease,
    border-color 250ms ease,
    transform 250ms var(--ease),
    box-shadow 250ms ease;
}

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

.button:focus-visible,
.main-nav__link:focus-visible,
.brand:focus-visible,
.menu-toggle:focus-visible {
  outline: 2px solid var(--ink);
  outline-offset: 4px;
}

.button--primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 12px 28px rgba(17, 20, 22, 0.17);
}

.button--primary:hover {
  background: #303639;
  border-color: #303639;
  box-shadow: 0 15px 34px rgba(17, 20, 22, 0.22);
}

.button--primary svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: square;
  stroke-width: 1.5;
}

.button--secondary {
  background: rgba(255, 255, 255, 0.12);
  color: var(--ink);
  backdrop-filter: blur(3px);
}

.button--secondary:hover {
  background: var(--white);
}

.solutions {
  position: relative;
  scroll-margin-top: 96px;
  isolation: isolate;
  background:
    linear-gradient(180deg, #ffffff 0%, #fafbfb 48%, #ffffff 100%);
  overflow: hidden;
  padding: clamp(62px, 6.8vw, 102px) var(--page-gutter) clamp(64px, 7vw, 104px);
}

.solutions::before,
.solutions::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.solutions::before {
  inset: 0;
  opacity: 0.58;
  background:
    repeating-radial-gradient(
      circle at 86% 12%,
      rgba(17, 20, 22, 0.055) 0 1px,
      transparent 1px 44px
    ),
    repeating-radial-gradient(
      circle at 10% 86%,
      rgba(17, 20, 22, 0.042) 0 1px,
      transparent 1px 50px
    ),
    linear-gradient(90deg, rgba(17, 20, 22, 0.028) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 20, 22, 0.024) 1px, transparent 1px);
  background-size:
    700px 700px,
    620px 620px,
    82px 82px,
    82px 82px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 82%, transparent 100%);
}

.solutions::after {
  top: clamp(90px, 10vw, 160px);
  right: max(-140px, -8vw);
  width: clamp(260px, 28vw, 470px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 20, 22, 0.045);
  border-radius: 50%;
  box-shadow:
    0 0 0 44px rgba(17, 20, 22, 0.018),
    0 0 0 92px rgba(17, 20, 22, 0.012),
    inset 0 0 0 1px rgba(17, 20, 22, 0.025);
}

.solutions__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1560px);
  margin: 0 auto;
}

.solutions__heading {
  margin-bottom: clamp(28px, 3vw, 42px);
}

.solutions__title {
  max-width: 760px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 3vw, 3.15rem);
  font-weight: 560;
  letter-spacing: -0.045em;
  line-height: 1.05;
  text-wrap: balance;
}

.solutions__rule {
  display: block;
  width: min(540px, 72vw);
  height: 1px;
  margin-top: 18px;
  background: linear-gradient(
    90deg,
    rgba(17, 20, 22, 0.78) 0%,
    rgba(17, 20, 22, 0.34) 45%,
    rgba(17, 20, 22, 0) 100%
  );
}

.solutions__carousel {
  position: relative;
  overflow: hidden;
  padding: 2px 0 10px;
}

.solutions__carousel::before {
  content: "";
  position: absolute;
  inset: -28px -18px auto auto;
  z-index: -1;
  width: min(520px, 38vw);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(17, 20, 22, 0.16), transparent);
}

.solutions__track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: solutions-loop 42s linear infinite;
}

.solutions__carousel:hover .solutions__track,
.solutions__carousel:focus-within .solutions__track {
  animation-play-state: paused;
}

.solutions__set {
  --solutions-gap: clamp(16px, 1.35vw, 24px);
  display: flex;
  flex: 0 0 auto;
  gap: var(--solutions-gap);
  padding-right: var(--solutions-gap);
}

.solution-card {
  position: relative;
  flex: 0 0 clamp(340px, 28vw, 470px);
  aspect-ratio: 1.72 / 1;
  min-height: 214px;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 22, 0.12);
  border-radius: 24px;
  background: #d9dde0;
  box-shadow:
    0 18px 42px rgba(17, 20, 22, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.34);
  isolation: isolate;
  transform: translateZ(0);
  transition:
    border-color 260ms ease,
    box-shadow 320ms ease,
    transform 420ms var(--ease);
}

.solution-card::after {
  content: "";
  position: absolute;
  inset: 10px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 18px;
}

.solution-card:hover {
  border-color: rgba(17, 20, 22, 0.24);
  box-shadow:
    0 26px 56px rgba(17, 20, 22, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.38);
  transform: translateY(-4px);
}

.solution-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    filter 360ms ease,
    transform 620ms var(--ease);
}

.solution-card:hover .solution-card__image {
  filter: saturate(1.03) contrast(1.03) brightness(0.78);
  transform: scale(1.055);
}

.solution-card__shade {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(17, 20, 22, 0) 30%, rgba(17, 20, 22, 0.42) 76%, rgba(17, 20, 22, 0.82) 100%),
    linear-gradient(90deg, rgba(17, 20, 22, 0.14), rgba(17, 20, 22, 0));
  opacity: 0.96;
  transition:
    background 360ms ease,
    opacity 360ms ease;
}

.solution-card:hover .solution-card__shade {
  background:
    linear-gradient(180deg, rgba(17, 20, 22, 0.36), rgba(17, 20, 22, 0.6)),
    linear-gradient(180deg, rgba(17, 20, 22, 0) 25%, rgba(17, 20, 22, 0.76) 100%);
}

.solution-card__content {
  position: absolute;
  right: clamp(18px, 1.7vw, 28px);
  bottom: clamp(18px, 1.7vw, 28px);
  left: clamp(18px, 1.7vw, 28px);
  z-index: 3;
  color: #ffffff;
  transform: translateY(24px);
  transition: transform 420ms var(--ease);
}

.solution-card:hover .solution-card__content {
  transform: translateY(0);
}

.solution-card__content h3 {
  margin: 0;
  max-width: 92%;
  font-size: clamp(1.18rem, 1.35vw, 1.62rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.04;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.52);
}

.solution-card__content p {
  max-height: 0;
  margin: 0;
  overflow: hidden;
  opacity: 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(0.76rem, 0.82vw, 0.9rem);
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.2;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.52);
  white-space: nowrap;
  transform: translateY(8px);
  transition:
    max-height 420ms var(--ease),
    margin-top 420ms var(--ease),
    opacity 300ms ease,
    transform 420ms var(--ease);
}

.solution-card:hover .solution-card__content p {
  max-height: 20px;
  margin-top: 9px;
  opacity: 1;
  transform: translateY(0);
}

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

.about {
  position: relative;
  scroll-margin-top: 96px;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 48px) var(--page-gutter) clamp(74px, 7.2vw, 118px);
  background:
    linear-gradient(180deg, #ffffff 0%, #fbfcfc 46%, #ffffff 100%);
}

.about::before,
.about::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.about::before {
  inset: -160px 0 0;
  opacity: 0.5;
  background:
    repeating-radial-gradient(
      circle at 14% 26%,
      rgba(17, 20, 22, 0.045) 0 1px,
      transparent 1px 48px
    ),
    repeating-radial-gradient(
      circle at 86% 72%,
      rgba(17, 20, 22, 0.038) 0 1px,
      transparent 1px 54px
    ),
    linear-gradient(90deg, rgba(17, 20, 22, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 20, 22, 0.022) 1px, transparent 1px);
  background-size:
    700px 700px,
    620px 620px,
    82px 82px,
    82px 82px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.about::after {
  bottom: clamp(70px, 8vw, 132px);
  left: max(-170px, -9vw);
  width: clamp(280px, 32vw, 540px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 20, 22, 0.04);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(17, 20, 22, 0.016),
    0 0 0 106px rgba(17, 20, 22, 0.01),
    inset 0 0 0 1px rgba(17, 20, 22, 0.02);
}

.about__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(430px, 1fr);
  align-items: start;
  gap: clamp(42px, 5vw, 84px);
  width: min(100%, 1560px);
  margin: 0 auto;
}

.about__content {
  max-width: 740px;
}

.about__eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin: 0 0 18px;
  color: #4f575c;
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.about__eyebrow::before {
  content: "";
  display: block;
  width: 34px;
  height: 1px;
  background: rgba(17, 20, 22, 0.52);
}

.about__title {
  max-width: 720px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.15rem, 3.8vw, 4.05rem);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 1.02;
  text-wrap: balance;
}

.about__text {
  display: grid;
  gap: 16px;
  margin-top: clamp(24px, 2.3vw, 34px);
}

.about__text p {
  margin: 0;
  color: #434b50;
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.about__highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: clamp(28px, 2.8vw, 40px);
}

.about-highlight {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 13px;
  min-width: 0;
  padding: 16px;
  border: 1px solid rgba(17, 20, 22, 0.08);
  border-radius: 17px;
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 16px 34px rgba(17, 20, 22, 0.045);
  backdrop-filter: blur(10px);
}

.about-highlight__icon {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background:
    linear-gradient(145deg, #111416 0%, #2d3337 100%);
  color: var(--white);
  box-shadow: 0 10px 22px rgba(17, 20, 22, 0.14);
}

.about-highlight__icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.about-highlight h3 {
  margin: 0 0 6px;
  color: var(--graphite);
  font-size: 0.86rem;
  font-weight: 780;
  letter-spacing: -0.02em;
  line-height: 1.12;
}

.about-highlight p {
  margin: 0;
  color: #596166;
  font-size: 0.78rem;
  line-height: 1.45;
}

.about__media {
  position: relative;
  align-self: start;
  justify-self: end;
  width: min(100%, var(--about-media-size, 100%));
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 22, 0.1);
  border-radius: 26px;
  background: #d9dde0;
  box-shadow:
    0 26px 70px rgba(17, 20, 22, 0.12),
    0 1px 0 rgba(255, 255, 255, 0.8) inset;
  isolation: isolate;
}

.about__media::before {
  content: "";
  position: absolute;
  inset: 16px;
  z-index: 2;
  pointer-events: none;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 19px;
}

.about__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(17, 20, 22, 0.12)),
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), transparent 36%, rgba(0, 0, 0, 0.1));
  opacity: 0.72;
}

.about__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services {
  position: relative;
  scroll-margin-top: 96px;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 5.2vw, 86px) var(--page-gutter) clamp(54px, 5.6vw, 90px);
  background:
    radial-gradient(circle at 20% 12%, rgba(255, 255, 255, 0.075), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(255, 255, 255, 0.055), transparent 30%),
    linear-gradient(135deg, #070909 0%, #111517 48%, #080a0b 100%);
  color: var(--white);
}

.services::before,
.services::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.services::before {
  inset: 0;
  opacity: 0.42;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    repeating-radial-gradient(
      circle at 74% 24%,
      rgba(255, 255, 255, 0.052) 0 1px,
      transparent 1px 54px
    );
  background-size:
    88px 88px,
    88px 88px,
    760px 760px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 16%, #000 84%, transparent 100%);
}

.services::after {
  top: clamp(82px, 9vw, 150px);
  right: max(-180px, -10vw);
  width: clamp(300px, 33vw, 560px);
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.055);
  border-radius: 50%;
  box-shadow:
    0 0 0 58px rgba(255, 255, 255, 0.018),
    0 0 0 116px rgba(255, 255, 255, 0.01),
    inset 0 0 0 1px rgba(255, 255, 255, 0.026);
}

.services__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1480px);
  margin: 0 auto;
}

.services__heading {
  max-width: 760px;
  margin: 0 auto clamp(26px, 3vw, 42px);
  text-align: center;
}

.services__title {
  margin: 0;
  color: #f5f6f6;
  font-size: clamp(2.1rem, 3.8vw, 4.2rem);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.services__subtitle {
  max-width: 680px;
  margin: clamp(16px, 1.6vw, 22px) auto 0;
  color: rgba(235, 238, 239, 0.68);
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.65;
  text-wrap: pretty;
}

.services__slider {
  position: relative;
  padding: 0 clamp(42px, 4vw, 64px);
}

.services__viewport {
  display: grid;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.095);
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.025)),
    rgba(255, 255, 255, 0.025);
  box-shadow:
    0 34px 90px rgba(0, 0, 0, 0.36),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.service-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(330px, 0.72fr);
  align-items: stretch;
  gap: clamp(18px, 2vw, 30px);
  padding: clamp(16px, 1.5vw, 24px);
  opacity: 0;
  pointer-events: none;
  transform: translateX(26px) scale(0.986);
  transition:
    opacity 640ms ease,
    transform 760ms var(--ease),
    visibility 0s linear 760ms;
  visibility: hidden;
}

.service-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
  transition-delay: 0s;
  visibility: visible;
}

.service-slide__media {
  position: relative;
  min-height: clamp(360px, 32vw, 520px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 23px;
  background: #171b1d;
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.34);
  isolation: isolate;
}

.service-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(0, 0, 0, 0.18)),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1), transparent 36%, rgba(0, 0, 0, 0.12));
}

.service-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 900ms var(--ease);
}

.service-slide.is-active .service-slide__media img {
  transform: scale(1);
}

.service-slide__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-height: clamp(360px, 32vw, 520px);
  padding: clamp(30px, 3.4vw, 58px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 23px;
  background:
    linear-gradient(150deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.026)),
    rgba(9, 11, 12, 0.42);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.07);
}

.service-slide__number {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: max-content;
  margin-bottom: clamp(22px, 2.2vw, 34px);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.service-slide__number::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.32);
}

.service-slide__content h3 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3.2vw, 3.7rem);
  font-weight: 610;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.service-slide__content p {
  max-width: 540px;
  margin: clamp(18px, 1.7vw, 24px) 0 0;
  color: rgba(235, 238, 239, 0.72);
  font-size: clamp(0.98rem, 1vw, 1.12rem);
  line-height: 1.72;
  text-wrap: pretty;
}

.services__arrow {
  position: absolute;
  top: calc(50% - 20px);
  z-index: 3;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.055);
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  backdrop-filter: blur(12px);
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 300ms var(--ease);
}

.services__arrow:hover,
.services__arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.12);
  color: #ffffff;
  transform: translateY(-1px);
}

.services__arrow:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
}

.services__arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.services__arrow--prev {
  left: 0;
}

.services__arrow--next {
  right: 0;
}

.services__dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.services__dot {
  width: 10px;
  height: 10px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.24);
  cursor: pointer;
  transition:
    width 300ms var(--ease),
    background-color 300ms ease,
    transform 300ms var(--ease);
}

.services__dot:hover,
.services__dot:focus-visible {
  background: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

.services__dot:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
}

.services__dot.is-active {
  width: 30px;
  background: #ffffff;
}

.materials {
  position: relative;
  scroll-margin-top: 96px;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(68px, 6.8vw, 108px) var(--page-gutter) clamp(70px, 7vw, 112px);
  background:
    linear-gradient(180deg, #ffffff 0%, #fafbfb 48%, #ffffff 100%);
}

.materials::before,
.materials::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.materials::before {
  inset: -120px 0 0;
  opacity: 0.54;
  background:
    repeating-radial-gradient(
      circle at 84% 18%,
      rgba(17, 20, 22, 0.048) 0 1px,
      transparent 1px 48px
    ),
    repeating-radial-gradient(
      circle at 12% 84%,
      rgba(17, 20, 22, 0.038) 0 1px,
      transparent 1px 54px
    ),
    linear-gradient(90deg, rgba(17, 20, 22, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 20, 22, 0.022) 1px, transparent 1px);
  background-size:
    700px 700px,
    640px 640px,
    82px 82px,
    82px 82px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.materials::after {
  bottom: clamp(62px, 7vw, 120px);
  left: max(-150px, -8vw);
  width: clamp(260px, 30vw, 500px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 20, 22, 0.04);
  border-radius: 50%;
  box-shadow:
    0 0 0 48px rgba(17, 20, 22, 0.016),
    0 0 0 98px rgba(17, 20, 22, 0.01),
    inset 0 0 0 1px rgba(17, 20, 22, 0.02);
}

.materials__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1560px);
  margin: 0 auto;
}

.materials__heading {
  max-width: 780px;
  margin: 0 auto clamp(32px, 3.8vw, 54px);
  text-align: center;
}

.materials__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.45vw, 3.75rem);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.materials__subtitle {
  max-width: 720px;
  margin: clamp(15px, 1.5vw, 22px) auto 0;
  color: #596166;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.64;
  text-wrap: pretty;
}

.materials__carousel {
  overflow: hidden;
  padding: 4px 0 18px;
  mask-image: linear-gradient(90deg, transparent 0%, #000 7%, #000 93%, transparent 100%);
}

.materials__rail {
  --materials-gap: clamp(14px, 1.35vw, 22px);
  display: flex;
  width: max-content;
  will-change: transform;
  animation: materials-loop 48s linear infinite;
}

.materials__carousel:hover .materials__rail,
.materials__carousel:focus-within .materials__rail {
  animation-play-state: paused;
}

.materials__set {
  display: flex;
  flex: 0 0 auto;
  gap: var(--materials-gap);
  padding-right: var(--materials-gap);
}

.material-card {
  position: relative;
  flex: 0 0 clamp(218px, 17.2vw, 268px);
  aspect-ratio: 0.64 / 1;
  min-height: 352px;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 22, 0.14);
  border-radius: 24px;
  background: #d8dcde;
  box-shadow:
    0 20px 46px rgba(17, 20, 22, 0.105),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  isolation: isolate;
  transform: translateZ(0);
  transition:
    border-color 260ms ease,
    box-shadow 320ms ease,
    transform 420ms var(--ease);
}

.material-card::before,
.material-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.material-card::before {
  background:
    linear-gradient(180deg, rgba(17, 20, 22, 0.22) 0%, transparent 32%),
    linear-gradient(180deg, transparent 38%, rgba(17, 20, 22, 0.58) 76%, rgba(17, 20, 22, 0.88) 100%);
}

.material-card::after {
  inset: 10px;
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 18px;
}

.material-card:hover {
  border-color: rgba(17, 20, 22, 0.26);
  box-shadow:
    0 26px 58px rgba(17, 20, 22, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.46);
  transform: translateY(-5px);
}

.material-card__image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.01);
  transition:
    filter 320ms ease,
    transform 620ms var(--ease);
}

.material-card:hover .material-card__image {
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.055);
}

.material-card__symbol {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 2;
  width: 42px;
  height: 42px;
  padding: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 14px;
  background: rgba(10, 13, 14, 0.45);
  object-fit: contain;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(10px);
}

.material-card__content {
  position: absolute;
  right: 20px;
  bottom: 20px;
  left: 20px;
  z-index: 2;
  color: #ffffff;
}

.material-card__content h3 {
  margin: 0;
  font-size: clamp(1.22rem, 1.35vw, 1.55rem);
  font-weight: 760;
  letter-spacing: -0.035em;
  line-height: 1.02;
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.46);
}

.material-card__content p {
  margin: 8px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 560;
  letter-spacing: -0.01em;
  line-height: 1.25;
  text-shadow: 0 2px 12px rgba(0, 0, 0, 0.46);
}

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

.projects {
  position: relative;
  scroll-margin-top: 96px;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(24px, 3.2vw, 48px) var(--page-gutter) clamp(72px, 7.2vw, 116px);
  background:
    linear-gradient(180deg, #ffffff 0%, #fafbfb 48%, #ffffff 100%);
}

.projects::before,
.projects::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.projects::before {
  inset: -140px 0 0;
  opacity: 0.52;
  background:
    repeating-radial-gradient(
      circle at 78% 20%,
      rgba(17, 20, 22, 0.046) 0 1px,
      transparent 1px 50px
    ),
    repeating-radial-gradient(
      circle at 12% 78%,
      rgba(17, 20, 22, 0.036) 0 1px,
      transparent 1px 54px
    ),
    linear-gradient(90deg, rgba(17, 20, 22, 0.024) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 20, 22, 0.022) 1px, transparent 1px);
  background-size:
    720px 720px,
    640px 640px,
    82px 82px,
    82px 82px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 86%, transparent 100%);
}

.projects::after {
  top: clamp(84px, 9vw, 150px);
  right: max(-160px, -8vw);
  width: clamp(260px, 30vw, 510px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 20, 22, 0.04);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(17, 20, 22, 0.014),
    0 0 0 104px rgba(17, 20, 22, 0.009),
    inset 0 0 0 1px rgba(17, 20, 22, 0.02);
}

.projects__inner {
  position: relative;
  z-index: 1;
  width: min(100%, 1560px);
  margin: 0 auto;
}

.projects__heading {
  max-width: 760px;
  margin: 0 auto clamp(34px, 4vw, 58px);
  text-align: center;
}

.projects__title {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.05rem, 3.45vw, 3.8rem);
  font-weight: 570;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.projects__subtitle {
  max-width: 690px;
  margin: clamp(15px, 1.5vw, 22px) auto 0;
  color: #596166;
  font-size: clamp(0.96rem, 1vw, 1.08rem);
  line-height: 1.64;
  text-wrap: pretty;
}

.projects__slider {
  --project-card-ratio: 0.95 / 1;
  display: grid;
  position: relative;
  width: 100%;
  margin: 0 auto;
}

.project-slide {
  grid-area: 1 / 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 1.4vw, 24px);
  align-items: stretch;
  opacity: 0;
  pointer-events: none;
  transform: translateY(18px) scale(0.988);
  visibility: hidden;
  transition:
    opacity 560ms ease,
    transform 720ms var(--ease),
    visibility 0s linear 720ms;
}

.project-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
  visibility: visible;
  transition-delay: 0s;
}

.project-slide__panel {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  aspect-ratio: var(--project-card-ratio);
  min-height: 0;
  overflow: hidden;
  padding: clamp(28px, 2.8vw, 44px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.09), transparent 28%),
    linear-gradient(145deg, #080a0b 0%, #151a1d 54%, #090b0c 100%);
  box-shadow:
    0 28px 76px rgba(17, 20, 22, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-align: center;
  isolation: isolate;
}

.project-slide__panel::before,
.project-slide__panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}

.project-slide__panel::before {
  opacity: 0.34;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.project-slide__panel::after {
  inset: auto -70px -90px auto;
  width: 250px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.018),
    0 0 0 86px rgba(255, 255, 255, 0.01);
}

.project-slide__number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  width: max-content;
  margin-bottom: clamp(16px, 1.7vw, 26px);
  color: rgba(255, 255, 255, 0.54);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.18em;
}

.project-slide__number::after {
  content: "";
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
}

.project-slide__panel h3 {
  max-width: 520px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.82rem, 2.35vw, 2.9rem);
  font-weight: 620;
  letter-spacing: -0.055em;
  line-height: 1.02;
  text-wrap: balance;
}

.project-slide__panel p {
  max-width: 540px;
  margin: clamp(14px, 1.35vw, 20px) 0 0;
  color: rgba(235, 238, 239, 0.72);
  font-size: clamp(0.9rem, 0.9vw, 1.02rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.project-slide__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: clamp(22px, 2.35vw, 34px);
}

.project-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 300ms var(--ease);
}

.project-button:hover,
.project-button:focus-visible {
  transform: translateY(-1px);
}

.project-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
}

.project-button--ghost {
  color: rgba(255, 255, 255, 0.9);
  background: rgba(255, 255, 255, 0.045);
}

.project-button--ghost:hover,
.project-button--ghost:focus-visible {
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
}

.project-button--light {
  border-color: rgba(255, 255, 255, 0.82);
  background: #ffffff;
  color: var(--ink);
}

.project-button--light:hover,
.project-button--light:focus-visible {
  background: rgba(255, 255, 255, 0.86);
}

.project-button--arrow {
  width: 46px;
  min-width: 46px;
  padding: 0;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  backdrop-filter: blur(12px);
}

.project-button--arrow:hover,
.project-button--arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.project-button--arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.project-slide__media {
  position: relative;
  aspect-ratio: var(--project-card-ratio);
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 20, 22, 0.1);
  border-radius: 26px;
  background: #d8dcde;
  box-shadow:
    0 28px 76px rgba(17, 20, 22, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
  isolation: isolate;
}

.project-slide__media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(17, 20, 22, 0.12)),
    linear-gradient(90deg, rgba(17, 20, 22, 0.08), transparent 45%, rgba(17, 20, 22, 0.08));
}

.project-slide__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.015);
  transition: transform 760ms var(--ease);
}

.project-slide.is-active .project-slide__media img {
  transform: scale(1);
}

.faq {
  position: relative;
  scroll-margin-top: 96px;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(32px, 4.4vw, 74px) var(--page-gutter) clamp(76px, 7vw, 118px);
  background:
    linear-gradient(180deg, #ffffff 0%, #fafbfb 48%, #ffffff 100%);
}

.faq::before,
.faq::after {
  content: "";
  position: absolute;
  z-index: 0;
  pointer-events: none;
}

.faq::before {
  inset: -180px 0 0;
  opacity: 0.48;
  background:
    repeating-radial-gradient(
      circle at 18% 30%,
      rgba(17, 20, 22, 0.043) 0 1px,
      transparent 1px 48px
    ),
    repeating-radial-gradient(
      circle at 82% 78%,
      rgba(17, 20, 22, 0.034) 0 1px,
      transparent 1px 54px
    ),
    linear-gradient(90deg, rgba(17, 20, 22, 0.022) 1px, transparent 1px),
    linear-gradient(180deg, rgba(17, 20, 22, 0.02) 1px, transparent 1px);
  background-size:
    690px 690px,
    640px 640px,
    82px 82px,
    82px 82px;
  mask-image: linear-gradient(180deg, transparent 0%, #000 18%, #000 88%, transparent 100%);
}

.faq::after {
  right: max(-170px, -9vw);
  bottom: clamp(70px, 8vw, 132px);
  width: clamp(260px, 30vw, 520px);
  aspect-ratio: 1;
  border: 1px solid rgba(17, 20, 22, 0.04);
  border-radius: 50%;
  box-shadow:
    0 0 0 52px rgba(17, 20, 22, 0.014),
    0 0 0 106px rgba(17, 20, 22, 0.009),
    inset 0 0 0 1px rgba(17, 20, 22, 0.02);
}

.faq__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(280px, 0.42fr) minmax(0, 1fr);
  align-items: stretch;
  gap: clamp(24px, 3.2vw, 58px);
  width: min(100%, 1560px);
  margin: 0 auto;
}

.faq__panel {
  position: relative;
  display: flex;
  min-height: clamp(420px, 33vw, 540px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(32px, 3.2vw, 52px);
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 30px;
  background:
    radial-gradient(circle at 24% 16%, rgba(255, 255, 255, 0.09), transparent 30%),
    linear-gradient(145deg, #080a0b 0%, #151a1d 54%, #090b0c 100%);
  box-shadow:
    0 28px 76px rgba(17, 20, 22, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.08);
  color: #ffffff;
  text-align: center;
  isolation: isolate;
}

.faq__panel::before,
.faq__panel::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.faq__panel::before {
  inset: 0;
  z-index: -1;
  opacity: 0.32;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 54px 54px;
  mask-image: linear-gradient(180deg, #000, transparent 86%);
}

.faq__panel::after {
  right: -84px;
  bottom: -96px;
  width: 250px;
  aspect-ratio: 1;
  z-index: -1;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.018),
    0 0 0 86px rgba(255, 255, 255, 0.01);
}

.faq__panel h2 {
  margin: 0;
  color: #ffffff;
  font-size: clamp(3.1rem, 5vw, 5.8rem);
  font-weight: 780;
  letter-spacing: -0.08em;
  line-height: 0.92;
}

.faq__rule {
  display: block;
  width: min(250px, 72%);
  height: 1px;
  margin: clamp(42px, 5vw, 72px) 0 clamp(38px, 4.4vw, 62px);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.46), transparent);
}

.faq__panel p {
  max-width: 260px;
  margin: 0;
  color: rgba(238, 241, 242, 0.84);
  font-size: clamp(1.08rem, 1.35vw, 1.42rem);
  line-height: 1.38;
}

.faq__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: clamp(28px, 3vw, 44px);
}

.faq-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 300ms var(--ease);
}

.faq-button:hover,
.faq-button:focus-visible {
  transform: translateY(-1px);
}

.faq-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
}

.faq-button--primary {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #ffffff;
  color: var(--ink);
}

.faq-button--primary:hover,
.faq-button--primary:focus-visible {
  background: rgba(255, 255, 255, 0.86);
}

.faq-button--icon {
  width: 46px;
  min-width: 46px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  font-size: 0.92rem;
  backdrop-filter: blur(12px);
}

.faq-button--icon:hover,
.faq-button--icon:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.faq__list {
  display: grid;
  align-content: start;
  gap: clamp(12px, 1.1vw, 18px);
}

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(17, 20, 22, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow:
    0 18px 42px rgba(17, 20, 22, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.68);
  backdrop-filter: blur(10px);
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    background-color 260ms ease;
}

.faq-item.is-open {
  border-color: rgba(17, 20, 22, 0.16);
  background: rgba(255, 255, 255, 0.95);
  box-shadow:
    0 22px 56px rgba(17, 20, 22, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.72);
}

.faq-item__question {
  display: flex;
  width: 100%;
  min-height: clamp(68px, 5.4vw, 88px);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 0 clamp(20px, 2.4vw, 38px);
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
}

.faq-item__question span {
  font-size: clamp(1rem, 1.25vw, 1.28rem);
  font-weight: 720;
  letter-spacing: -0.035em;
  line-height: 1.28;
}

.faq-item__question svg {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
  transition: transform 300ms var(--ease);
}

.faq-item.is-open .faq-item__question svg {
  transform: rotate(180deg);
}

.faq-item__question:focus-visible {
  outline: 2px solid rgba(17, 20, 22, 0.42);
  outline-offset: -6px;
}

.faq-item__answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 340ms var(--ease);
}

.faq-item__answer p {
  max-width: 920px;
  margin: 0;
  padding: 0 clamp(20px, 2.4vw, 38px) clamp(20px, 2.1vw, 30px);
  color: #596166;
  font-size: clamp(0.92rem, 0.98vw, 1.04rem);
  line-height: 1.62;
  text-wrap: pretty;
}

.site-footer {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding: clamp(54px, 5vw, 78px) var(--page-gutter) clamp(28px, 3vw, 42px);
  background:
    radial-gradient(circle at 18% 18%, rgba(255, 255, 255, 0.08), transparent 28%),
    linear-gradient(145deg, #080a0b 0%, #151a1d 54%, #090b0c 100%);
  color: #ffffff;
}

.site-footer::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 50%;
  z-index: 3;
  width: clamp(160px, 18vw, 290px);
  height: clamp(22px, 2.6vw, 36px);
  background: #ffffff;
  border-radius: 0 0 999px 999px;
  transform: translateX(-50%);
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.12);
}

.site-footer::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  opacity: 0.26;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    radial-gradient(circle at 80% 78%, rgba(255, 255, 255, 0.07), transparent 30%);
  background-size:
    58px 58px,
    58px 58px,
    auto;
  mask-image: linear-gradient(180deg, #000 0%, rgba(0, 0, 0, 0.82) 72%, rgba(0, 0, 0, 0.56) 100%);
}

.site-footer__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(380px, 0.92fr);
  align-items: start;
  gap: clamp(34px, 4vw, 66px);
  width: min(100%, 1560px);
  margin: 0 auto;
}

.site-footer__left,
.site-footer__right {
  position: relative;
  min-width: 0;
}

.site-footer__headline {
  max-width: 560px;
  margin: 0;
  color: #ffffff;
  font-size: clamp(2rem, 3vw, 3.45rem);
  font-weight: 520;
  letter-spacing: -0.062em;
  line-height: 1.06;
  text-wrap: balance;
}

.footer-contact-card {
  width: min(100%, 340px);
  margin-top: clamp(26px, 3vw, 40px);
  padding: clamp(20px, 1.9vw, 26px);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 26px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.24);
}

.footer-contact-card h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(1.08rem, 1.2vw, 1.32rem);
  font-weight: 760;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.footer-contact-card p {
  margin: 10px 0 0;
  color: #333b40;
  font-size: 0.88rem;
  line-height: 1.5;
}

.footer-contact-card__actions,
.site-footer__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact-card__actions {
  margin-top: 18px;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: -0.01em;
  transition:
    background-color 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 300ms var(--ease);
}

.footer-button:hover,
.footer-button:focus-visible {
  transform: translateY(-1px);
}

.footer-button:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.62);
  outline-offset: 4px;
}

.footer-button--dark {
  padding: 0 20px;
  border: 1px solid #111416;
  background: #111416;
  color: #ffffff;
}

.footer-button--dark:hover,
.footer-button--dark:focus-visible {
  background: #242a2e;
}

.footer-button--icon-dark {
  width: 42px;
  min-width: 42px;
  border: 1px solid #111416;
  background: #111416;
  color: #ffffff;
  font-size: 0.92rem;
}

.footer-button--icon-dark:hover,
.footer-button--icon-dark:focus-visible {
  background: #242a2e;
}

.footer-button--outline {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.9);
}

.footer-button--outline:hover,
.footer-button--outline:focus-visible {
  border-color: rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.11);
}

.footer-button--light {
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.82);
  background: #ffffff;
  color: var(--ink);
}

.footer-button--light:hover,
.footer-button--light:focus-visible {
  background: rgba(255, 255, 255, 0.86);
}

.footer-button--arrow {
  width: 42px;
  min-width: 42px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background: rgba(255, 255, 255, 0.08);
  color: #ffffff;
  backdrop-filter: blur(12px);
}

.footer-button--arrow:hover,
.footer-button--arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.36);
  background: rgba(255, 255, 255, 0.14);
}

.footer-button--arrow svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.site-footer__brand {
  grid-column: 1 / -1;
  margin-top: clamp(22px, 2.2vw, 34px);
}

.site-footer__brand span {
  display: block;
  color: #ffffff;
  font-size: clamp(3.1rem, 5.9vw, 6.9rem);
  font-weight: 850;
  letter-spacing: -0.082em;
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 0 14px 42px rgba(0, 0, 0, 0.36);
}

.site-footer__brand p {
  margin: clamp(12px, 1.2vw, 18px) 0 0;
  color: rgba(238, 241, 242, 0.62);
  font-size: 0.84rem;
  line-height: 1.5;
}

.site-footer__right {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-content: start;
  column-gap: clamp(22px, 3vw, 48px);
  row-gap: clamp(20px, 2vw, 32px);
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  padding-left: clamp(18px, 2.8vw, 56px);
}

.footer-info + .footer-info {
  margin-top: 0;
}

.footer-info span {
  display: block;
  margin-bottom: 10px;
  color: rgba(238, 241, 242, 0.58);
  font-size: 0.9rem;
  line-height: 1;
}

.footer-info a,
.footer-info p {
  margin: 0;
  color: #ffffff;
  font-size: clamp(1.28rem, 2vw, 2.18rem);
  font-weight: 460;
  letter-spacing: -0.06em;
  line-height: 1.08;
}

.footer-info a:hover,
.footer-info a:focus-visible {
  color: rgba(255, 255, 255, 0.78);
}

.site-footer__actions {
  grid-column: 1 / -1;
  margin-top: 0;
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1080px) {
  :root {
    --header-height: 84px;
  }

  .main-nav {
    gap: 14px;
  }

  .main-nav__link {
    font-size: 0.69rem;
  }

  .hero__content {
    width: min(610px, 54vw);
  }

  .hero__title {
    font-size: clamp(2.65rem, 5vw, 3.65rem);
  }

  .solution-card {
    flex-basis: clamp(320px, 36vw, 420px);
    min-height: 202px;
  }

  .about__inner {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.92fr);
    gap: clamp(34px, 4vw, 54px);
  }

  .about__title {
    font-size: clamp(2.05rem, 4vw, 3.2rem);
  }

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

  .services__slider {
    padding: 0 34px;
  }

  .service-slide {
    grid-template-columns: minmax(0, 1fr) minmax(310px, 0.78fr);
    gap: 16px;
  }

  .service-slide__content {
    padding: clamp(28px, 3vw, 42px);
  }

  .service-slide__content h3 {
    font-size: clamp(1.9rem, 3.3vw, 3.1rem);
  }

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

  .project-slide__panel,
  .project-slide__media {
    aspect-ratio: var(--project-card-ratio);
    min-height: 0;
    border-radius: 24px;
  }

  .project-slide__panel {
    padding: clamp(28px, 3vw, 42px);
  }

  .project-slide__panel h3 {
    font-size: clamp(1.82rem, 2.8vw, 2.55rem);
  }

  .faq__inner {
    grid-template-columns: minmax(260px, 0.42fr) minmax(0, 1fr);
    gap: clamp(20px, 2.8vw, 38px);
  }

  .faq__panel {
    min-height: clamp(380px, 38vw, 500px);
    border-radius: 26px;
  }

  .site-footer__inner {
    grid-template-columns: minmax(0, 1fr) minmax(330px, 0.9fr);
    gap: clamp(32px, 4vw, 56px);
  }

  .site-footer__headline {
    font-size: clamp(2rem, 3.5vw, 3.2rem);
  }

  .footer-info a,
  .footer-info p {
    font-size: clamp(1.38rem, 2.6vw, 2.38rem);
  }

  .materials__rail {
    --materials-gap: clamp(14px, 1.8vw, 18px);
  }

  .material-card {
    flex-basis: clamp(218px, 26vw, 252px);
    min-height: 346px;
  }
}

@media (max-width: 900px) {
  :root {
    --page-gutter: clamp(22px, 5vw, 42px);
  }

  .site-header,
  .site-header.is-scrolled,
  .site-header.is-menu-open {
    height: 76px;
  }

  .brand {
    width: 190px;
  }

  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    inset: 76px 0 auto;
    display: grid;
    gap: 0;
    padding: 12px var(--page-gutter) 24px;
    background: rgba(255, 255, 255, 0.98);
    border-bottom: 1px solid rgba(17, 20, 22, 0.1);
    box-shadow: 0 20px 40px rgba(17, 20, 22, 0.09);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-14px);
    transition:
      opacity 220ms ease,
      transform 300ms var(--ease),
      visibility 0s linear 300ms;
  }

  .site-header.is-menu-open .main-nav {
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0s;
  }

  .main-nav__link,
  .site-header .main-nav__link {
    padding: 15px 0;
    border-bottom: 1px solid rgba(17, 20, 22, 0.08);
    color: var(--graphite);
    font-size: 0.78rem;
    text-shadow: none;
  }

  .main-nav__link:last-child {
    border-bottom: 0;
  }

  .main-nav__link::after {
    right: auto;
    bottom: -1px;
    width: 34px;
  }

  .hero {
    min-height: max(100svh, 720px);
  }

  .hero__image {
    object-position: 64% center;
  }

  .hero__wash {
    background: linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.98) 0%,
      rgba(255, 255, 255, 0.91) 42%,
      rgba(255, 255, 255, 0.48) 68%,
      rgba(255, 255, 255, 0.08) 100%
    );
  }

  .hero__content {
    width: min(600px, calc(100% - var(--page-gutter) * 2));
    margin-left: var(--page-gutter);
    padding-top: 55px;
  }

  .hero__title {
    max-width: 580px;
    font-size: clamp(2.5rem, 7vw, 3.55rem);
  }

  .solutions {
    scroll-margin-top: 76px;
  }

  .about {
    scroll-margin-top: 76px;
    padding-top: 36px;
  }

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

  .about__content {
    max-width: 820px;
  }

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

  .about__media {
    width: min(100%, 820px);
    justify-self: center;
  }

  .services {
    scroll-margin-top: 76px;
    padding-top: 48px;
    padding-bottom: 52px;
  }

  .services__heading {
    margin-bottom: 24px;
  }

  .services__slider {
    padding: 0;
  }

  .services__viewport {
    border-radius: 24px;
  }

  .service-slide {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 14px;
  }

  .service-slide__media {
    min-height: clamp(250px, 54vw, 390px);
    border-radius: 19px;
  }

  .service-slide__content {
    min-height: auto;
    padding: clamp(24px, 5vw, 38px);
    border-radius: 19px;
  }

  .service-slide__number {
    margin-bottom: 20px;
  }

  .services__arrow {
    top: clamp(126px, 31vw, 210px);
    width: 44px;
    height: 44px;
    background: rgba(8, 10, 11, 0.46);
  }

  .services__arrow--prev {
    left: 14px;
  }

  .services__arrow--next {
    right: 14px;
  }

  .materials {
    scroll-margin-top: 76px;
    padding-top: 58px;
    padding-bottom: 66px;
  }

  .materials__heading {
    margin-bottom: 30px;
  }

  .materials__rail {
    --materials-gap: 16px;
  }

  .material-card {
    flex-basis: min(38vw, 250px);
    min-height: 342px;
    border-radius: 22px;
  }

  .projects {
    scroll-margin-top: 76px;
    padding-top: 34px;
    padding-bottom: 66px;
  }

  .projects__heading {
    margin-bottom: 30px;
  }

  .project-slide {
    grid-template-columns: 1fr;
    gap: 14px;
    width: min(100%, 620px);
    margin: 0 auto;
  }

  .project-slide__panel,
  .project-slide__media {
    aspect-ratio: var(--project-card-ratio);
    min-height: 0;
    border-radius: 22px;
  }

  .project-slide__panel {
    padding: clamp(24px, 5vw, 38px);
  }

  .project-slide__actions {
    margin-top: 26px;
  }

  .faq {
    scroll-margin-top: 76px;
    padding-top: 46px;
    padding-bottom: 66px;
  }

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

  .faq__panel {
    width: min(100%, 620px);
    min-height: 330px;
    justify-self: center;
    padding: clamp(28px, 5vw, 42px);
    border-radius: 22px;
  }

  .faq__rule {
    margin: 30px 0 28px;
  }

  .faq__list {
    width: min(100%, 820px);
    justify-self: center;
  }

  .faq-item {
    border-radius: 19px;
  }

  .faq-item__question {
    min-height: 68px;
  }

  .site-footer {
    padding-top: 58px;
    padding-bottom: 34px;
  }

  .site-footer__inner {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .site-footer__headline {
    max-width: 760px;
  }

  .footer-contact-card {
    width: min(100%, 380px);
  }

  .site-footer__brand {
    margin-top: 28px;
  }

  .site-footer__right {
    padding-top: 34px;
    padding-left: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-left: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --page-gutter: 22px;
  }

  .brand {
    width: 166px;
  }

  .hero {
    align-items: center;
    min-height: max(100svh, 740px);
  }

  .hero__image {
    object-position: 66% center;
  }

  .hero__wash {
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.45) 0%, transparent 28%),
      linear-gradient(
        90deg,
        rgba(255, 255, 255, 0.98) 0%,
        rgba(255, 255, 255, 0.93) 56%,
        rgba(255, 255, 255, 0.35) 100%
      );
  }

  .hero__content {
    width: calc(100% - var(--page-gutter) * 2);
    padding-top: 46px;
  }

  .hero__eyebrow {
    gap: 10px;
    margin-bottom: 19px;
    font-size: 0.65rem;
    letter-spacing: 0.16em;
  }

  .hero__eyebrow::before {
    width: 24px;
  }

  .hero__title {
    font-size: clamp(2.15rem, 10.4vw, 2.85rem);
    letter-spacing: -0.046em;
    line-height: 1.035;
    text-wrap: pretty;
  }

  .hero__actions {
    display: grid;
    gap: 11px;
    margin-top: 32px;
  }

  .button {
    width: 100%;
    min-height: 53px;
  }

  .solutions {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .solutions__heading {
    margin-bottom: 26px;
  }

  .solutions__title {
    font-size: clamp(1.9rem, 9vw, 2.35rem);
  }

  .solutions__rule {
    width: 100%;
    margin-top: 15px;
  }

  .solutions__set {
    --solutions-gap: 14px;
  }

  .solution-card {
    flex-basis: min(84vw, 340px);
    min-height: 196px;
    border-radius: 18px;
  }

  .solution-card::after {
    inset: 8px;
    border-radius: 14px;
  }

  .solution-card__content {
    right: 16px;
    bottom: 16px;
    left: 16px;
  }

  .solution-card__content h3 {
    font-size: clamp(1.08rem, 5.4vw, 1.32rem);
    max-width: none;
  }

  .solution-card__content p {
    font-size: 0.72rem;
  }

  .about {
    padding-top: 34px;
    padding-bottom: 64px;
  }

  .about__eyebrow {
    gap: 10px;
    margin-bottom: 16px;
    font-size: 0.65rem;
  }

  .about__eyebrow::before {
    width: 24px;
  }

  .about__title {
    font-size: clamp(2rem, 9.2vw, 2.58rem);
    letter-spacing: -0.048em;
  }

  .about__text {
    gap: 14px;
  }

  .about__text p {
    font-size: 0.94rem;
    line-height: 1.66;
  }

  .about__highlights {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .about-highlight {
    padding: 14px;
    border-radius: 15px;
  }

  .about__media {
    border-radius: 20px;
  }

  .about__media::before {
    inset: 10px;
    border-radius: 15px;
  }

  .services {
    padding-top: 42px;
    padding-bottom: 46px;
  }

  .services__heading {
    margin-bottom: 20px;
  }

  .services__title {
    font-size: clamp(2rem, 9vw, 2.6rem);
  }

  .services__subtitle {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .services__viewport {
    border-radius: 20px;
  }

  .service-slide {
    padding: 10px;
  }

  .service-slide__media {
    min-height: clamp(210px, 58vw, 285px);
    border-radius: 16px;
  }

  .service-slide__content {
    padding: 22px;
    border-radius: 16px;
  }

  .service-slide__number {
    margin-bottom: 16px;
    font-size: 0.66rem;
  }

  .service-slide__number::after {
    width: 34px;
  }

  .service-slide__content h3 {
    font-size: clamp(1.76rem, 8vw, 2.28rem);
  }

  .service-slide__content p {
    margin-top: 14px;
    font-size: 0.9rem;
    line-height: 1.58;
  }

  .services__arrow {
    top: clamp(96px, 33vw, 142px);
    width: 40px;
    height: 40px;
  }

  .services__arrow svg {
    width: 19px;
    height: 19px;
  }

  .services__dots {
    margin-top: 18px;
  }

  .materials {
    padding-top: 52px;
    padding-bottom: 58px;
  }

  .materials__heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .materials__title {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .materials__subtitle {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .materials__rail {
    --materials-gap: 14px;
  }

  .material-card {
    flex-basis: min(76vw, 292px);
    min-height: 382px;
    border-radius: 20px;
  }

  .material-card::after {
    inset: 8px;
    border-radius: 15px;
  }

  .material-card__symbol {
    top: 15px;
    left: 15px;
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .material-card__content {
    right: 17px;
    bottom: 17px;
    left: 17px;
  }

  .material-card__content h3 {
    font-size: clamp(1.18rem, 6vw, 1.42rem);
  }

  .material-card__content p {
    font-size: 0.76rem;
  }

  .projects {
    padding-top: 30px;
    padding-bottom: 58px;
  }

  .projects__heading {
    margin-bottom: 24px;
    text-align: left;
  }

  .projects__title {
    font-size: clamp(2rem, 9vw, 2.55rem);
  }

  .projects__subtitle {
    font-size: 0.92rem;
    line-height: 1.58;
  }

  .project-slide {
    gap: 10px;
    width: 100%;
  }

  .project-slide__panel {
    padding: 22px;
    border-radius: 18px;
  }

  .project-slide__number {
    margin-bottom: 16px;
    font-size: 0.66rem;
  }

  .project-slide__number::after {
    width: 34px;
  }

  .project-slide__panel h3 {
    font-size: clamp(1.42rem, 6.4vw, 1.9rem);
  }

  .project-slide__panel p {
    margin-top: 12px;
    font-size: 0.8rem;
    line-height: 1.48;
  }

  .project-slide__actions {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 9px;
    margin-top: 22px;
  }

  .project-button {
    min-height: 38px;
    padding: 0 10px;
    font-size: 0.68rem;
  }

  .project-button--arrow {
    width: 38px;
    min-width: 38px;
  }

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

  .faq__inner {
    gap: 18px;
  }

  .faq__panel {
    min-height: 290px;
    padding: 26px 22px;
    border-radius: 18px;
  }

  .faq__panel h2 {
    font-size: clamp(3rem, 17vw, 4.4rem);
  }

  .faq__rule {
    width: min(220px, 76%);
    margin: 26px 0 24px;
  }

  .faq__panel p {
    font-size: 1rem;
  }

  .faq__actions {
    margin-top: 24px;
  }

  .faq-button {
    min-height: 40px;
    font-size: 0.7rem;
  }

  .faq-button--primary {
    padding: 0 14px;
  }

  .faq-button--icon {
    width: 40px;
    min-width: 40px;
  }

  .faq__list {
    gap: 10px;
  }

  .faq-item {
    border-radius: 16px;
  }

  .faq-item__question {
    min-height: 62px;
    padding: 0 16px;
  }

  .faq-item__question span {
    font-size: 0.92rem;
    letter-spacing: -0.025em;
  }

  .faq-item__question svg {
    width: 21px;
    height: 21px;
  }

  .faq-item__answer p {
    padding: 0 16px 18px;
    font-size: 0.86rem;
    line-height: 1.56;
  }

  .site-footer {
    padding-top: 54px;
    padding-bottom: 30px;
  }

  .site-footer::before {
    width: 154px;
    height: 22px;
  }

  .site-footer__inner {
    gap: 28px;
  }

  .site-footer__headline {
    font-size: clamp(2rem, 9.2vw, 2.72rem);
    letter-spacing: -0.056em;
  }

  .footer-contact-card {
    margin-top: 22px;
    padding: 18px;
    border-radius: 18px;
  }

  .footer-contact-card h3 {
    font-size: 1.12rem;
  }

  .footer-contact-card p {
    font-size: 0.86rem;
    line-height: 1.5;
  }

  .footer-contact-card__actions {
    margin-top: 18px;
  }

  .footer-button {
    min-height: 40px;
    font-size: 0.7rem;
  }

  .footer-button--dark,
  .footer-button--outline,
  .footer-button--light {
    padding: 0 14px;
  }

  .footer-button--icon-dark,
  .footer-button--arrow {
    width: 40px;
    min-width: 40px;
  }

  .site-footer__brand {
    margin-top: 22px;
  }

  .site-footer__brand span {
    font-size: clamp(3.05rem, 17vw, 4.8rem);
    letter-spacing: -0.078em;
  }

  .site-footer__brand p {
    margin-top: 18px;
    font-size: 0.78rem;
  }

  .site-footer__right {
    grid-template-columns: 1fr;
    row-gap: 18px;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
  }

  .footer-info + .footer-info {
    margin-top: 24px;
  }

  .footer-info span {
    margin-bottom: 8px;
    font-size: 0.78rem;
  }

  .footer-info a,
  .footer-info p {
    font-size: clamp(1.34rem, 7vw, 1.86rem);
    letter-spacing: -0.052em;
  }

  .site-footer__actions {
    display: grid;
    grid-template-columns: 1fr 1fr auto;
    gap: 9px;
    margin-top: 0;
  }
}

@media (max-height: 680px) and (min-width: 561px) {
  .hero {
    min-height: 680px;
  }

  .hero__content {
    padding-top: 72px;
  }

  .hero__eyebrow {
    margin-bottom: 17px;
  }

  .hero__actions {
    margin-top: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .materials__carousel {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .solutions__carousel {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .solutions__carousel::-webkit-scrollbar,
  .materials__carousel::-webkit-scrollbar {
    display: none;
  }

  .solutions__track,
  .materials__rail {
    animation: none !important;
  }

  .solutions__set[aria-hidden="true"],
  .materials__set[aria-hidden="true"] {
    display: none;
  }
}
