:root {
  --navy-950: #071526;
  --navy-900: #0b1f3a;
  --navy-800: #12345b;
  --blue-600: #1661d4;
  --blue-700: #0d4ead;
  --blue-050: #eef6ff;
  --yellow-500: #ffd84d;
  --yellow-600: #f3c928;
  --orange-500: #ff6b35;
  --teal-500: #13a89e;
  --pink-100: #ffe8e2;
  --gray-025: #fbfcfd;
  --gray-050: #f7f8fa;
  --gray-100: #eef1f5;
  --gray-200: #e1e6ec;
  --gray-300: #ccd4de;
  --gray-600: #5f6b78;
  --gray-900: #17202a;
  --white: #fff;
  --green: #30b96b;
  --font: "Manrope", "Helvetica Neue", Arial, sans-serif;
  --shell: 1320px;
  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --shadow-card: 0 12px 34px rgba(11, 31, 58, 0.09);
  --shadow-floating: 0 26px 70px rgba(7, 21, 38, 0.2);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 132px;
}

html.header-compact {
  scroll-padding-top: 98px;
}

body {
  margin: 0;
  background: var(--gray-050);
  color: var(--gray-900);
  font-family: var(--font);
  font-size: 16px;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
select {
  cursor: pointer;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

p {
  text-wrap: pretty;
}

.shell {
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
}

.section {
  padding-block: 88px;
}

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

.skip-link {
  position: fixed;
  z-index: 2000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--yellow-500);
  color: var(--navy-900);
  font-weight: 800;
  transform: translateY(-160%);
}

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

:focus-visible {
  outline: 3px solid rgba(22, 97, 212, 0.44);
  outline-offset: 3px;
}

.eyebrow {
  margin-bottom: 16px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--blue-600);
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
  line-height: 1.2;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  background: var(--blue-700);
  box-shadow: 0 8px 20px rgba(22, 97, 212, 0.22);
  transform: translateY(-1px);
}

.button--nav {
  min-height: 44px;
  padding-inline: 18px;
  white-space: nowrap;
}

.button--dark {
  background: var(--navy-900);
}

.button--dark:hover {
  background: var(--navy-800);
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.24);
}

.button--ghost-dark {
  border-color: var(--navy-900);
  background: transparent;
  color: var(--navy-900);
}

.button--ghost-dark:hover {
  background: var(--navy-900);
  color: var(--white);
}

.button--yellow {
  background: var(--yellow-500);
  color: var(--navy-900);
}

.button--yellow:hover {
  background: var(--yellow-600);
  box-shadow: 0 8px 22px rgba(255, 216, 77, 0.18);
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 10px;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(4px);
}

.text-link--light {
  color: var(--white);
}

/* Header */
.site-header {
  position: sticky;
  z-index: 1000;
  top: 0;
  transition: transform 200ms ease;
  will-change: transform;
}

.site-header.site-header--compact {
  transform: translateY(-34px);
}

.utility-bar {
  min-height: 34px;
  background: var(--navy-950);
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.utility-bar__inner {
  display: flex;
  min-height: 34px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.utility-bar p,
.utility-bar ul {
  margin: 0;
}

.utility-bar p span {
  margin-right: 8px;
  color: var(--green);
}

.utility-bar ul {
  display: flex;
  gap: 24px;
  padding: 0;
  list-style: none;
}

.utility-bar li + li::before {
  margin-right: 24px;
  color: rgba(255, 255, 255, 0.25);
  content: "/";
}

.nav-bar {
  position: relative;
  border-bottom: 1px solid var(--gray-200);
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 4px 20px rgba(11, 31, 58, 0.04);
  backdrop-filter: blur(14px);
}

.nav-bar__inner {
  display: flex;
  min-height: 78px;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.brand {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  color: inherit;
  text-decoration: none;
}

.brand__logo {
  display: block;
  width: 190px;
  max-width: none;
  height: auto;
}

.brand__logo--mark {
  display: none;
  width: 42px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 1.7vw, 28px);
}

.nav-link {
  position: relative;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 750;
  white-space: nowrap;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 2px;
  left: 0;
  height: 2px;
  background: var(--orange-500);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.nav-link:hover::after,
.products-trigger[aria-expanded="true"]::after {
  transform: scaleX(1);
  transform-origin: left;
}

.products-trigger {
  gap: 7px;
  padding: 0;
}

.products-trigger svg {
  width: 11px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 180ms ease;
}

.products-trigger[aria-expanded="true"] svg {
  transform: rotate(180deg);
}

.menu-toggle {
  display: none;
}

.products-mega {
  position: absolute;
  z-index: 1200;
  top: calc(100% - 1px);
  right: 0;
  left: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  box-shadow: 0 28px 70px rgba(7, 21, 38, 0.22);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-6px);
  visibility: hidden;
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
}

.products-mega.is-open {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
  visibility: visible;
}

.products-mega__connector {
  display: grid;
  height: 8px;
  grid-template-columns: 5fr 2fr 1fr;
}

.products-mega__connector span:nth-child(1) {
  background: var(--navy-900);
}

.products-mega__connector span:nth-child(2) {
  background: var(--blue-600);
}

.products-mega__connector span:nth-child(3) {
  background: var(--yellow-500);
}

.products-mega__inner {
  display: grid;
  width: min(calc(100% - 48px), var(--shell));
  margin-inline: auto;
  gap: 16px;
  padding-block: 20px 22px;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) minmax(270px, 0.62fr);
}

.mega-group {
  min-width: 0;
  padding: 22px;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--gray-025);
}

.mega-group--industry {
  border-color: #d8e4f4;
  background: #f6f9fd;
}

.mega-group__heading {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 16px;
}

.mega-group__icon {
  display: grid;
  width: 38px;
  height: 38px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  background: var(--yellow-500);
  color: var(--navy-900);
}

.mega-group__icon svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.mega-group--industry .mega-group__icon {
  background: var(--blue-600);
  color: var(--white);
}

.mega-group__heading p {
  margin: 0 0 2px;
  color: var(--blue-600);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-group__heading h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: 17px;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.mega-group__heading small {
  display: block;
  margin-top: 4px;
  color: var(--gray-600);
  font-size: 9px;
  line-height: 1.4;
}

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

.mega-link {
  display: grid;
  min-height: 68px;
  min-width: 0;
  align-items: center;
  gap: 10px;
  padding: 9px 10px;
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--white);
  grid-template-columns: minmax(0, 1fr) auto;
  transition: border-color 160ms ease, box-shadow 160ms ease, transform 160ms ease;
}

.mega-link:hover,
.mega-link:focus-visible {
  border-color: rgba(22, 97, 212, 0.42);
  box-shadow: 0 8px 20px rgba(11, 31, 58, 0.08);
  transform: translateY(-2px);
}

.mega-link__copy {
  display: flex;
  min-width: 0;
  flex-direction: column;
}

.mega-link__copy strong {
  overflow: hidden;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  line-height: 1.28;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-link__copy small {
  margin-top: 2px;
  overflow: hidden;
  color: var(--gray-600);
  font-size: 8.5px;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.mega-link__arrow {
  color: var(--blue-600);
  font-size: 14px;
  opacity: 0;
  transform: translate(-3px, 3px);
  transition: opacity 160ms ease, transform 160ms ease;
}

.mega-link:hover .mega-link__arrow,
.mega-link:focus-visible .mega-link__arrow {
  opacity: 1;
  transform: translate(0, 0);
}

.mega-group__all {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  gap: 9px;
  margin-top: 8px;
  color: var(--navy-900);
  font-size: 10px;
  font-weight: 800;
}

.mega-group__all span {
  color: var(--blue-600);
  transition: transform 160ms ease;
}

.mega-group__all:hover span,
.mega-group__all:focus-visible span {
  transform: translateX(4px);
}

.mega-search {
  display: flex;
  min-width: 0;
  flex-direction: column;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--navy-900);
  color: var(--white);
}

.mega-search__heading {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

.mega-search__icon {
  display: grid;
  width: 34px;
  height: 34px;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow-500);
  color: var(--navy-900);
}

.mega-search__icon svg {
  width: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.mega-search__heading p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-search h2 {
  margin: 0 0 8px;
  font-size: 26px;
  letter-spacing: -0.04em;
  line-height: 1.08;
}

.mega-search__intro {
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  line-height: 1.5;
}

.mega-search__form {
  margin-bottom: 17px;
}

.mega-search__field {
  display: grid;
  min-height: 48px;
  align-items: center;
  padding: 0 12px;
  border: 2px solid transparent;
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--navy-900);
  grid-template-columns: 20px minmax(0, 1fr);
  transition: border-color 160ms ease;
}

.mega-search__field:focus-within {
  border-color: var(--yellow-500);
}

.mega-search__field svg {
  width: 18px;
  fill: none;
  stroke: var(--blue-600);
  stroke-linecap: round;
  stroke-width: 1.8;
}

.mega-search__field input {
  width: 100%;
  min-width: 0;
  height: 44px;
  padding: 0 0 0 8px;
  border: 0;
  outline: 0;
  background: transparent;
  font-size: 11px;
}

.mega-search__field input::placeholder {
  color: #788596;
}

.mega-search__submit {
  display: flex;
  width: 100%;
  min-height: 46px;
  align-items: center;
  justify-content: space-between;
  margin-top: 8px;
  padding: 0 14px;
  border: 0;
  border-radius: var(--radius-sm);
  background: var(--yellow-500);
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  transition: background 160ms ease, transform 160ms ease;
}

.mega-search__submit:hover,
.mega-search__submit:focus-visible {
  background: var(--yellow-600);
  transform: translateY(-1px);
}

.mega-search__feedback {
  min-height: 0;
  margin: 0;
  color: #ffdc72;
  font-size: 9px;
  line-height: 1.4;
}

.mega-search__feedback:not(:empty) {
  margin-top: 8px;
}

.mega-search__popular > span {
  display: block;
  margin-bottom: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.mega-search__popular > div {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.mega-search__popular button {
  min-height: 32px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 9px;
  font-weight: 700;
}

.mega-search__popular button:hover,
.mega-search__popular button:focus-visible {
  border-color: var(--yellow-500);
  background: rgba(255, 216, 77, 0.13);
}

.mega-search__help {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
}

.mega-search__help > span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 8.5px;
}

.mega-search__help a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
}

.mega-search__help a span {
  color: var(--yellow-500);
}

/* Hero carousel */
.hero {
  padding: 0;
  background: var(--gray-050);
}

.hero__shell {
  width: 100%;
}

.hero-carousel {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  background: var(--yellow-500);
  box-shadow: none;
}

.hero-slides {
  display: grid;
}

.hero-slide {
  display: grid;
  min-height: 0;
  align-items: stretch;
  grid-area: 1 / 1;
  grid-template-columns: minmax(440px, 0.72fr) minmax(0, 1.28fr);
  opacity: 0;
  pointer-events: none;
  visibility: hidden;
  transition: opacity 450ms ease, visibility 450ms ease;
}

.hero-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  visibility: visible;
}

.hero-slide--cafe {
  --hero-copy-bg: var(--yellow-500);
  background: var(--yellow-500);
}

.hero-slide--wellness {
  --hero-copy-bg: #c7f0e8;
  background: #c7f0e8;
}

.hero-slide--wedding {
  --hero-copy-bg: #ffe2de;
  background: #ffe2de;
}

.hero-slide--party {
  --hero-copy-bg: #ffd0c2;
  background: #ffd0c2;
}

.hero-slide--corporate {
  --hero-copy-bg: #e6efff;
  background: #e6efff;
}

.hero-slide--campaign {
  --hero-copy-bg: #fff0b5;
  background: #fff0b5;
}

.hero-slide__copy {
  position: relative;
  z-index: 2;
  display: flex;
  min-width: 0;
  flex-direction: column;
  justify-content: center;
  padding: 28px 42px 66px clamp(38px, 4.2vw, 78px);
  background: var(--hero-copy-bg);
}

@media (min-width: 721px) {
  .hero-slide__copy {
    width: calc(100% + 44px);
    margin-right: -44px;
    justify-content: flex-start;
    padding-top: clamp(52px, 7vw, 96px);
    padding-right: 78px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 44px) 100%, 0 100%);
  }

  .hero-slide__copy::after {
    position: absolute;
    top: 24px;
    right: 21px;
    width: 4px;
    height: calc(100% - 48px);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.34);
    content: "";
    opacity: 0.7;
    pointer-events: none;
    transform: rotate(5deg);
  }

  .hero-slide__copy .hero-actions {
    display: grid;
    width: min(100%, 400px);
    margin-top: auto;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-slide__copy .hero-actions .button {
    width: 100%;
    justify-content: center;
    padding-inline: 14px;
    font-size: 13px;
    white-space: nowrap;
  }

  .hero-slide__copy .hero-checks {
    display: none;
  }

  .hero-slide__visual {
    min-height: 100%;
    align-self: stretch;
    aspect-ratio: auto;
  }

  .hero-slide__visual img {
    position: absolute;
    inset: 0;
  }
}

@media (min-width: 1321px) {
  .hero-slide__copy {
    width: calc(100% + 56px);
    margin-right: -56px;
    padding-right: 98px;
    clip-path: polygon(0 0, 100% 0, calc(100% - 56px) 100%, 0 100%);
  }

  .hero-slide__copy::after {
    right: 27px;
  }
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 14px;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.hero-kicker span {
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  letter-spacing: 0.05em;
}

.hero-slide h1,
.hero-slide h2 {
  max-width: 620px;
  margin-bottom: 12px;
  color: var(--navy-900);
  font-size: clamp(42px, 3.6vw, 58px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 570px;
  margin-bottom: 18px;
  color: rgba(11, 31, 58, 0.8);
  font-size: 16px;
  line-height: 1.5;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.hero-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0 0;
  padding: 0;
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  list-style: none;
}

.hero-checks li::before {
  display: inline-grid;
  width: 17px;
  height: 17px;
  margin-right: 6px;
  place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--blue-600);
  content: "✓";
  font-size: 10px;
}

.hero-slide__visual {
  position: relative;
  min-height: 0;
  margin: 0;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  background: var(--navy-900);
}

.hero-slide--cafe .hero-slide__visual {
  background: #0752a0;
}

.hero-slide--wellness .hero-slide__visual {
  background: #13a8a5;
}

.hero-slide--wedding .hero-slide__visual {
  background: #f6aaa7;
}

.hero-slide--party .hero-slide__visual {
  background: #ff6242;
}

.hero-slide--corporate .hero-slide__visual {
  background: #081f3d;
}

.hero-slide--campaign .hero-slide__visual {
  background: #0d57bd;
}

.hero-slide__visual::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(90deg, rgba(11, 31, 58, 0.07), transparent 32%);
  content: "";
  pointer-events: none;
}

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

.hero-slide__visual figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  display: grid;
  gap: 2px;
  padding: 10px 13px 9px 14px;
  border: 1px solid rgba(11, 31, 58, 0.16);
  border-left: 4px solid var(--yellow-500);
  border-radius: 8px;
  background: rgba(255, 252, 242, 0.94);
  color: var(--navy-900);
  box-shadow: 0 8px 22px rgba(11, 31, 58, 0.13);
}

.hero-slide__visual figcaption strong {
  font-size: 12px;
  line-height: 1.2;
}

.hero-slide__visual figcaption span {
  color: rgba(11, 31, 58, 0.62);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.carousel-controls {
  position: relative;
  z-index: 4;
  display: grid;
  min-height: 64px;
  align-items: center;
  padding: 0 22px 0 58px;
  background: var(--navy-900);
  color: var(--white);
  grid-template-columns: 100px 1fr auto;
}

.carousel-status {
  display: flex;
  align-items: baseline;
  gap: 6px;
  color: rgba(255, 255, 255, 0.5);
  font-size: 11px;
  font-weight: 800;
}

.carousel-status strong {
  color: var(--yellow-500);
  font-size: 17px;
}

.carousel-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
}

.carousel-dots button {
  position: relative;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
}

.carousel-dots button::before {
  position: absolute;
  top: 20px;
  right: 5px;
  left: 5px;
  height: 4px;
  border-radius: 3px;
  background: rgba(255, 255, 255, 0.28);
  content: "";
}

.carousel-dots button.is-active::before {
  background: var(--yellow-500);
}

.carousel-arrows {
  display: flex;
  gap: 7px;
}

.carousel-arrows button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  transition: background 150ms ease, color 150ms ease;
}

.carousel-arrows button:hover {
  border-color: var(--yellow-500);
  background: var(--yellow-500);
  color: var(--navy-900);
}

.proof-bar {
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
}

.proof-bar__inner {
  display: grid;
  min-height: 84px;
  grid-template-columns: repeat(5, 1fr);
}

.proof-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  padding: 8px 16px;
  border-right: 1px solid var(--gray-200);
}

.proof-item:first-child {
  border-left: 1px solid var(--gray-200);
}

.proof-item__icon {
  width: 52px;
  height: 52px;
  flex: 0 0 auto;
  border-radius: 13px;
  object-fit: cover;
  box-shadow: 0 7px 18px rgba(11, 31, 58, 0.1);
}

.proof-item__copy {
  display: grid;
  min-width: 0;
  gap: 4px;
}

.proof-item__copy strong {
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.15;
}

.proof-item__copy span {
  color: var(--gray-600);
  font-size: 10px;
  font-weight: 600;
  line-height: 1.35;
}

/* Design studio entry */
.studio-entry {
  position: relative;
  overflow: hidden;
  padding-block: 88px;
  background: var(--navy-900);
  color: var(--white);
}

.studio-entry::before {
  position: absolute;
  top: -210px;
  left: -140px;
  width: 540px;
  height: 540px;
  content: "";
  border: 80px solid rgba(22, 97, 212, 0.2);
  border-radius: 50%;
}

.studio-entry::after {
  position: absolute;
  right: -90px;
  bottom: -150px;
  width: 390px;
  height: 320px;
  content: "";
  background: var(--yellow-500);
  opacity: 0.08;
  transform: rotate(-12deg);
}

.studio-entry__shell {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: center;
  gap: clamp(44px, 7vw, 98px);
  grid-template-columns: minmax(340px, 0.78fr) minmax(560px, 1.22fr);
}

.studio-entry__copy h2 {
  margin-bottom: 24px;
  font-size: clamp(42px, 5.4vw, 72px);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.studio-entry__copy > p:not(.eyebrow) {
  max-width: 570px;
  margin-bottom: 27px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.75;
}

.studio-entry__button {
  min-height: 56px;
  color: var(--navy-900);
}

.studio-entry__button:hover {
  color: var(--white);
}

.studio-entry__trust {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 19px;
  margin: 27px 0 0;
  padding: 22px 0 0;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  list-style: none;
}

.studio-entry__trust li {
  display: flex;
  align-items: center;
  gap: 7px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 10px;
  font-weight: 700;
}

.studio-entry__trust span {
  color: var(--yellow-500);
  font-size: 8px;
  font-weight: 800;
}

.studio-entry__visual {
  position: relative;
  display: block;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 15px;
  background: #eef1f5;
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.34);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.studio-entry__visual:hover {
  box-shadow: 0 34px 84px rgba(0, 0, 0, 0.42);
  transform: translateY(-4px);
}

.studio-story {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 3 / 2;
  background: #eef1f5;
}

.studio-story text {
  font-family: var(--font);
}

.studio-story__ui-title,
.studio-story__panel-label {
  fill: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.11em;
}

.studio-story__saved {
  fill: #16845b;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.studio-story__tool-text {
  fill: var(--navy-900);
  font-size: 17px;
  font-weight: 800;
}

.studio-story__safe-label,
.studio-story__field-label,
.studio-story__layer-meta {
  fill: var(--blue-600);
  font-size: 8px;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.studio-story__layer-mark {
  fill: var(--white);
  font-size: 12px;
  font-weight: 800;
}

.studio-story__layer-name,
.studio-story__field-value {
  fill: var(--navy-900);
  font-size: 12px;
  font-weight: 800;
}

.studio-story__generate-text {
  fill: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.studio-story__logo {
  opacity: 0;
  transform: translate(671px, 90px);
  transform-box: view-box;
  transform-origin: 0 0;
  animation: studio-logo-story 12s cubic-bezier(0.66, 0, 0.26, 1) infinite;
}

.studio-story__logo-scale {
  transform: scale(0.34);
  transform-box: view-box;
  transform-origin: 71px 43px;
  animation: studio-logo-scale 12s cubic-bezier(0.66, 0, 0.26, 1) infinite;
}

.studio-story__logo-text {
  fill: var(--white);
  font-size: 25px;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.studio-story__cursor {
  transform: translate(750px, 141px) scale(0.92);
  transform-box: view-box;
  transform-origin: 0 0;
  animation: studio-cursor-story 12s cubic-bezier(0.55, 0, 0.3, 1) infinite;
}

.studio-story__editor {
  animation: studio-editor-story 12s linear infinite;
}

.studio-story__result {
  opacity: 0;
  animation: studio-result-story 12s linear infinite;
}

.studio-story__result-image {
  transform: scale(1.02);
  transform-box: fill-box;
  transform-origin: center;
  animation: studio-result-image-story 12s ease-out infinite;
}

.studio-story__resize-handle {
  transform-box: fill-box;
  transform-origin: center;
  animation: studio-resize-handle 12s ease-in-out infinite;
}

.studio-story__loading,
.studio-story__click-ripple {
  opacity: 0;
}

.studio-story__generate-pulse {
  transform-box: fill-box;
  transform-origin: center;
  animation: studio-generate-pulse 12s ease-in-out infinite;
}

.studio-story__click-ripple {
  transform-box: fill-box;
  transform-origin: center;
  animation: studio-click-ripple 12s ease-out infinite;
}

.studio-story__loading {
  animation: studio-loading-story 12s linear infinite;
}

.studio-story__loading-title {
  fill: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.03em;
}

.studio-story__loading-copy {
  fill: var(--gray-600);
  font-size: 10px;
  font-weight: 600;
}

.studio-story__loading path {
  transform-box: fill-box;
  transform-origin: center;
  animation: studio-spinner 700ms linear infinite;
}

@keyframes studio-logo-story {
  0%, 6% { opacity: 0; transform: translate(671px, 90px); }
  7% { opacity: 1; transform: translate(671px, 90px); }
  27%, 76% { opacity: 1; transform: translate(309px, 292px); }
  80%, 100% { opacity: 0; transform: translate(309px, 292px); }
}

@keyframes studio-logo-scale {
  0%, 41% { transform: scale(0.34); }
  42% { transform: scale(0.38); }
  58%, 100% { transform: scale(0.94); }
}

@keyframes studio-cursor-story {
  0%, 6% { opacity: 1; transform: translate(750px, 141px) scale(0.92); }
  27% { opacity: 1; transform: translate(380px, 335px) scale(0.92); }
  38% { opacity: 1; transform: translate(407px, 351px) scale(0.92); }
  42% { opacity: 1; transform: translate(407px, 351px) scale(0.82); }
  58%, 64% { opacity: 1; transform: translate(447px, 375px) scale(0.92); }
  72% { opacity: 1; transform: translate(795px, 514px) scale(0.92); }
  75% { opacity: 1; transform: translate(800px, 522px) scale(0.82); }
  78% { opacity: 1; transform: translate(800px, 522px) scale(0.92); }
  80%, 100% { opacity: 0; transform: translate(800px, 522px) scale(0.92); }
}

@keyframes studio-editor-story {
  0%, 78% { opacity: 1; }
  82%, 96% { opacity: 0; }
  100% { opacity: 1; }
}

@keyframes studio-result-story {
  0%, 78% { opacity: 0; }
  82%, 96% { opacity: 1; }
  100% { opacity: 0; }
}

@keyframes studio-result-image-story {
  0%, 78% { transform: scale(1.055); }
  96%, 100% { transform: scale(1.01); }
}

@keyframes studio-resize-handle {
  0%, 33%, 47%, 100% { transform: scale(1); }
  38%, 43% { transform: scale(1.45); }
}

@keyframes studio-generate-pulse {
  0%, 69%, 79%, 100% { transform: scale(1); }
  73% { transform: scale(1.045); }
  75% { transform: scale(0.98); }
}

@keyframes studio-click-ripple {
  0%, 72%, 100% { opacity: 0; transform: scale(0.45); }
  75% { opacity: 0.9; transform: scale(0.7); }
  79% { opacity: 0; transform: scale(2.4); }
}

@keyframes studio-loading-story {
  0%, 77%, 83%, 100% { opacity: 0; }
  79%, 81% { opacity: 1; }
}

@keyframes studio-spinner {
  to { transform: rotate(360deg); }
}

.studio-entry__arrow {
  display: flex;
  min-height: 46px;
  align-items: center;
  justify-content: flex-end;
  padding: 0 16px;
  color: var(--navy-900);
  background: var(--yellow-500);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.studio-entry__arrow i {
  margin-right: auto;
  color: rgba(11, 31, 58, 0.64);
  font-size: 8px;
  font-style: normal;
}

/* Shared section headings */
.section-heading h2 {
  margin-bottom: 0;
  color: var(--navy-900);
  font-size: clamp(38px, 4.2vw, 56px);
  font-weight: 800;
  letter-spacing: -0.05em;
  line-height: 1.02;
}

.section-heading--split {
  display: grid;
  align-items: end;
  gap: 48px;
  margin-bottom: 36px;
  grid-template-columns: minmax(0, 1.25fr) minmax(320px, 0.75fr);
}

.section-heading--split > p,
.section-heading__aside p {
  margin-bottom: 0;
  color: var(--gray-600);
  font-size: 16px;
  line-height: 1.75;
}

.section-heading--row {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 48px;
  margin-bottom: 36px;
}

.section-heading__aside {
  max-width: 410px;
}

.section-heading__aside .text-link {
  margin-top: 14px;
}

/* Browse */
.browse {
  background: var(--white);
}

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

.browse-card {
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
}

.browse-card--scene {
  background: var(--blue-050);
}

.browse-card--industry {
  background: #fff7d8;
}

.browse-card__header {
  min-height: 120px;
  padding: 24px 28px;
  color: var(--white);
}

.browse-card--scene .browse-card__header {
  background: var(--blue-600);
}

.browse-card--industry .browse-card__header {
  background: var(--navy-900);
}

.browse-card__header span {
  display: block;
  margin-bottom: 11px;
  color: var(--yellow-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.browse-card__header strong {
  display: block;
  max-width: 510px;
  font-size: clamp(25px, 2.4vw, 34px);
  line-height: 1.12;
}

.browse-card ul {
  margin: 0;
  padding: 10px 28px 2px;
  list-style: none;
}

.browse-card li {
  border-bottom: 1px solid rgba(11, 31, 58, 0.12);
}

.browse-card li a {
  display: grid;
  min-height: 57px;
  align-items: center;
  gap: 12px;
  grid-template-columns: minmax(160px, 0.8fr) minmax(180px, 1fr) auto;
}

.browse-card li span {
  color: var(--navy-900);
  font-size: 14px;
  font-weight: 800;
}

.browse-card li i {
  color: var(--gray-600);
  font-size: 11px;
  font-style: normal;
}

.browse-card li b {
  color: var(--blue-600);
  font-weight: 800;
  transition: transform 150ms ease;
}

.browse-card li a:hover b {
  transform: translateX(4px);
}

.browse-card__all {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  margin: 0 28px;
  color: var(--navy-900);
  font-size: 13px;
  font-weight: 800;
}

/* Products */
.recommended {
  padding-block: 68px;
  background: var(--gray-050);
}

.recommended .section-heading--row {
  margin-bottom: 34px;
}

.recommended .section-heading h2 {
  font-size: clamp(38px, 4vw, 54px);
}

.product-search-status {
  display: flex;
  min-height: 54px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: -24px 0 28px;
  padding: 12px 14px 12px 18px;
  border: 1px solid rgba(22, 97, 212, 0.25);
  border-left: 5px solid var(--blue-600);
  border-radius: var(--radius-sm);
  background: var(--blue-050);
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.product-search-status[hidden] {
  display: none;
}

.product-search-status button {
  min-height: 34px;
  flex: 0 0 auto;
  padding: 7px 10px;
  border: 0;
  border-radius: 6px;
  background: var(--white);
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
}

.product-scroll {
  min-width: 0;
}

.product-scroll__viewport {
  min-width: 0;
  padding: 5px 2px 18px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: none;
}

.product-scroll__viewport::-webkit-scrollbar {
  display: none;
}

.product-scroll__viewport:focus-visible {
  outline: 3px solid rgba(22, 97, 212, 0.28);
  outline-offset: 4px;
}

.product-grid {
  display: grid;
  gap: 16px;
  grid-auto-flow: row;
  grid-template-columns: repeat(8, calc((100% - 80px) / 6));
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.product-grid__page {
  display: contents;
}

.product-card {
  display: flex;
  min-width: 0;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: 0 5px 18px rgba(11, 31, 58, 0.035);
  scroll-snap-align: start;
  scroll-snap-stop: normal;
  transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.product-card:hover {
  border-color: var(--gray-300);
  box-shadow: var(--shadow-card);
  transform: translateY(-4px);
}

.product-card.is-search-match {
  border-color: var(--blue-600);
  box-shadow: 0 14px 34px rgba(22, 97, 212, 0.18);
}

.product-card.is-search-muted {
  opacity: 0.34;
  transform: scale(0.985);
}

.product-card__visual {
  position: relative;
  display: grid;
  aspect-ratio: 3 / 2;
  margin: 0;
  place-items: center;
  overflow: hidden;
  background: var(--blue-050);
}

.product-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 300ms ease;
}

.product-card:hover .product-photo img {
  transform: scale(1.025);
}

.product-card__body {
  display: flex;
  min-height: 112px;
  flex: 1;
  flex-direction: column;
  padding: 13px 14px 12px;
}

.product-card__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  margin-bottom: 7px;
}

.product-card__tags span {
  padding: 3px 5px;
  border-radius: 999px;
  background: var(--gray-100);
  color: var(--gray-600);
  font-size: 7px;
  font-weight: 800;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.product-card__tags span:last-child {
  background: #fff4c5;
  color: #7b5b00;
}

.product-card h3 {
  margin-bottom: 2px;
  color: var(--navy-900);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: -0.025em;
  line-height: 1.28;
}

.product-card__title-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 8px;
}

.product-card__title-row h3 {
  min-width: 0;
  margin: 0;
}

.product-card__details {
  min-height: 28px;
  flex: 0 0 auto;
  padding: 5px 7px;
  border: 1px solid var(--gray-300);
  border-radius: 7px;
  background: var(--white);
  color: var(--navy-900);
  font-size: 8px;
  font-weight: 800;
  white-space: nowrap;
}

.product-card__details:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.product-card__button {
  width: 100%;
  min-height: 44px;
  justify-content: space-between;
  margin-top: auto;
  padding: 9px 12px;
  border-radius: 8px;
  font-size: 11px;
}

.product-scroll__controls {
  display: grid;
  align-items: center;
  gap: 15px;
  margin-top: 5px;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
}

.product-scroll__controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  color: var(--navy-900);
  background: var(--white);
  font-size: 18px;
  font-weight: 800;
  transition: border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.product-scroll__controls button:hover:not(:disabled) {
  border-color: var(--blue-600);
  color: var(--blue-600);
  transform: translateY(-2px);
}

.product-scroll__controls button:disabled {
  cursor: default;
  opacity: 0.35;
}

.product-scroll__range-wrap {
  position: relative;
  display: flex;
  min-width: 0;
  height: 44px;
  align-items: center;
}

.product-scroll__range-wrap::before {
  position: absolute;
  right: 0;
  left: 0;
  height: 6px;
  border-radius: 99px;
  background: var(--gray-200);
  content: "";
}

.product-scroll__range-wrap input {
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0;
  appearance: none;
  background: transparent;
  cursor: grab;
}

.product-scroll__range-wrap input:active {
  cursor: grabbing;
}

.product-scroll__range-wrap input::-webkit-slider-runnable-track {
  height: 6px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--blue-600) 0 var(--product-scroll-progress, 0%), var(--gray-200) var(--product-scroll-progress, 0%) 100%);
}

.product-scroll__range-wrap input::-webkit-slider-thumb {
  width: 64px;
  height: 18px;
  margin-top: -6px;
  appearance: none;
  border: 3px solid var(--white);
  border-radius: 99px;
  background: var(--navy-900);
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.25);
}

.product-scroll__range-wrap input::-moz-range-track {
  height: 6px;
  border: 0;
  border-radius: 99px;
  background: var(--gray-200);
}

.product-scroll__range-wrap input::-moz-range-progress {
  height: 6px;
  border-radius: 99px;
  background: var(--blue-600);
}

.product-scroll__range-wrap input::-moz-range-thumb {
  width: 58px;
  height: 14px;
  border: 3px solid var(--white);
  border-radius: 99px;
  background: var(--navy-900);
  box-shadow: 0 4px 12px rgba(11, 31, 58, 0.25);
}

/* Process */
.how {
  background: var(--navy-900);
  color: var(--white);
}

.how__grid {
  display: grid;
  align-items: start;
  gap: 64px;
  grid-template-columns: minmax(320px, 0.72fr) minmax(500px, 1.28fr);
}

.how__intro {
  position: sticky;
  top: 154px;
}

.how__intro h2 {
  margin-bottom: 22px;
  font-size: clamp(40px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.how__intro > p:not(.eyebrow) {
  max-width: 520px;
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  line-height: 1.75;
}

.process-list {
  display: grid;
  gap: 0 24px;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  list-style: none;
}

.process-list li {
  display: grid;
  gap: 18px;
  min-height: 154px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  grid-template-columns: 44px minmax(0, 1fr);
}

.process-list > li > span {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: var(--yellow-500);
  font-size: 11px;
  font-weight: 800;
}

.process-list h3 {
  margin-bottom: 7px;
  font-size: 18px;
  line-height: 1.3;
}

.process-list p {
  max-width: 610px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 13px;
  line-height: 1.7;
}

/* Customisation */
.customisation {
  background: var(--white);
}

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

.tier-card {
  position: relative;
  min-height: 342px;
  padding: 26px;
  overflow: hidden;
  border-radius: var(--radius-lg);
}

.tier-card--one {
  background: var(--blue-050);
}

.tier-card--two {
  background: #fff4c5;
}

.tier-card--three {
  background: var(--pink-100);
}

.tier-card__level {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin-bottom: 24px;
  padding: 6px 9px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.tier-card h3 {
  margin-bottom: 13px;
  color: var(--navy-900);
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.tier-card > p:not(.tier-card__level) {
  max-width: 360px;
  color: var(--gray-600);
  font-size: 14px;
  line-height: 1.7;
}

.tier-card ul {
  display: grid;
  gap: 8px;
  margin: 20px 0 0;
  padding: 18px 0 0;
  border-top: 1px solid rgba(11, 31, 58, 0.12);
  list-style: none;
}

.tier-card li {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.tier-card li::before {
  margin-right: 9px;
  color: var(--blue-600);
  content: "+";
  font-weight: 800;
}

/* Yiwu */
.yiwu {
  overflow: hidden;
  background: var(--navy-900);
  color: var(--white);
}

.yiwu__grid {
  display: grid;
  align-items: center;
  gap: 48px;
  grid-template-columns: minmax(560px, 1.18fr) minmax(390px, 0.82fr);
}

.yiwu__visual {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.yiwu-gallery {
  position: relative;
  aspect-ratio: 3 / 2;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: var(--navy-950);
  box-shadow: 0 26px 70px rgba(7, 21, 38, 0.3);
}

.yiwu-gallery__slides,
.yiwu-gallery__slide {
  position: absolute;
  inset: 0;
  margin: 0;
}

.yiwu-gallery__slide {
  opacity: 0;
  pointer-events: none;
  transform: scale(1.025);
  transition: opacity 420ms ease, transform 900ms ease;
}

.yiwu-gallery__slide.is-active {
  z-index: 1;
  opacity: 1;
  pointer-events: auto;
  transform: scale(1);
}

.yiwu-gallery__slide::after {
  position: absolute;
  inset: 36% 0 0;
  background: linear-gradient(180deg, transparent, rgba(7, 21, 38, 0.84));
  content: "";
}

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

.yiwu-gallery__slide figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 22px;
  left: 22px;
  display: grid;
  gap: 5px;
  padding-right: 132px;
}

.yiwu-gallery__slide figcaption span {
  color: var(--yellow-500);
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.yiwu-gallery__slide figcaption strong {
  max-width: 500px;
  font-size: clamp(18px, 2vw, 27px);
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.yiwu-gallery__controls {
  position: absolute;
  z-index: 4;
  right: 16px;
  top: 16px;
  display: flex;
  align-items: center;
  gap: 9px;
}

.yiwu-gallery__dots {
  display: flex;
  gap: 6px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(7, 21, 38, 0.76);
  backdrop-filter: blur(8px);
}

.yiwu-gallery__dots button {
  position: relative;
  width: 20px;
  height: 20px;
  border: 0;
  background: transparent;
}

.yiwu-gallery__dots button::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.52);
  content: "";
  transform: translate(-50%, -50%);
  transition: width 180ms ease, background 180ms ease;
}

.yiwu-gallery__dots button.is-active::after {
  width: 14px;
  border-radius: 999px;
  background: var(--yellow-500);
}

.yiwu-gallery__arrows {
  display: flex;
  gap: 6px;
}

.yiwu-gallery__arrows button {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 10px;
  background: rgba(7, 21, 38, 0.76);
  color: var(--white);
  font-size: 16px;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.yiwu-gallery__arrows button:hover {
  border-color: var(--yellow-500);
  color: var(--yellow-500);
}

.yiwu-network {
  display: grid;
  min-height: 60px;
  align-items: center;
  gap: 12px;
  padding: 12px 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.68);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr) auto minmax(0, 1fr);
}

.yiwu-network strong {
  color: var(--yellow-500);
  text-align: center;
}

.yiwu-network span:last-child {
  text-align: right;
}

.yiwu-network i {
  color: rgba(255, 255, 255, 0.38);
  font-style: normal;
}

.yiwu__copy h2 {
  margin-bottom: 22px;
  font-size: clamp(39px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.yiwu__lead {
  margin-bottom: 20px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  line-height: 1.75;
}

.yiwu-points {
  display: grid;
  gap: 10px;
}

.yiwu-points__label {
  margin: 0 0 10px;
  color: var(--yellow-500);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.yiwu-points article {
  display: grid;
  gap: 15px;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
  grid-template-columns: 72px 1fr;
}

.yiwu-points article > span {
  display: grid;
  width: 68px;
  min-height: 30px;
  padding-inline: 8px;
  place-items: center;
  align-self: start;
  border-radius: 999px;
  background: var(--yellow-500);
  color: var(--navy-900);
  font-size: 8px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  font-weight: 800;
}

.yiwu-points h3 {
  margin-bottom: 4px;
  font-size: 16px;
}

.yiwu-points p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 12px;
  line-height: 1.65;
}

/* Brief */
.brief {
  border-top: 1px solid #ead78f;
  background: #fff7d8;
  color: var(--navy-900);
}

.brief__shell {
  display: grid;
  align-items: start;
  gap: 52px;
  grid-template-columns: minmax(340px, 0.74fr) minmax(560px, 1.26fr);
}

.brief__intro {
  position: sticky;
  top: 154px;
}

.brief__intro h2 {
  margin-bottom: 22px;
  font-size: clamp(39px, 4vw, 52px);
  font-weight: 800;
  letter-spacing: -0.052em;
  line-height: 1.03;
}

.brief__intro > p:not(.eyebrow) {
  color: var(--gray-600);
  font-size: 15px;
  line-height: 1.75;
}

.brief__studio-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  gap: 9px;
  color: var(--blue-600);
  font-size: 12px;
  font-weight: 800;
}

.brief__studio-link:hover span {
  transform: translateX(3px);
}

.brief__intro ul {
  display: grid;
  gap: 12px;
  margin: 28px 0 0;
  padding: 24px 0 0;
  border-top: 1px solid rgba(11, 31, 58, 0.16);
  list-style: none;
}

.brief__intro li {
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
}

.brief__intro li span {
  margin-right: 9px;
  color: var(--blue-600);
}

.brief .eyebrow--light {
  color: var(--blue-600);
}

.brief-form {
  padding: 30px;
  border: 1px solid rgba(11, 31, 58, 0.1);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 20px 54px rgba(66, 48, 0, 0.12);
}

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

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

.form-grid label > span {
  color: var(--navy-900);
  font-size: 11px;
  font-weight: 800;
}

.form-grid label > span small {
  color: var(--gray-600);
  font-size: 9px;
  font-weight: 600;
}

.form-field--wide {
  grid-column: 1 / -1;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  min-height: 50px;
  border: 1px solid var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--gray-025);
  color: var(--navy-900);
  font-size: 13px;
}

.form-grid input,
.form-grid select {
  padding: 0 13px;
}

.form-grid textarea {
  min-height: 112px;
  padding: 13px;
  resize: vertical;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  border-color: var(--blue-600);
  outline: 3px solid rgba(22, 97, 212, 0.14);
}

.upload-field {
  position: relative;
  min-height: 96px;
  padding: 18px;
  border: 1px dashed var(--gray-300);
  border-radius: var(--radius-sm);
  background: var(--blue-050);
}

.upload-field input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.upload-field i {
  display: flex;
  min-height: 42px;
  align-items: center;
  justify-content: center;
  border-radius: 7px;
  background: var(--white);
  color: var(--blue-600);
  font-size: 11px;
  font-style: normal;
  font-weight: 800;
}

.upload-field:focus-within {
  outline: 3px solid rgba(22, 97, 212, 0.24);
  outline-offset: 2px;
}

.button--submit {
  width: 100%;
  margin-top: 22px;
  background: var(--blue-600);
  color: var(--white);
}

.button--submit:hover {
  background: var(--blue-700);
}

.button--submit span {
  font-size: 18px;
}

.form-note {
  margin: 11px 0 0;
  color: var(--gray-600);
  font-size: 9px;
  text-align: center;
}

.brief-summary {
  grid-column: 2;
  padding: 30px;
  border: 1px solid rgba(11, 31, 58, 0.12);
  border-radius: var(--radius-lg);
  background: var(--white);
  color: var(--navy-900);
  box-shadow: var(--shadow-card);
}

.brief-summary h3 {
  font-size: 25px;
}

.brief-summary dl {
  display: grid;
  gap: 10px;
  margin: 22px 0;
}

.brief-summary dl div {
  display: grid;
  gap: 18px;
  grid-template-columns: 90px 1fr;
}

.brief-summary dt {
  color: var(--blue-600);
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
}

.brief-summary dd {
  margin: 0;
  font-size: 13px;
}

/* Product procurement details */
body.product-detail-open {
  overflow: hidden;
}

.product-detail-layer[hidden] {
  display: none;
}

.product-detail-layer {
  position: fixed;
  z-index: 1900;
  inset: 0;
}

.product-detail-layer__backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: rgba(7, 21, 38, 0.58);
  opacity: 0;
  transition: opacity 220ms ease;
}

.product-detail {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(460px, 100%);
  padding: 28px;
  overflow-y: auto;
  background: var(--white);
  box-shadow: -28px 0 72px rgba(7, 21, 38, 0.28);
  transform: translateX(100%);
  transition: transform 240ms cubic-bezier(0.22, 1, 0.36, 1);
}

.product-detail-layer.is-open .product-detail-layer__backdrop {
  opacity: 1;
}

.product-detail-layer.is-open .product-detail {
  transform: translateX(0);
}

.product-detail__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 22px;
}

.product-detail__header h2 {
  margin: 0;
  color: var(--navy-900);
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.product-detail__close {
  display: grid;
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  place-items: center;
  border: 1px solid var(--gray-300);
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  font-size: 25px;
  line-height: 1;
}

.product-detail__close:hover {
  border-color: var(--blue-600);
  color: var(--blue-600);
}

.product-detail__visual {
  aspect-ratio: 3 / 2;
  margin: 0 0 24px;
  overflow: hidden;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  background: var(--gray-050);
}

.product-detail__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-detail__facts {
  display: grid;
  margin: 0;
  border-top: 1px solid var(--gray-200);
}

.product-detail__facts div {
  display: grid;
  gap: 14px;
  padding: 15px 0;
  border-bottom: 1px solid var(--gray-200);
  grid-template-columns: 118px minmax(0, 1fr);
}

.product-detail__facts dt {
  color: var(--gray-600);
  font-size: 10px;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.product-detail__facts dd {
  margin: 0;
  color: var(--navy-900);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.55;
}

.product-detail__note {
  margin: 18px 0;
  color: var(--gray-600);
  font-size: 11px;
  line-height: 1.65;
}

.product-detail__cta {
  width: 100%;
  justify-content: space-between;
  background: var(--yellow-500);
  color: var(--navy-900);
}

/* Footer */
.site-footer {
  background: var(--navy-950);
  color: var(--white);
}

.site-footer__top {
  display: grid;
  min-height: 180px;
  align-items: center;
  gap: 48px;
  grid-template-columns: auto 1fr auto;
}

.site-footer__top > p {
  max-width: 560px;
  margin: 0;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
}

.site-footer__bottom {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.43);
  font-size: 9px;
}

@media (min-width: 1321px) {
  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(44px, 3.2vw, 48px);
  }

  .hero-lead {
    font-size: 15px;
    line-height: 1.45;
  }
}

@media (max-width: 1180px) {
  .nav-bar__inner {
    gap: 20px;
  }

  .site-nav {
    gap: 13px;
  }

  .nav-link {
    font-size: 13px;
  }

  .brand__logo--full {
    width: 166px;
  }

  .products-mega__inner {
    width: min(calc(100% - 32px), var(--shell));
    gap: 10px;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr) 246px;
  }

  .mega-group {
    padding: 16px;
  }

  .mega-links {
    grid-template-columns: 1fr;
  }

  .mega-link {
    gap: 7px;
    padding-inline: 8px;
    grid-template-columns: minmax(0, 1fr) auto;
  }

  .mega-link__copy strong,
  .mega-link__copy small {
    white-space: normal;
  }

  .mega-search {
    padding: 18px;
  }

  .mega-search h2 {
    font-size: 22px;
  }

  .hero-slide__copy {
    padding: 58px 76px 60px 42px;
  }

  .product-grid {
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 42px) / 4);
    grid-template-columns: none;
    grid-template-rows: none;
  }

  .yiwu__grid {
    gap: 48px;
    grid-template-columns: minmax(440px, 1fr) minmax(360px, 0.85fr);
  }
}

@media (max-width: 1000px) {
  html {
    scroll-padding-top: 76px;
  }

  html.header-compact {
    scroll-padding-top: 76px;
  }

  .site-header.site-header--compact {
    transform: none;
  }

  .utility-bar {
    display: none;
  }

  .nav-bar__inner {
    min-height: 70px;
  }

  .menu-toggle {
    display: grid;
    width: 48px;
    height: 48px;
    place-content: center;
    gap: 6px;
    border: 0;
    border-radius: 8px;
    background: var(--gray-100);
  }

  .menu-toggle > span:not(.sr-only) {
    width: 22px;
    height: 2px;
    background: var(--navy-900);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] > span:nth-child(2) {
    transform: translateY(-4px) rotate(-45deg);
  }

  .site-nav {
    position: absolute;
    z-index: 1100;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: none;
    height: calc(100dvh - 70px);
    align-items: stretch;
    overflow-y: auto;
    padding: 20px 24px 40px;
    background: var(--white);
    flex-direction: column;
  }

  .site-nav.site-nav--open {
    display: flex;
  }

  .site-nav > .nav-link,
  .products-trigger {
    width: 100%;
    min-height: 55px;
    justify-content: space-between;
    border-bottom: 1px solid var(--gray-200);
    font-size: 15px;
  }

  .nav-link::after {
    display: none;
  }

  .site-nav .button--nav {
    width: 100%;
    margin-top: 12px;
  }

  .products-mega {
    position: static;
    max-height: 0;
    overflow: hidden;
    border: 0;
    box-shadow: none;
    opacity: 1;
    transform: none;
    transition: max-height 260ms ease;
    visibility: visible;
  }

  .products-mega.is-open {
    max-height: 2800px;
  }

  .products-mega__connector {
    display: none;
  }

  .products-mega__inner {
    display: flex;
    width: 100%;
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .mega-group,
  .mega-group--industry {
    padding: 24px 0;
    border: 0;
    border-bottom: 1px solid var(--gray-200);
    border-radius: 0;
    background: transparent;
  }

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

  .mega-link {
    border-color: var(--gray-200);
    background: var(--gray-025);
  }

  .mega-search {
    min-height: 470px;
    margin: 24px 0 8px;
  }

  .hero {
    padding-top: 0;
  }

  .hero-slide {
    min-height: 0;
    grid-template-columns: minmax(300px, 0.88fr) minmax(0, 1.12fr);
  }

  .hero-slide__copy {
    min-height: 0;
    padding: 42px 66px 50px 30px;
  }

  .hero-slide__visual {
    min-height: 100%;
    aspect-ratio: auto;
  }

  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(32px, 4.4vw, 42px);
  }

  .hero-lead {
    font-size: 14px;
    line-height: 1.45;
  }

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

  .proof-bar__inner {
    grid-template-columns: repeat(6, 1fr);
  }

  .proof-item {
    grid-column: span 2;
  }

  .proof-item:nth-child(3) {
    border-right: 0;
  }

  .proof-item:nth-child(n + 4) {
    grid-column: span 3;
    border-top: 1px solid var(--gray-200);
  }

  .proof-item:nth-child(4) {
    border-left: 1px solid var(--gray-200);
  }

  .studio-entry {
    padding-block: 76px;
  }

  .studio-entry__shell {
    grid-template-columns: 1fr;
  }

  .studio-entry__copy {
    max-width: 740px;
  }

  .studio-entry__visual {
    width: 100%;
  }

  .browse-grid,
  .tier-grid {
    grid-template-columns: 1fr;
  }

  .tier-card {
    min-height: 330px;
  }

  .product-grid {
    grid-auto-columns: calc((100% - 28px) / 3);
    grid-template-columns: none;
  }

  .how__grid,
  .yiwu__grid,
  .brief__shell {
    gap: 54px;
    grid-template-columns: 1fr;
  }

  .how__intro,
  .brief__intro {
    position: static;
  }

  .yiwu__copy {
    order: -1;
  }

  .brief-summary {
    grid-column: 1;
  }

  .process-list {
    display: block;
  }

  .process-list li {
    min-height: 0;
  }
}

@media (max-width: 720px) {
  .shell {
    width: min(calc(100% - 32px), var(--shell));
  }

  .section {
    padding-block: 64px;
  }

  .brand__logo--full {
    width: 150px;
  }

  .site-nav {
    padding-inline: 16px;
  }

  .mega-group__heading {
    margin-bottom: 14px;
  }

  .mega-group__heading h2 {
    font-size: 16px;
  }

  .mega-links {
    grid-template-columns: 1fr;
  }

  .mega-link {
    min-height: 64px;
    padding: 8px;
  }

  .mega-link__arrow {
    opacity: 1;
    transform: none;
  }

  .mega-search {
    min-height: 0;
    padding: 20px;
  }

  .hero__shell {
    width: 100%;
  }

  .hero {
    padding-top: 0;
  }

  .hero-carousel {
    border-radius: 0;
  }

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

  .hero-slide__copy {
    min-height: 580px;
    justify-content: flex-start;
    padding: 44px 20px 88px;
  }

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

  .hero-slide h1,
  .hero-slide h2 {
    font-size: clamp(38px, 11.5vw, 53px);
    line-height: 1.01;
  }

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

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

  .hero-actions .button {
    width: 100%;
  }

  .hero-checks {
    gap: 9px 13px;
    font-size: 10px;
  }

  .hero-slide__visual {
    min-height: 0;
    aspect-ratio: 3 / 2;
  }

  .hero-slide__visual img {
    position: static;
  }

  .hero-slide__visual figcaption {
    right: 14px;
    bottom: 14px;
  }

  .carousel-controls {
    min-height: 60px;
    padding-inline: 8px;
    grid-template-columns: 1fr auto;
  }

  .carousel-status {
    display: none;
  }

  .carousel-dots {
    justify-content: flex-start;
    gap: 0;
  }

  .carousel-arrows button {
    width: 44px;
    height: 44px;
  }

  .proof-bar__inner {
    width: 100%;
    min-height: 0;
    padding: 6px 16px;
    grid-auto-flow: column;
    grid-auto-columns: minmax(218px, 78vw);
    grid-template-columns: none;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .proof-bar__inner::-webkit-scrollbar {
    display: none;
  }

  .proof-item,
  .proof-item:nth-child(n + 4) {
    grid-column: auto;
    min-height: 72px;
    gap: 11px;
    padding: 8px 12px;
    border: 1px solid var(--gray-200);
    border-radius: 18px;
    background: var(--white);
    scroll-snap-align: start;
  }

  .proof-item__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
  }

  .proof-item__copy strong {
    font-size: 13px;
  }

  .proof-item__copy span {
    font-size: 9px;
  }

  .studio-entry {
    padding-block: 62px;
  }

  .studio-entry__shell {
    gap: 34px;
  }

  .studio-entry__copy h2 {
    margin-bottom: 18px;
    font-size: clamp(38px, 12vw, 52px);
  }

  .studio-entry__copy > p:not(.eyebrow) {
    font-size: 14px;
  }

  .studio-entry__button {
    width: 100%;
    padding-inline: 12px;
    font-size: 12px;
  }

  .studio-entry__trust {
    display: grid;
    gap: 9px;
  }

  .studio-entry__arrow i {
    display: none;
  }

  .section-heading--split,
  .section-heading--row {
    display: grid;
    gap: 25px;
    margin-bottom: 34px;
    grid-template-columns: 1fr;
  }

  .section-heading h2 {
    font-size: clamp(35px, 11vw, 48px);
  }

  .section-heading--split > p,
  .section-heading__aside p {
    font-size: 14px;
  }

  .browse-card__header {
    min-height: 112px;
    padding: 22px;
  }

  .browse-card ul {
    padding-inline: 20px;
  }

  .browse-card li a {
    min-height: 58px;
    grid-template-columns: 1fr auto;
  }

  .browse-card li i {
    display: none;
  }

  .browse-card__all {
    margin-inline: 20px;
  }

  .product-grid {
    gap: 12px;
    grid-auto-columns: min(78vw, 310px);
    grid-template-columns: none;
  }

  .product-card__visual {
    aspect-ratio: 3 / 2;
  }

  .product-card__body {
    padding: 14px;
  }

  .product-card h3 {
    font-size: 14px;
  }

  .product-card__tags span:nth-child(2) {
    display: none;
  }

  .product-scroll__controls {
    gap: 10px;
    grid-template-columns: 40px minmax(0, 1fr) 40px;
  }

  .product-scroll__controls button {
    width: 40px;
    height: 40px;
  }

  .how__grid,
  .yiwu__grid,
  .brief__shell {
    gap: 38px;
  }

  .how__intro h2,
  .yiwu__copy h2,
  .brief__intro h2 {
    font-size: clamp(37px, 11vw, 49px);
  }

  .process-list li {
    gap: 16px;
    padding: 24px 0;
    grid-template-columns: 44px 1fr;
  }

  .process-list > li > span {
    width: 40px;
    height: 40px;
  }

  .tier-card {
    min-height: 330px;
    padding: 24px;
  }

  .tier-card__level {
    margin-bottom: 20px;
  }

  .yiwu-gallery__slide figcaption {
    right: 16px;
    bottom: 16px;
    left: 16px;
    padding-right: 0;
  }

  .yiwu-gallery__slide figcaption strong {
    padding-right: 64px;
    font-size: 17px;
  }

  .yiwu-gallery__controls {
    right: 10px;
    top: 10px;
  }

  .yiwu-gallery__dots {
    padding: 6px 8px;
  }

  .yiwu-gallery__arrows button {
    width: 36px;
    height: 36px;
  }

  .yiwu-network {
    gap: 7px;
    padding-inline: 12px;
    font-size: 8px;
  }

  .brief-form {
    padding: 20px;
  }

  .product-detail {
    top: auto;
    width: 100%;
    max-height: 88dvh;
    padding: 22px 18px 28px;
    border-radius: 22px 22px 0 0;
    transform: translateY(100%);
  }

  .product-detail-layer.is-open .product-detail {
    transform: translateY(0);
  }

  .product-detail__facts div {
    gap: 10px;
    grid-template-columns: 104px minmax(0, 1fr);
  }

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

  .form-field--wide {
    grid-column: 1;
  }

  .site-footer__top {
    justify-items: start;
    padding-block: 48px;
    gap: 28px;
    grid-template-columns: 1fr;
  }

  .site-footer__bottom {
    align-items: flex-start;
    padding-block: 22px;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .studio-story__editor {
    opacity: 0 !important;
  }

  .studio-story__result {
    opacity: 1 !important;
  }

  .studio-story__result-image {
    transform: scale(1.01) !important;
  }

  .studio-story__cursor,
  .studio-story__loading,
  .studio-story__click-ripple {
    display: none;
  }
}
