:root {
  --black: #000;
  --ink: #050505;
  --panel: #0b0b0c;
  --panel-2: #111113;
  --white: #fff;
  --text: rgba(255, 255, 255, 0.92);
  --muted: rgba(255, 255, 255, 0.68);
  --quiet: rgba(255, 255, 255, 0.44);
  --line: rgba(255, 255, 255, 0.12);
  --line-soft: rgba(255, 255, 255, 0.07);
  --accent: #f5f5f5;
  --heat-red: #ff2f1f;
  --heat-orange: #ff8a1f;
  --heat-light: #fff3e7;
  --heat-gradient: linear-gradient(135deg, var(--heat-red) 0%, var(--heat-orange) 54%, var(--heat-light) 100%);
  --ease-out: cubic-bezier(0.075, 0.82, 0.165, 1);
  --ease-smooth: cubic-bezier(0.22, 1, 0.36, 1);
  --page-gutter: 32px;
  --page-gutter-mobile: 22px;
  --page-max: 1320px;
  --nav-max: 1320px;
  --footer-max: 1620px;
  --section-stack-gap: clamp(72px, 7vw, 108px);
}

@font-face {
  font-family: "Oswald";
  src: url("./fonts/Oswald-VF.ttf") format("truetype");
  font-weight: 200 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Tilda Sans";
  src: url("./fonts/TildaSans-VF.woff2") format("woff2-variations"),
    url("./fonts/TildaSans-VF.woff2") format("woff2");
  font-weight: 300 900;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  background: var(--black);
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  min-height: 100vh;
  margin: 0;
  overflow-x: hidden;
  background: var(--black);
  color: var(--text);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  font-optical-sizing: auto;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

body.overlay-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

img {
  max-width: 100%;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  right: 0;
  left: 0;
  width: 100%;
  padding: 14px clamp(12px, 2.8vw, 48px) 11px;
  background: rgba(0, 0, 0, 0.52);
  backdrop-filter: blur(22px) saturate(1.12);
  -webkit-backdrop-filter: blur(22px) saturate(1.12);
}

.navbar {
  display: grid;
  grid-template-columns: minmax(92px, 1fr) auto minmax(126px, 1fr);
  align-items: center;
  width: 100%;
  max-width: var(--nav-max);
  height: 50px;
  margin: 0 auto;
}

.brand {
  display: flex;
  align-items: center;
  justify-self: start;
  width: clamp(92px, 7vw, 118px);
  min-width: 92px;
  text-decoration: none;
}

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

.nav-center {
  display: flex;
  align-items: center;
  justify-self: center;
}

.nav-group {
  display: flex;
  align-items: center;
  gap: clamp(12px, 1.45vw, 24px);
  height: 30px;
}

.nav-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 30px;
  padding: 4px 2px;
  color: var(--muted);
  font-size: 12.5px;
  font-weight: 500;
  line-height: 1;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  white-space: nowrap;
  transition: color 220ms ease;
}

.nav-link:hover,
.nav-link:focus-visible,
.nav-link.is-current,
.nav-link[aria-current="page"] {
  color: var(--white);
}

.project-button:focus-visible,
.brand:focus-visible,
.nav-link:focus-visible,
.primary-action:focus-visible,
.secondary-action:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

.project-button,
.primary-action,
.secondary-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  white-space: nowrap;
}

.project-button {
  justify-self: end;
  min-width: 186px;
  height: 44px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.86);
  border-radius: 15px;
  background: var(--white);
  color: #050505;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 650;
  line-height: 1;
  letter-spacing: 0;
  text-transform: none;
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.12),
    0 10px 24px rgba(255, 255, 255, 0.05);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease;
}

.project-button:hover,
.project-button:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: #111113;
  color: var(--white);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 28px rgba(0, 0, 0, 0.22);
}

.mobile-links {
  display: none;
}

main {
  background: var(--black);
}

[id] {
  scroll-margin-top: 104px;
}

.hero-section {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(390px, 0.78fr);
  gap: clamp(54px, 7.2vw, 118px);
  align-items: center;
  width: min(100% - var(--page-gutter), var(--page-max));
  height: 100svh;
  margin: 0 auto clamp(96px, 10vw, 168px);
  padding: clamp(100px, 11vh, 124px) 0 clamp(54px, 8vh, 74px);
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-self: center;
  max-width: 720px;
  transform: translateY(clamp(8px, 1.6vh, 20px));
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

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

h1,
h2,
h3,
.eyebrow {
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
}

h1 {
  max-width: 620px;
  margin-bottom: clamp(56px, 7vh, 78px);
  color: var(--white);
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.hero-lead {
  max-width: 590px;
  margin-bottom: clamp(46px, 5.8vh, 68px);
  color: var(--muted);
  font-size: clamp(18px, 1.65vw, 24px);
  font-weight: 350;
  line-height: 1.28;
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.hero-actions {
  --hero-action-width: clamp(218px, 15vw, 244px);
  gap: 14px;
  flex-wrap: nowrap;
  align-items: stretch;
}

.primary-action,
.secondary-action {
  height: 46px;
  padding: 0 24px;
  border-radius: 16px;
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  transition:
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 240ms ease;
}

.primary-action {
  border: 1px solid rgba(255, 255, 255, 0.9);
  background: var(--accent);
  color: #050505;
}

.primary-action:hover,
.primary-action:focus-visible {
  transform: translateY(-1px);
  background: var(--white);
}

.hero-actions .primary-action {
  position: relative;
  flex: 0 0 var(--hero-action-width);
  width: var(--hero-action-width);
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 35 / 8;
  padding: 0 clamp(16px, 1.7vw, 22px);
  overflow: visible;
  isolation: isolate;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: var(--white);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1;
  white-space: nowrap;
  text-transform: none;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.12);
  box-shadow: none;
  transition:
    background 260ms ease,
    color 260ms ease,
    transform 260ms ease,
    filter 260ms ease;
}

.hero-actions .primary-action::before,
.hero-actions .primary-action::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-actions .primary-action::before {
  inset: -47% -16.7%;
  z-index: -1;
  background: url("./image/button.png") center / 100% 100% no-repeat;
  transition: opacity 240ms ease;
}

.hero-actions .primary-action::after {
  content: none;
}

.hero-actions .primary-action:hover,
.hero-actions .primary-action:focus-visible {
  transform: translateY(-1px);
  color: #050505;
  background: var(--white);
  filter: none;
}

.hero-actions .primary-action:hover::before,
.hero-actions .primary-action:focus-visible::before {
  opacity: 0;
}

.hero-actions .primary-action.primary-action--omni {
  overflow: hidden;
  border: 1px solid rgba(255, 219, 92, 0.62);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 246, 150, 0.58), transparent 30%),
    linear-gradient(135deg, rgba(255, 229, 65, 0.98) 0%, rgba(255, 174, 14, 0.98) 48%, rgba(209, 104, 0, 0.98) 100%);
  color: #120900;
  text-shadow: 0 1px 0 rgba(255, 247, 198, 0.42);
  filter: saturate(1.08);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.32),
    0 18px 34px rgba(119, 61, 0, 0.24),
    0 0 34px rgba(255, 181, 24, 0.22);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.hero-actions .primary-action.primary-action--omni::before,
.hero-actions .primary-action.primary-action--omni::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.hero-actions .primary-action.primary-action--omni::before {
  inset: 0;
  z-index: -1;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px);
  background-size: 18px 18px;
  transition:
    opacity 260ms ease,
    background-size 260ms ease;
}

.hero-actions .primary-action.primary-action--omni::after {
  right: -32px;
  bottom: -34px;
  z-index: -1;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 247, 186, 0.28);
  border-radius: 50%;
  opacity: 0.7;
  transition:
    opacity 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.hero-actions .primary-action.primary-action--omni:hover,
.hero-actions .primary-action.primary-action--omni:focus-visible {
  transform: none;
  border-color: rgba(255, 241, 134, 0.76);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 250, 180, 0.72), transparent 32%),
    linear-gradient(135deg, rgba(255, 238, 83, 1) 0%, rgba(255, 188, 24, 1) 48%, rgba(235, 126, 0, 1) 100%);
  color: #0c0600;
  filter: saturate(1.16) brightness(1.04);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.4),
    0 18px 34px rgba(119, 61, 0, 0.24),
    0 0 46px rgba(255, 195, 34, 0.34);
}

.hero-actions .primary-action.primary-action--omni:hover::before,
.hero-actions .primary-action.primary-action--omni:focus-visible::before {
  opacity: 0.34;
  background-size: 16px 16px;
}

.hero-actions .primary-action.primary-action--omni:hover::after,
.hero-actions .primary-action.primary-action--omni:focus-visible::after {
  opacity: 0.92;
  border-color: rgba(255, 248, 184, 0.4);
  box-shadow: 0 0 0 18px rgba(255, 187, 20, 0.08);
  transform: scale(1.06);
}

.hero-actions .secondary-action {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 clamp(202px, 14vw, 228px);
  width: clamp(202px, 14vw, 228px);
  min-width: 0;
  height: auto;
  min-height: 0;
  aspect-ratio: 35 / 7.1;
  padding: 0 clamp(16px, 1.6vw, 20px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 20px;
  background: rgba(5, 5, 7, 0.96);
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(15px, 1.05vw, 18px);
  font-weight: 550;
  letter-spacing: -0.02em;
  text-align: center;
  white-space: nowrap;
  text-shadow: none;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.05),
    0 0 0 1px rgba(255, 255, 255, 0.04);
  transition:
    background 240ms ease,
    border-color 240ms ease,
    color 240ms ease,
    transform 240ms ease,
    box-shadow 240ms ease;
}

.hero-actions .secondary-action::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: calc(20px - 1px);
  border: 1px solid rgba(255, 255, 255, 0.06);
  pointer-events: none;
}

.hero-actions .secondary-action:hover,
.hero-actions .secondary-action:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(255, 255, 255, 0.28);
  background: rgba(12, 12, 15, 1);
  color: var(--white);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(0, 0, 0, 0.18);
}

@media (max-width: 980px) {
  .hero-actions {
    flex-wrap: wrap;
  }

  .hero-actions .primary-action,
  .hero-actions .secondary-action {
    flex-basis: min(100%, 260px);
    width: min(100%, 260px);
  }
}

.primary-action.light {
  background: var(--white);
  color: #050505;
}

.secondary-action {
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: var(--muted);
}

.secondary-action:hover,
.secondary-action:focus-visible {
  border-color: rgba(255, 255, 255, 0.3);
  color: var(--white);
}

.hero-visual {
  position: relative;
  display: grid;
  align-self: center;
  place-items: center;
  height: 100%;
  min-height: 0;
}

.signal-core {
  position: relative;
  z-index: 1;
  justify-self: center;
  width: clamp(450px, 44vw, 720px);
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 50%;
  background: #000;
  transition: transform 260ms var(--ease-out);
}

.signal-core--video {
  --signal-video-shift: clamp(-82px, -4.4vw, -34px);
  width: clamp(520px, 46vw, 760px);
  aspect-ratio: 16 / 9;
  border-radius: 0;
  background: transparent;
  transform: translateX(var(--signal-video-shift));
  -webkit-mask-image: radial-gradient(ellipse 56% 74% at 52% 50%, #000 0 64%, rgba(0, 0, 0, 0.86) 72%, transparent 92%);
  mask-image: radial-gradient(ellipse 56% 74% at 52% 50%, #000 0 64%, rgba(0, 0, 0, 0.86) 72%, transparent 92%);
}

.signal-core:hover,
.signal-core:focus-within {
  transform: scale(1.055);
}

.signal-core--video:hover,
.signal-core--video:focus-within {
  transform: translateX(var(--signal-video-shift)) scale(1.025);
}

.signal-core :is(img, video) {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.signal-core img {
  transform: scale(1.14);
  transform-origin: center;
}

.signal-core video {
  filter: contrast(1.7) brightness(1.08) saturate(1.04);
  transform: none;
  transform-origin: center;
}

.directions-section {
  position: relative;
  margin-top: 0;
}

.home-projects-section {
  --case-card-height: 490px;
  --case-cover-height: 146px;
  width: min(100% - var(--page-gutter), var(--page-max));
  display: grid;
  gap: clamp(28px, 3.6vw, 40px);
  margin: var(--section-stack-gap) auto 0;
}

.home-projects-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.home-projects-copy {
  display: grid;
  gap: 14px;
  max-width: 620px;
}

.home-projects-copy .eyebrow {
  margin-bottom: 0;
}

.home-projects-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.home-projects-controls {
  display: flex;
  align-items: center;
  gap: 12px;
  flex: 0 0 auto;
}

.home-projects-arrow {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 999px;
  background: #09090a;
  color: rgba(255, 255, 255, 0.84);
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    opacity 220ms ease;
}

.home-projects-arrow svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.home-projects-arrow:hover,
.home-projects-arrow:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: #111114;
  color: var(--white);
  transform: translateY(-1px);
}

.home-projects-arrow:disabled {
  opacity: 0.34;
  cursor: default;
  transform: none;
}

.home-projects-arrow:disabled:hover,
.home-projects-arrow:disabled:focus-visible {
  border-color: rgba(255, 255, 255, 0.12);
  background: #09090a;
  color: rgba(255, 255, 255, 0.84);
}

.home-projects-track {
  display: flex;
  align-items: flex-end;
  gap: 26px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  margin: 0 -2px -12px;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  scrollbar-width: none;
  overscroll-behavior-x: contain;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.home-projects-track::-webkit-scrollbar {
  display: none;
}

.home-projects-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.home-projects-track:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.56);
  outline-offset: 5px;
  border-radius: 14px;
}

.home-projects-track .portfolio-card {
  flex: 0 0 clamp(296px, 25vw, 336px);
  height: var(--case-card-height);
}

.home-projects-more {
  display: flex;
  flex: 0 0 148px;
  align-self: center;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-height: 156px;
  padding: 16px 14px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    #f4f4f4;
  color: #050505;
  text-decoration: none;
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.home-projects-more:hover,
.home-projects-more:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  background: #050505;
  color: #fff;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.36);
  transform: translateY(-2px);
}

.home-projects-more:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.62);
  outline-offset: 5px;
}

.home-projects-more-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 9px;
  color: #050505;
  transition:
    transform 240ms var(--ease-out),
    border-color 220ms ease,
    color 220ms ease,
    background 220ms ease;
}

.home-projects-more-icon svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.home-projects-more strong {
  max-width: none;
  color: #050505;
  font-size: clamp(18px, 1.35vw, 22px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  text-align: center;
  transition: color 220ms ease;
}

.home-projects-more:hover .home-projects-more-icon,
.home-projects-more:focus-visible .home-projects-more-icon {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.04);
  color: #fff;
  transform: translate(3px, -3px);
}

.home-projects-more:hover strong,
.home-projects-more:focus-visible strong {
  color: #fff;
}

.directions-head {
  max-width: 780px;
  margin-bottom: 32px;
}

.directions-head .eyebrow {
  margin-bottom: 14px;
}

.directions-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.directions-head .heat-text {
  display: inline-block;
}

.directions-mosaic {
  display: grid;
  grid-template-rows: 132px 132px 124px 88px;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.direction-card {
  --direction-a: #ff2f1f;
  --direction-b: #ff7a1a;
  --direction-c: #311009;
  --direction-glow: rgba(255, 122, 31, 0.2);
  --direction-pad-x: 18px;
  --direction-pad-top: 18px;
  --direction-pad-bottom: 16px;
  position: relative;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 0;
  padding: var(--direction-pad-top) var(--direction-pad-x) var(--direction-pad-bottom);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background: #0b0b0c;
  color: var(--white);
  text-decoration: none;
  box-shadow: none;
  transition:
    border-color 260ms ease,
    box-shadow 260ms ease,
    background 260ms ease,
    transform 260ms var(--ease-out);
}

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

.direction-card::before {
  background:
    radial-gradient(circle at 82% 12%, rgba(255, 255, 255, 0.3), transparent 24%),
    linear-gradient(135deg, var(--direction-a) 0%, var(--direction-b) 54%, var(--direction-c) 100%);
  opacity: 0;
  transition: opacity 260ms ease;
}

.direction-card::after {
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 18px 18px, 18px 18px;
  transition: opacity 260ms ease;
}

.direction-card:nth-child(1) {
  grid-column: 1 / span 4;
  grid-row: 1 / span 2;
}

.direction-card:nth-child(2) {
  grid-column: 5 / span 4;
  grid-row: 1;
}

.direction-card:nth-child(3) {
  grid-column: 9 / span 4;
  grid-row: 1;
}

.direction-card:nth-child(4) {
  grid-column: 5 / span 3;
  grid-row: 2;
}

.direction-card:nth-child(5) {
  grid-column: 8 / span 5;
  grid-row: 2;
}

.direction-card:nth-child(6) {
  grid-column: 1 / span 5;
  grid-row: 3 / span 2;
}

.direction-card:nth-child(7) {
  grid-column: 6 / span 4;
  grid-row: 3 / span 2;
}

.direction-card:nth-child(8) {
  grid-column: 10 / span 3;
  grid-row: 3;
}

.direction-card:nth-child(9) {
  grid-column: 10 / span 3;
  grid-row: 4;
}

.direction-theme-coral {
  --direction-a: #ff3b1f;
  --direction-b: #ff9b24;
  --direction-c: #351006;
  --direction-glow: rgba(255, 90, 36, 0.24);
}

.direction-theme-blue {
  --direction-a: #2d7dff;
  --direction-b: #0047da;
  --direction-c: #001a54;
  --direction-glow: rgba(7, 93, 255, 0.25);
}

.direction-theme-amber {
  --direction-a: #ff4b5c;
  --direction-b: #b3122d;
  --direction-c: #2b040b;
  --direction-glow: rgba(255, 75, 92, 0.22);
}

.direction-theme-green {
  --direction-a: #10d68b;
  --direction-b: #008b5b;
  --direction-c: #03251b;
  --direction-glow: rgba(16, 214, 139, 0.22);
}

.direction-theme-violet {
  --direction-a: #b000ff;
  --direction-b: #7200ff;
  --direction-c: #21002f;
  --direction-glow: rgba(176, 0, 255, 0.26);
}

.direction-theme-cyan {
  --direction-a: #767b86;
  --direction-b: #565c68;
  --direction-c: #232831;
  --direction-glow: rgba(124, 132, 148, 0.22);
}

.direction-theme-rose {
  --direction-a: #ff3d8f;
  --direction-b: #b81462;
  --direction-c: #260617;
  --direction-glow: rgba(255, 61, 143, 0.22);
}

.direction-theme-lime {
  --direction-a: #d7ff32;
  --direction-b: #5f7c00;
  --direction-c: #151d05;
  --direction-glow: rgba(215, 255, 50, 0.18);
}

.direction-theme-all {
  --direction-a: #f6f6f6;
  --direction-b: #ff6b12;
  --direction-c: #050505;
  --direction-glow: rgba(255, 255, 255, 0.16);
}

.direction-all-card {
  background: #f4f4f4;
  color: #050505;
  box-shadow:
    0 12px 42px rgba(255, 255, 255, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.8);
}

.direction-all-card::before {
  display: none;
}

.direction-all-card::after {
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.1) 1px, transparent 1px),
    radial-gradient(circle at 18% 82%, rgba(0, 0, 0, 0.12), transparent 22%);
}

.direction-all-card .direction-number,
.direction-all-card .direction-content strong {
  color: #050505;
}

.direction-all-card .direction-content span {
  color: rgba(0, 0, 0, 0.66);
}

.direction-all-card .direction-icon {
  border-color: rgba(0, 0, 0, 0.12);
  background: transparent;
  color: #050505;
}

.direction-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  min-width: 0;
}

.direction-number {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
  font-weight: 650;
  letter-spacing: 0.08em;
  line-height: 1;
}

.direction-icon {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: transparent;
  color: rgba(255, 255, 255, 0.82);
  transition:
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms var(--ease-out);
}

.direction-icon svg {
  display: block;
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.direction-content {
  position: absolute;
  left: var(--direction-pad-x);
  right: var(--direction-pad-x);
  bottom: var(--direction-pad-bottom);
  z-index: 1;
  display: grid;
  gap: 8px;
  min-width: 0;
}

.direction-content strong {
  max-width: 620px;
  color: var(--white);
  font-size: clamp(22px, 1.7vw, 30px);
  font-weight: 550;
  letter-spacing: 0;
  line-height: 1.02;
}

.direction-content span {
  display: block;
  max-width: 590px;
  max-height: 0;
  overflow: hidden;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 350;
  line-height: 1.32;
  opacity: 0;
  transform: translateY(16px);
  transition:
    max-height 280ms var(--ease-smooth),
    opacity 220ms ease,
    transform 280ms var(--ease-smooth),
    color 260ms ease;
}

.direction-arrow-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 2.8;
}

.direction-card:hover,
.direction-card:focus-visible {
  z-index: 2;
  border-color: rgba(255, 255, 255, 0.25);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.22),
    0 18px 56px var(--direction-glow),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transform: scale(1.012);
}

.direction-card:hover::before,
.direction-card:focus-visible::before {
  opacity: 1;
}

.direction-card:hover::after,
.direction-card:focus-visible::after {
  opacity: 0.62;
}

.direction-card:hover .direction-content span,
.direction-card:focus-visible .direction-content span {
  max-height: 92px;
  color: rgba(255, 255, 255, 0.82);
  opacity: 1;
  transform: translateY(0);
}

.direction-all-card:hover,
.direction-all-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.48);
  box-shadow:
    0 20px 62px rgba(255, 255, 255, 0.13),
    inset 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.direction-all-card:hover::after,
.direction-all-card:focus-visible::after {
  opacity: 0.2;
}

.direction-all-card:hover .direction-content span,
.direction-all-card:focus-visible .direction-content span {
  color: rgba(0, 0, 0, 0.68);
}

.direction-all-card:hover .direction-number,
.direction-all-card:focus-visible .direction-number {
  color: rgba(0, 0, 0, 0.6);
}

.direction-card:hover .direction-number,
.direction-card:focus-visible .direction-number {
  color: rgba(255, 255, 255, 0.74);
}

.direction-card:hover .direction-icon,
.direction-card:focus-visible .direction-icon {
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
  color: #fff;
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.08);
  transform: translateY(-2px);
}

.direction-all-card:hover .direction-icon,
.direction-all-card:focus-visible .direction-icon {
  border-color: rgba(0, 0, 0, 0.18);
  background: transparent;
  color: #050505;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.06);
}

.direction-card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 5px;
}

.intro-band,
.directions-section,
.info-strip,
.section-block,
.feature-band,
.method-section,
.insights-section,
.blog-page,
.products-page,
.portfolio-page,
.compliance-section,
.cta-section {
  width: min(100% - var(--page-gutter), var(--page-max));
  margin: 0 auto;
}

.intro-band {
  position: relative;
  display: grid;
  gap: 0;
  padding: clamp(44px, 6vw, 72px) clamp(28px, 5vw, 68px) clamp(28px, 4vw, 44px);
  margin-top: 64px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 32px;
  background:
    radial-gradient(circle at 50% 8%, rgba(255, 138, 31, 0.12), transparent 22%),
    radial-gradient(circle at 15% 44%, rgba(255, 47, 31, 0.08), transparent 24%),
    radial-gradient(circle at 84% 50%, rgba(255, 243, 231, 0.06), transparent 25%),
    radial-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    #080809;
  background-size: auto, auto, auto, 16px 16px, auto;
}

.decision-head {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 6vw, 90px);
  align-items: end;
  max-width: none;
  margin: 0;
  text-align: left;
}

.decision-head .eyebrow {
  grid-column: 1 / -1;
  margin-bottom: 16px;
}

.decision-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 6vw, 88px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.decision-head p:not(.eyebrow) {
  max-width: 430px;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 19px;
  font-weight: 350;
  line-height: 1.34;
}

.decision-cards {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  align-items: stretch;
  margin-top: clamp(38px, 5vw, 58px);
}

.decision-card {
  position: relative;
  min-height: 390px;
  padding: clamp(30px, 4vw, 46px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 13, 0.86);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition:
    border-color 260ms ease,
    background 260ms ease,
    transform 320ms var(--ease-smooth);
}

.decision-card::after {
  content: "";
  position: absolute;
  right: -86px;
  bottom: -104px;
  width: 260px;
  height: 260px;
  border: 1px solid rgba(255, 122, 31, 0.13);
  border-radius: 50%;
}

.decision-card:hover,
.decision-card:focus-within {
  border-color: rgba(255, 122, 31, 0.28);
  background:
    linear-gradient(180deg, rgba(255, 122, 31, 0.07), rgba(255, 255, 255, 0.018)),
    rgba(12, 12, 13, 0.9);
  transform: translateY(-3px);
}

.decision-number {
  position: absolute;
  top: 28px;
  right: 30px;
  color: rgba(255, 255, 255, 0.24);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.decision-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 42px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.decision-icon {
  position: relative;
  display: inline-flex;
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 47, 31, 0.22), rgba(255, 138, 31, 0.08)),
    rgba(255, 255, 255, 0.04);
}

.decision-icon::before,
.decision-icon::after {
  content: "";
  position: absolute;
}

.decision-icon::before {
  inset: 12px;
  border: 1px solid rgba(255, 243, 231, 0.85);
  border-radius: 50%;
}

.decision-icon::after {
  right: 10px;
  bottom: 10px;
  width: 8px;
  height: 1px;
  background: rgba(255, 243, 231, 0.85);
  transform: rotate(-45deg);
}

.decision-card:nth-child(2) .decision-icon::before {
  inset: 11px 12px 12px;
  border-radius: 50% 50% 45% 45%;
}

.decision-card:nth-child(2) .decision-icon::after {
  right: 11px;
  bottom: 10px;
  width: 16px;
  height: 8px;
  border: 1px solid rgba(255, 243, 231, 0.85);
  border-top: 0;
  border-radius: 0 0 9px 9px;
  background: transparent;
  transform: none;
}

.decision-card h3 {
  max-width: 610px;
  margin: 0 0 22px;
  color: var(--white);
  font-size: clamp(34px, 3.9vw, 56px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.decision-card p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.44;
}

.decision-result {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: #ffb16a;
  font-size: 14px;
  font-weight: 550;
  letter-spacing: 0.02em;
}

.decision-conclusion {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  width: fit-content;
  max-width: 100%;
  margin: 18px auto 0;
  padding: 12px 18px 12px 12px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  text-align: center;
}

.decision-conclusion span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--heat-gradient);
  color: #050505;
  font-size: 24px;
  font-weight: 650;
  box-shadow: 0 0 34px rgba(255, 122, 31, 0.32);
}

.decision-conclusion p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
}

.info-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 64px);
  margin-top: clamp(86px, 10vw, 128px);
}

.info-strip article {
  min-width: 0;
}

.info-strip h2 {
  margin: 0 0 28px;
  padding-bottom: 26px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 2.2vw, 28px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
}

.info-strip p {
  margin: 0;
  color: rgba(255, 255, 255, 0.56);
  font-size: clamp(19px, 1.8vw, 23px);
  font-weight: 350;
  line-height: 1.32;
}

.info-strip strong {
  color: var(--white);
  font-weight: 650;
}

.intro-item span,
.timeline span {
  display: block;
  margin-bottom: 24px;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.product-index {
  display: block;
  color: rgba(255, 255, 255, 0.4);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.intro-item h2,
.section-heading h2,
.feature-copy h2,
.method-section h2,
.cta-copy h2 {
  color: var(--white);
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.intro-item h2 {
  max-width: 430px;
  margin-bottom: 18px;
}

.intro-item p,
.product-card p,
.feature-copy p,
.case-stack p,
.timeline p,
.section-heading p,
.cta-copy p,
.site-footer p {
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.section-block,
.method-section,
.insights-section {
  padding-top: var(--section-stack-gap);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  gap: clamp(28px, 5vw, 80px);
  align-items: end;
  margin-bottom: 34px;
}

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

.section-heading h2 {
  margin-bottom: 0;
}

.section-heading p {
  margin-bottom: 6px;
}

.section-heading.narrow {
  display: block;
  max-width: 760px;
}

.section-heading.narrow h2 {
  margin-bottom: 20px;
}

.custom-build-section {
  padding-top: var(--section-stack-gap);
}

.custom-build-section .section-heading.narrow {
  max-width: none;
  margin-bottom: 0;
}

.custom-build-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 520px);
  align-items: start;
  gap: 12px 40px;
  position: relative;
  z-index: 2;
  margin-bottom: 0;
}

.custom-build-section .section-heading.narrow h2 {
  align-self: end;
  max-width: none;
  margin: 0;
  font-size: clamp(34px, 4.3vw, 58px);
  line-height: 0.98;
  white-space: nowrap;
  transform: translateY(48px);
}

.custom-build-section .process-showcase {
  min-height: auto;
  margin-top: 18px;
  padding: 16px;
  gap: 14px;
  align-items: stretch;
}

.custom-build-section .process-list {
  height: 100%;
  gap: 10px;
  align-content: stretch;
  grid-template-rows: repeat(4, minmax(0, 1fr));
}

.custom-build-section .process-card {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-items: center;
  column-gap: 16px;
  min-height: 88px;
  padding: 14px 18px 14px 22px;
}

.custom-build-section .process-card::before {
  top: 14px;
  bottom: 14px;
}

.custom-build-section .process-card span {
  margin: 0;
  color: rgba(255, 255, 255, 0.46);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(28px, 2.4vw, 38px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.9;
}

.custom-build-section .process-card strong {
  margin-bottom: 0;
  font-size: clamp(22px, 1.55vw, 26px);
  font-weight: 550;
  line-height: 1.06;
  white-space: nowrap;
}

.custom-build-section .process-stage,
.custom-build-section .process-panel {
  min-height: 388px;
}

.custom-build-section .process-panel {
  grid-template-rows: 224px minmax(0, 1fr);
}

.custom-build-section .process-visual {
  min-height: 224px;
}

.custom-build-section .process-stage-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.custom-build-section .process-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 11, 12, 0.02), rgba(11, 11, 12, 0.2));
  pointer-events: none;
}

.custom-build-section .process-mini-card {
  right: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  min-width: 0;
  padding: 11px 16px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(17, 18, 23, 0.9), rgba(24, 25, 31, 0.78)),
    rgba(12, 12, 13, 0.82);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.035);
}

.custom-build-section .process-mini-card strong {
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}

.custom-build-section .process-copy {
  display: grid;
  align-content: start;
  gap: 8px;
  padding: 16px 22px 16px;
}

.custom-build-section .process-copy h3 {
  max-width: 560px;
  margin: 0;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 1.85vw, 28px);
  font-weight: 650;
  line-height: 1.08;
}

.custom-build-section [data-process-panel="pilot"] .process-copy h3 {
  max-width: none;
  font-size: clamp(22px, 1.62vw, 26px);
}

.custom-build-section .process-copy p {
  max-width: 580px;
  margin: 0;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  line-height: 1.42;
}

.custom-build-note {
  --custom-note-pad: clamp(14px, 1.3vw, 18px);
  --custom-note-icon-size: clamp(62px, 4.6vw, 76px);
  position: relative;
  display: grid;
  grid-template-columns: var(--custom-note-icon-size) minmax(0, 1fr);
  align-items: center;
  gap: 0 clamp(18px, 2vw, 24px);
  justify-self: end;
  width: min(100%, 540px);
  margin: 0;
  padding: var(--custom-note-pad) clamp(18px, 2vw, 24px) var(--custom-note-pad) var(--custom-note-pad);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background:
    radial-gradient(circle at 10% 18%, rgba(255, 158, 74, 0.18), transparent 24%),
    radial-gradient(circle at 88% 84%, rgba(102, 146, 255, 0.14), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    #0a0b0f;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 20px 46px rgba(0, 0, 0, 0.22),
    0 0 30px rgba(255, 158, 74, 0.05),
    0 0 34px rgba(102, 146, 255, 0.05);
}

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

.custom-build-note::before {
  inset: 0;
  opacity: 0.16;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.14) 1px, transparent 1px);
  background-size: 22px 22px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 100%);
}

.custom-build-note::after {
  top: 18px;
  bottom: 18px;
  left: calc(var(--custom-note-pad) + var(--custom-note-icon-size) + 10px);
  width: 1px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.06));
  opacity: 0.7;
}

.custom-build-note-icon {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: var(--custom-note-icon-size);
  height: var(--custom-note-icon-size);
  margin: 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 22px;
  background:
    radial-gradient(circle at 26% 20%, rgba(255, 175, 109, 0.18), transparent 34%),
    linear-gradient(145deg, rgba(18, 20, 26, 0.98), rgba(9, 11, 15, 0.98));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.22),
    0 0 24px rgba(255, 152, 74, 0.12);
}

.custom-build-note-icon::before {
  content: "";
  width: clamp(30px, 2.3vw, 38px);
  height: clamp(30px, 2.3vw, 38px);
  background: linear-gradient(180deg, #ffc88f, #ff9d4a);
  filter: drop-shadow(0 0 10px rgba(255, 157, 74, 0.24));
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 4.5-2.9 8.2-7 10-4.1-1.8-7-5.5-7-10V6l7-3z'/%3E%3Cpath d='m9.2 12 1.9 1.9L15.2 10'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3l7 3v5c0 4.5-2.9 8.2-7 10-4.1-1.8-7-5.5-7-10V6l7-3z'/%3E%3Cpath d='m9.2 12 1.9 1.9L15.2 10'/%3E%3C/svg%3E") center / contain no-repeat;
}

.custom-build-note-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 6px;
}

.custom-build-note-kicker {
  color: #f1aa62;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.custom-build-note strong {
  color: var(--white);
  font-size: clamp(22px, 1.95vw, 30px);
  font-weight: 650;
  line-height: 1.02;
}

.custom-build-note p {
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  font-weight: 400;
  line-height: 1.28;
}

.home-cases-section {
  display: grid;
  gap: clamp(28px, 3.8vw, 40px);
  margin-top: 0;
}

.home-cases-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px 24px;
}

.home-cases-copy {
  display: grid;
  max-width: 760px;
}

.home-cases-actions,
.news-preview-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
}

.home-cases-actions .secondary-action,
.news-preview-actions .secondary-action {
  height: 52px;
  padding: 0 24px;
  border-radius: 18px;
}

.home-cases-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 4.3vw, 58px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.home-cases-carousel {
  --home-case-duration: 5200ms;
  --home-case-card-width: clamp(920px, 84vw, 1220px);
  --home-case-edge-gap: clamp(16px, 2vw, 24px);
  display: grid;
  gap: 20px;
}

.home-solutions-carousel {
  --home-case-card-width: clamp(920px, 84vw, 1220px);
}

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

.home-solutions-carousel .home-cases-nav {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.home-cases-tab {
  --case-tab-accent: rgba(255, 255, 255, 0.26);
  position: relative;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 0;
  min-height: 74px;
  padding: 10px 20px 14px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 22px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 255, 255, 0.04), transparent 24%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0c0d11;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 18px 42px rgba(0, 0, 0, 0.18);
  color: rgba(255, 255, 255, 0.66);
  text-align: left;
  cursor: pointer;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.home-cases-tab::before {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 9px;
  height: 3px;
  border-radius: 999px;
  transform: scaleX(0);
  transform-origin: left center;
  background: linear-gradient(90deg, var(--case-tab-accent), var(--case-tab-accent));
  z-index: 1;
}

.home-cases-tab::after {
  content: "";
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 9px;
  height: 3px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
}

.home-cases-tab-title {
  position: relative;
  z-index: 2;
}

.home-cases-tab-title {
  color: inherit;
  font-size: clamp(19px, 1.42vw, 23px);
  font-weight: 600;
  line-height: 1.08;
}

.home-cases-tab:hover,
.home-cases-tab:focus-visible {
  border-color: rgba(255, 255, 255, 0.26);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 24px 48px rgba(0, 0, 0, 0.22);
}

.home-cases-tab.is-active {
  border-color: rgba(255, 255, 255, 0.18);
  background:
    radial-gradient(circle at 84% 18%, var(--home-case-tint), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.02)),
    #101116;
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.06),
    0 28px 52px rgba(0, 0, 0, 0.24);
}

.home-cases-tab.is-active::before {
  animation: home-case-tab-progress var(--home-case-duration) linear forwards;
}

.home-cases-carousel.is-paused .home-cases-tab.is-active::before {
  animation-play-state: paused;
}

.home-cases-tab-sales,
.home-case-slide-sales {
  --case-tab-accent: rgba(109, 144, 255, 0.95);
  --home-case-accent: rgba(91, 130, 255, 0.18);
  --home-case-tint: rgba(112, 146, 255, 0.2);
}

.home-cases-tab-hr,
.home-case-slide-hr {
  --case-tab-accent: rgba(255, 182, 108, 0.95);
  --home-case-accent: rgba(255, 176, 102, 0.18);
  --home-case-tint: rgba(255, 204, 149, 0.2);
}

.home-cases-tab-omni,
.home-case-slide-omni {
  --case-tab-accent: rgba(154, 125, 255, 0.95);
  --home-case-accent: rgba(137, 108, 255, 0.2);
  --home-case-tint: rgba(182, 159, 255, 0.2);
}

.home-solution-tab-request,
.home-solution-slide-request {
  --case-tab-accent: rgba(139, 224, 123, 0.95);
  --home-case-accent: rgba(97, 220, 131, 0.2);
  --home-case-tint: rgba(126, 236, 152, 0.2);
  --home-solution-cover: url("./image/solutions/home-covers/request-operator.jpg");
}

.home-solution-tab-nomenclature,
.home-solution-slide-nomenclature {
  --case-tab-accent: rgba(109, 144, 255, 0.95);
  --home-case-accent: rgba(91, 130, 255, 0.2);
  --home-case-tint: rgba(112, 146, 255, 0.22);
  --home-solution-cover: url("./image/solutions/home-covers/nomenclature-assistant.jpg");
}

.home-solution-tab-drawing,
.home-solution-slide-drawing {
  --case-tab-accent: rgba(255, 190, 96, 0.95);
  --home-case-accent: rgba(255, 179, 87, 0.2);
  --home-case-tint: rgba(255, 204, 149, 0.2);
  --home-solution-cover: url("./image/solutions/home-covers/drawing-search.jpg");
}

.home-solution-tab-docs,
.home-solution-slide-docs {
  --case-tab-accent: rgba(165, 135, 255, 0.95);
  --home-case-accent: rgba(137, 108, 255, 0.2);
  --home-case-tint: rgba(182, 159, 255, 0.2);
  --home-solution-cover: url("./image/solutions/home-covers/corporate-assistant.jpg");
}

.home-solution-tab-editor,
.home-solution-slide-editor {
  --case-tab-accent: rgba(255, 132, 118, 0.95);
  --home-case-accent: rgba(255, 114, 103, 0.2);
  --home-case-tint: rgba(255, 162, 152, 0.2);
  --home-solution-cover: url("./image/solutions/home-covers/document-editor.jpg");
}

@keyframes home-case-tab-progress {
  from {
    transform: scaleX(0);
  }

  to {
    transform: scaleX(1);
  }
}

.home-cases-viewport {
  overflow-x: auto;
  overflow-y: hidden;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.home-cases-viewport::-webkit-scrollbar {
  display: none;
}

.home-cases-track {
  display: flex;
  gap: 22px;
  padding-left: 0;
  padding-right: max(var(--home-case-edge-gap), calc(100% - var(--home-case-card-width) - var(--home-case-edge-gap)));
}

.home-case-slide {
  --home-case-accent: rgba(255, 255, 255, 0.14);
  --home-case-tint: rgba(255, 255, 255, 0.14);
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 0.92fr);
  gap: clamp(20px, 2.2vw, 30px);
  align-items: stretch;
  flex: 0 0 var(--home-case-card-width);
  min-height: clamp(388px, 40vw, 486px);
  padding: clamp(22px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 28px;
  background:
    radial-gradient(circle at 16% 18%, var(--home-case-accent), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.012)),
    #0d0e12;
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.26);
  isolation: isolate;
  opacity: 0.5;
  filter: saturate(0.86);
  transform: scale(0.955);
  transition:
    opacity 520ms ease,
    transform 620ms var(--ease-smooth),
    filter 520ms ease,
    border-color 320ms ease,
    box-shadow 320ms ease;
}

.home-case-slide::before,
.home-case-slide::after {
  content: none;
}

.home-case-slide.is-active {
  opacity: 1;
  filter: none;
  transform: scale(1);
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 30px 76px rgba(0, 0, 0, 0.3);
}

.home-case-slide--cover {
  grid-template-columns: minmax(0, 1fr);
  background:
    linear-gradient(90deg, rgba(9, 10, 14, 0.94) 0%, rgba(9, 10, 14, 0.86) 24%, rgba(9, 10, 14, 0.64) 44%, rgba(9, 10, 14, 0.34) 66%, rgba(9, 10, 14, 0.16) 100%),
    radial-gradient(circle at 14% 18%, rgba(112, 146, 255, 0.18), transparent 30%),
    url("./image/case1.png") center / cover no-repeat;
}

.home-case-slide--cover .home-case-slide-content {
  max-width: min(46%, 540px);
}

.home-case-slide--cover-hr {
  background:
    linear-gradient(90deg, rgba(9, 10, 14, 0.94) 0%, rgba(9, 10, 14, 0.86) 24%, rgba(9, 10, 14, 0.64) 44%, rgba(9, 10, 14, 0.34) 66%, rgba(9, 10, 14, 0.16) 100%),
    radial-gradient(circle at 14% 18%, rgba(255, 204, 149, 0.18), transparent 30%),
    url("./image/case2.png") center / cover no-repeat;
}

.home-case-slide--cover-omni {
  background:
    linear-gradient(90deg, rgba(9, 10, 14, 0.94) 0%, rgba(9, 10, 14, 0.86) 24%, rgba(9, 10, 14, 0.64) 44%, rgba(9, 10, 14, 0.34) 66%, rgba(9, 10, 14, 0.16) 100%),
    radial-gradient(circle at 14% 18%, rgba(182, 159, 255, 0.18), transparent 30%),
    url("./image/case3.png") center / cover no-repeat;
}

.home-solution-slide {
  background:
    linear-gradient(90deg, rgba(9, 10, 14, 0.95) 0%, rgba(9, 10, 14, 0.86) 28%, rgba(9, 10, 14, 0.54) 50%, rgba(9, 10, 14, 0.2) 74%, rgba(9, 10, 14, 0.04) 100%),
    radial-gradient(circle at 14% 18%, var(--home-case-accent), transparent 30%),
    var(--home-solution-cover) center / cover no-repeat;
}

.home-solution-slide .home-case-slide-content {
  max-width: min(48%, 570px);
}

.home-case-slide-image {
  display: none;
}

.home-case-slide-content {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: start;
  gap: 24px;
  min-height: 100%;
  max-width: none;
  padding: 0;
}

.home-case-slide-top {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
}

.home-case-slide-eyebrow {
  color: rgba(255, 255, 255, 0.76);
  font-size: 16px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.home-case-slide-copy {
  display: grid;
  gap: 12px;
}

.home-case-slide-copy h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(34px, 3.6vw, 52px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1;
}

.home-case-slide-copy p {
  max-width: 31ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(18px, 1.6vw, 20px);
  font-weight: 350;
  line-height: 1.42;
}

.home-solution-slide .home-case-slide-copy p {
  max-width: 36ch;
}

.home-solution-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.home-solution-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.home-solution-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.home-case-slide-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  justify-self: start;
  width: fit-content;
  min-height: 48px;
  padding: 0 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    color 240ms ease,
    transform 240ms var(--ease-out);
}

.home-case-slide-link:hover,
.home-case-slide-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: #f4f4f4;
  color: #050505;
  transform: translateY(-1px);
}

.home-case-slide-link--primary {
  border-color: rgba(255, 255, 255, 0.72);
  background: #f4f4f4;
  color: #050505;
}

.home-case-slide-link--primary:hover,
.home-case-slide-link--primary:focus-visible {
  border-color: rgba(255, 255, 255, 0.18);
  background: #111113;
  color: var(--white);
}

.home-case-slide-placeholder {
  position: relative;
  display: grid;
  align-content: end;
  gap: 10px;
  min-height: 100%;
  padding: clamp(24px, 2.5vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(90, 98, 120, 0.12);
  border-radius: 24px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.84), transparent 18%),
    radial-gradient(circle at 18% 82%, var(--home-case-tint), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(239, 243, 249, 0.96));
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.84),
    0 24px 56px rgba(9, 12, 20, 0.14);
}

.home-case-slide-placeholder::before,
.home-case-slide-placeholder::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.home-case-slide-placeholder::before {
  inset: 0;
  opacity: 0.26;
  background-image:
    linear-gradient(rgba(102, 118, 156, 0.14) 1px, transparent 1px),
    linear-gradient(90deg, rgba(102, 118, 156, 0.14) 1px, transparent 1px);
  background-size: 42px 42px;
}

.home-case-slide-placeholder::after {
  inset: auto -34px -42px auto;
  width: 172px;
  height: 172px;
  border: 1px solid rgba(110, 126, 168, 0.1);
  border-radius: 50%;
}

.home-case-slide-placeholder span,
.home-case-slide-placeholder strong {
  position: relative;
  z-index: 1;
}

.home-case-slide-placeholder span {
  color: rgba(36, 45, 61, 0.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-case-slide-placeholder strong {
  max-width: 14ch;
  color: #171b25;
  font-size: clamp(30px, 3vw, 42px);
  font-weight: 550;
  line-height: 1;
}

.home-case-slide-placeholder--omni {
  display: flex;
  align-items: stretch;
  justify-content: stretch;
  padding: 0;
  min-height: 100%;
  overflow: hidden;
}

.home-case-slide-placeholder--omni::before,
.home-case-slide-placeholder--omni::after {
  content: none;
}

.home-case-slide-shot {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 100%;
  max-width: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: inherit;
  box-shadow:
    0 22px 46px rgba(16, 20, 36, 0.14),
    0 0 0 1px rgba(255, 255, 255, 0.78);
}

.product-section {
  position: relative;
}

.product-heading {
  grid-template-columns: minmax(0, 0.78fr) minmax(280px, 0.42fr);
  align-items: end;
  margin-bottom: 38px;
}

.heat-text {
  background: var(--heat-gradient);
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
}

.product-note {
  display: grid;
  gap: 24px;
  justify-items: start;
  margin-bottom: 6px;
}

.product-note p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.product-signal {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.7fr 1.2fr;
  gap: 6px;
  width: 190px;
  height: 54px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 47, 31, 0.09), rgba(255, 138, 31, 0.04)),
    #050505;
}

.product-signal::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 122, 31, 0.18), transparent);
  transform: translateX(-55%);
}

.product-signal span {
  position: relative;
  border-radius: 5px;
  background: var(--heat-gradient);
  clip-path: polygon(18% 0, 100% 0, 82% 100%, 0 100%);
}

.product-signal span:nth-child(2) {
  opacity: 0.62;
  transform: translateY(9px);
}

.product-signal span:nth-child(3) {
  opacity: 0.34;
  transform: translateY(18px);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.product-card {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: 330px;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.085);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    var(--panel);
  transition:
    border-color 240ms ease,
    background 240ms ease,
    transform 240ms var(--ease-out);
}

.product-card::before {
  content: "";
  position: absolute;
  z-index: -1;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  background: var(--heat-gradient);
  opacity: 0;
  transition: opacity 240ms ease;
}

.product-card::after {
  content: "";
  position: absolute;
  z-index: -1;
  right: -42px;
  bottom: -52px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 122, 31, 0.16);
  transform: rotate(18deg);
}

.product-card:hover,
.product-card:focus-within {
  border-color: rgba(255, 122, 31, 0.34);
  background:
    linear-gradient(180deg, rgba(255, 122, 31, 0.075), rgba(255, 255, 255, 0.015)),
    var(--panel);
  transform: translateY(-4px);
}

.product-card:hover::before,
.product-card:focus-within::before {
  opacity: 1;
}

.product-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 46px;
}

.product-icon {
  position: relative;
  display: block;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  background: var(--heat-gradient);
}

.product-icon::before,
.product-icon::after {
  content: "";
  position: absolute;
}

.product-icon::before {
  inset: 8px;
  border: 1px solid rgba(0, 0, 0, 0.55);
  border-radius: 6px;
  background: rgba(0, 0, 0, 0.5);
}

.product-icon::after {
  inset: 14px 7px;
  background: rgba(255, 255, 255, 0.88);
  clip-path: polygon(0 0, 100% 50%, 0 100%);
}

.product-card:nth-child(2) .product-icon::after {
  inset: 10px;
  border: 2px solid rgba(255, 255, 255, 0.88);
  background: transparent;
  border-radius: 50%;
  clip-path: none;
}

.product-card:nth-child(3) .product-icon::after {
  inset: 11px 9px;
  background: rgba(255, 255, 255, 0.88);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}

.product-card:nth-child(4) .product-icon::after {
  inset: 11px;
  background: rgba(255, 255, 255, 0.9);
  clip-path: polygon(0 0, 100% 0, 100% 34%, 38% 34%, 38% 100%, 0 100%);
}

.product-card h3,
.case-stack h3,
.timeline h3 {
  margin-bottom: 14px;
  color: var(--white);
  font-size: 28px;
  font-weight: 500;
  line-height: 1;
}

.product-card p {
  font-size: 16px;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(390px, 0.74fr) minmax(540px, 0.76fr);
  gap: clamp(28px, 3.6vw, 58px);
  align-items: center;
  min-height: 720px;
  padding-top: clamp(92px, 12vw, 150px);
}

.feature-copy h2 {
  max-width: 760px;
  margin-bottom: 22px;
}

.feature-copy p {
  max-width: 680px;
  font-size: 21px;
}

.case-browser {
  display: grid;
  gap: 18px;
  align-self: center;
}

.case-tabs {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 4px;
  padding: 6px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
}

.case-tab {
  min-width: 0;
  height: 42px;
  padding: 0 18px;
  border: 0;
  border-radius: 999px;
  background: transparent;
  color: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 16px;
  font-weight: 550;
  line-height: 1;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms var(--ease-out);
}

.case-tab:hover,
.case-tab:focus-visible {
  color: var(--white);
}

.case-tab:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.72);
  outline-offset: 3px;
}

.case-tab.is-active {
  background: #f4f4f4;
  color: #050505;
  transform: translateY(-1px);
}

.case-pages {
  position: relative;
  min-height: 340px;
}

.case-panel {
  position: relative;
  isolation: isolate;
  min-height: 340px;
  padding: clamp(26px, 4vw, 38px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    radial-gradient(circle at 88% 18%, rgba(255, 122, 31, 0.18), transparent 28%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.014)),
    var(--panel);
}

.case-panel::before {
  content: "";
  position: absolute;
  z-index: -1;
  right: -70px;
  bottom: -86px;
  width: 240px;
  height: 240px;
  border: 1px solid rgba(255, 122, 31, 0.18);
  border-radius: 50%;
}

.case-panel::after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--heat-gradient);
  opacity: 0.86;
}

.case-panel[hidden] {
  display: none;
}

.case-panel.is-active {
  animation: caseReveal 260ms var(--ease-out);
}

.case-panel span {
  display: block;
  margin-bottom: 22px;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-panel h3 {
  max-width: 410px;
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 500;
  line-height: 0.98;
}

.case-panel p {
  max-width: 440px;
  margin-bottom: 28px;
  color: var(--muted);
  font-size: 17px;
  font-weight: 300;
  line-height: 1.42;
}

.case-metrics {
  display: inline-grid;
  gap: 6px;
  padding: 16px 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.case-metrics strong {
  color: var(--white);
  font-size: 24px;
  font-weight: 550;
  line-height: 1;
}

.case-metrics small {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 350;
  line-height: 1;
}

@keyframes caseReveal {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.case-stack {
  display: grid;
  gap: 12px;
}

.case-stack article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--panel);
}

.case-stack span {
  display: block;
  margin-bottom: 20px;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.case-stack p {
  margin-bottom: 0;
  font-size: 16px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  padding: 1px;
  margin: 40px 0 0;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
  list-style: none;
}

.timeline li {
  min-height: 280px;
  padding: 28px;
  border-radius: 7px;
  background: var(--panel);
}

.timeline p {
  margin-bottom: 0;
  font-size: 16px;
}

.process-showcase {
  position: relative;
  display: grid;
  grid-template-columns: minmax(260px, 0.42fr) minmax(0, 0.76fr);
  gap: 18px;
  min-height: 560px;
  padding: 20px;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 32px;
  background:
    radial-gradient(circle at 86% 18%, rgba(255, 122, 31, 0.12), transparent 28%),
    radial-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    #0a0a0b;
  background-size: auto, 14px 14px, auto;
}

.process-list {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: center;
  gap: 12px;
}

.process-card {
  position: relative;
  min-height: 120px;
  padding: 22px 24px 22px 28px;
  overflow: hidden;
  border: 1px solid transparent;
  border-radius: 22px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  text-align: left;
  transition:
    background 420ms ease,
    border-color 420ms ease,
    color 320ms ease,
    transform 420ms var(--ease-smooth),
    box-shadow 420ms ease;
}

.process-card::before {
  content: "";
  position: absolute;
  top: 18px;
  bottom: 18px;
  left: 0;
  width: 4px;
  border-radius: 999px;
  background: var(--heat-gradient);
  opacity: 0;
  transition: opacity 360ms ease;
}

.process-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
}

.process-card strong {
  display: block;
  margin-bottom: 10px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 24px;
  font-weight: 650;
  line-height: 1;
}

.process-card small {
  display: block;
  max-width: 320px;
  color: rgba(255, 255, 255, 0.43);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.35;
}

.process-card:hover,
.process-card:focus-visible,
.process-card.is-active {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(255, 255, 255, 0.055);
  color: var(--white);
  transform: translateX(4px);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.015);
}

.process-card:hover::before,
.process-card:focus-visible::before,
.process-card.is-active::before {
  opacity: 1;
}

.process-card.is-active strong {
  color: var(--white);
}

.process-card.is-active small {
  color: rgba(255, 255, 255, 0.62);
}

.process-card:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.5);
  outline-offset: 3px;
}

.process-stage {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 520px;
}

.process-panel {
  grid-area: 1 / 1;
  z-index: 0;
  display: grid;
  grid-template-rows: minmax(280px, 1fr) auto;
  min-height: 520px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.052), rgba(255, 255, 255, 0.018)),
    var(--panel);
  opacity: 0;
  pointer-events: none;
  transform: translateY(14px) scale(0.985);
  visibility: hidden;
  will-change: opacity, transform;
  transition:
    opacity 520ms ease,
    transform 560ms var(--ease-smooth),
    visibility 0s linear 520ms;
}

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

.process-visual {
  position: relative;
  min-height: 310px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), transparent),
    radial-gradient(rgba(255, 255, 255, 0.07) 1px, transparent 1px),
    #0d0d0e;
  background-size: auto, 12px 12px, auto;
}

.process-line {
  position: absolute;
  top: 58px;
  right: 36px;
  left: 36px;
  height: 126px;
  clip-path: polygon(0 56%, 10% 36%, 18% 48%, 27% 32%, 36% 62%, 48% 52%, 58% 72%, 68% 42%, 80% 58%, 90% 26%, 100% 36%, 100% 42%, 90% 32%, 80% 64%, 68% 48%, 58% 78%, 48% 58%, 36% 68%, 27% 38%, 18% 54%, 10% 42%, 0 62%);
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.3), var(--white));
}

.process-bars {
  position: absolute;
  right: 36px;
  bottom: 44px;
  left: 36px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 8px;
  height: 90px;
}

.process-bars span {
  display: block;
  height: var(--bar-h, 42%);
  border-radius: 10px 10px 0 0;
  background: rgba(255, 255, 255, 0.16);
}

.process-bars span:nth-child(1) { --bar-h: 38%; }
.process-bars span:nth-child(2) { --bar-h: 58%; }
.process-bars span:nth-child(3) { --bar-h: 44%; }
.process-bars span:nth-child(4) { --bar-h: 76%; background: linear-gradient(180deg, var(--heat-orange), rgba(255, 122, 31, 0.18)); }
.process-bars span:nth-child(5) { --bar-h: 62%; }
.process-bars span:nth-child(6) { --bar-h: 86%; background: linear-gradient(180deg, var(--heat-light), rgba(255, 255, 255, 0.16)); }

.process-mini-card {
  position: absolute;
  right: 28px;
  bottom: 28px;
  display: grid;
  gap: 7px;
  min-width: 164px;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(12, 12, 13, 0.84);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.process-mini-card span,
.process-copy span {
  color: var(--quiet);
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.process-mini-card strong {
  color: var(--white);
  font-size: 26px;
  font-weight: 650;
  line-height: 1;
}

.process-chip {
  position: absolute;
  top: 42px;
  left: 38px;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--heat-gradient);
  color: #050505;
  font-size: 14px;
  font-weight: 650;
}

.process-grid-dots {
  position: absolute;
  top: 104px;
  left: 42px;
  display: grid;
  grid-template-columns: repeat(4, 42px);
  gap: 16px;
}

.process-grid-dots span {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.05);
}

.process-grid-dots span:nth-child(3n) {
  background: linear-gradient(135deg, rgba(255, 47, 31, 0.82), rgba(255, 138, 31, 0.38));
}

.process-screen {
  position: absolute;
  inset: 42px 36px 94px;
  display: grid;
  grid-template-columns: 1.1fr 0.8fr;
  gap: 12px;
}

.process-screen span {
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
}

.process-screen span:first-child {
  grid-row: span 2;
  background:
    linear-gradient(135deg, rgba(255, 47, 31, 0.22), transparent 55%),
    rgba(255, 255, 255, 0.045);
}

.process-screen span:nth-child(2) {
  background: linear-gradient(135deg, rgba(255, 138, 31, 0.32), rgba(255, 255, 255, 0.05));
}

.process-nodes {
  position: absolute;
  inset: 56px 42px 86px;
}

.process-nodes::before,
.process-nodes::after {
  content: "";
  position: absolute;
  inset: 32px 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  border-bottom: 1px solid rgba(255, 122, 31, 0.26);
  transform: skewY(-8deg);
}

.process-nodes span {
  position: absolute;
  width: 70px;
  height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255, 255, 255, 0.82), rgba(255, 138, 31, 0.45) 22%, rgba(255, 47, 31, 0.12) 58%, rgba(255, 255, 255, 0.04));
}

.process-nodes span:nth-child(1) { top: 0; left: 2%; }
.process-nodes span:nth-child(2) { top: 34%; left: 34%; }
.process-nodes span:nth-child(3) { top: 6%; right: 18%; }
.process-nodes span:nth-child(4) { right: 2%; bottom: 0; }

.process-copy {
  padding: 30px 34px 34px;
}

.process-copy h3 {
  max-width: 560px;
  margin: 16px 0 14px;
  color: var(--white);
  font-size: clamp(34px, 4vw, 52px);
  font-weight: 500;
  line-height: 0.98;
}

.process-copy p {
  max-width: 620px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.42;
}

.home-reviews-section {
  display: grid;
  gap: clamp(26px, 3.6vw, 42px);
}

.home-reviews-head {
  display: grid;
  grid-template-columns: minmax(0, 0.84fr) minmax(300px, 0.42fr);
  align-items: end;
  gap: clamp(28px, 5vw, 78px);
}

.home-reviews-copy {
  display: grid;
  gap: 14px;
  max-width: 820px;
}

.home-reviews-kicker {
  color: rgba(255, 255, 255, 0.54);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-reviews-copy h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.6vw, 68px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.96;
}

.home-reviews-head > p {
  justify-self: end;
  max-width: 470px;
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: clamp(17px, 1.45vw, 20px);
  font-weight: 350;
  line-height: 1.42;
}

.home-reviews-viewport {
  position: relative;
  overflow: hidden;
  padding: 2px 0 10px;
  margin-bottom: -10px;
}

.home-reviews-viewport::before,
.home-reviews-viewport::after {
  content: "";
  position: absolute;
  z-index: 3;
  top: 0;
  bottom: 0;
  width: min(92px, 11vw);
  pointer-events: none;
}

.home-reviews-viewport::before {
  left: 0;
  background: linear-gradient(90deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.home-reviews-viewport::after {
  right: 0;
  background: linear-gradient(270deg, #000 0%, rgba(0, 0, 0, 0) 100%);
}

.home-reviews-track {
  display: flex;
  width: max-content;
  will-change: transform;
  animation: home-reviews-loop 86s linear infinite;
}

.home-reviews-viewport:hover .home-reviews-track,
.home-reviews-viewport:focus-within .home-reviews-track {
  animation-play-state: paused;
}

.home-reviews-set {
  display: flex;
  gap: 18px;
  padding-right: 18px;
}

@keyframes home-reviews-loop {
  from {
    transform: translateX(0);
  }

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

.home-review-card {
  --review-accent: rgba(255, 255, 255, 0.12);
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr auto;
  flex: 0 0 clamp(330px, 29vw, 420px);
  min-height: 368px;
  padding: clamp(22px, 2.4vw, 30px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at 86% 0%, var(--review-accent), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.042), rgba(255, 255, 255, 0.014)),
    #0c0d11;
  box-shadow: 0 26px 62px rgba(0, 0, 0, 0.24);
  isolation: isolate;
  transition:
    border-color 260ms ease,
    transform 260ms var(--ease-out),
    box-shadow 260ms ease;
}

.home-review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  pointer-events: none;
}

.home-review-card:hover,
.home-review-card:focus-within {
  border-color: rgba(255, 255, 255, 0.22);
  transform: translateY(-4px);
  box-shadow: 0 34px 72px rgba(0, 0, 0, 0.3);
}

.home-review-card-blue {
  --review-accent: rgba(109, 144, 255, 0.22);
}

.home-review-card-amber {
  --review-accent: rgba(255, 182, 108, 0.2);
}

.home-review-card-violet {
  --review-accent: rgba(154, 125, 255, 0.22);
}

.home-review-card-cyan {
  --review-accent: rgba(80, 210, 255, 0.2);
}

.home-review-card-coral {
  --review-accent: rgba(255, 116, 92, 0.2);
}

.home-review-card-green {
  --review-accent: rgba(100, 216, 158, 0.18);
}

.home-review-card-rose {
  --review-accent: rgba(255, 112, 152, 0.2);
}

.home-review-card-lime {
  --review-accent: rgba(184, 232, 98, 0.18);
}

.home-review-card-spk {
  --review-accent: rgba(27, 83, 188, 0.2);
  grid-template-rows: auto auto 1fr auto;
  flex-basis: clamp(430px, 37vw, 560px);
  min-height: 500px;
}

.home-review-card-brand {
  grid-template-rows: auto 1fr auto;
  min-height: 430px;
}

.home-review-card-teko {
  --review-accent: rgba(109, 144, 255, 0.22);
}

.home-review-card-pzkt {
  --review-accent: rgba(255, 182, 108, 0.2);
}

.home-review-card-recovery {
  --review-accent: rgba(255, 112, 152, 0.2);
}

.home-review-card-recovery .home-review-company-short {
  font-size: clamp(31px, 2.6vw, 42px);
  line-height: 0.94;
}

.home-review-card-letter {
  --review-accent: rgba(100, 216, 158, 0.18);
  grid-template-rows: auto auto 1fr auto;
  flex-basis: clamp(430px, 37vw, 560px);
  min-height: 500px;
}

.home-reviews-set .home-review-card:first-child {
  margin-left: min(92px, 11vw);
}

.home-review-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 16px;
  color: rgba(255, 255, 255, 0.48);
}

.home-review-card-top span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.home-review-card-top-logo {
  align-items: flex-start;
  justify-content: space-between;
}

.home-review-card-top-letter {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.home-review-company-short {
  color: var(--white);
  font-size: clamp(38px, 3.2vw, 52px);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 0.82;
}

.home-review-company-logo {
  width: clamp(134px, 12vw, 166px);
  height: 44px;
  padding: 8px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.92);
  object-fit: contain;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.2);
}

.home-review-company-logo-teko {
  width: clamp(148px, 13vw, 184px);
  height: 48px;
}

.home-review-company-logo-pzkt,
.home-review-company-logo-udgau {
  width: 72px;
  height: 62px;
  padding: 6px;
}

.home-review-proof {
  position: relative;
  z-index: 1;
  display: block;
  height: clamp(76px, 7vw, 96px);
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.home-review-proof::after {
  content: "Письмо";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 9px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.52);
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.home-review-proof img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
  opacity: 0.86;
  filter: saturate(0.8) contrast(1.06);
  transform: scale(1.03);
}

.home-review-proof-large {
  height: clamp(188px, 16vw, 240px);
  margin-top: 18px;
}

.home-review-proof-spk {
  height: clamp(206px, 17vw, 256px);
  margin-top: 18px;
  background: #f2f1ec;
}

.home-review-proof-spk::before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
  height: 42%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.28));
  pointer-events: none;
}

.home-review-proof-large img {
  object-position: center 17%;
  opacity: 0.94;
  filter: saturate(0.9) contrast(1.08);
}

.home-review-proof-spk img {
  object-position: center 30%;
  opacity: 0.98;
  filter: saturate(0.94) contrast(1.08);
  transform: scale(1.02);
}

.home-review-card blockquote {
  position: relative;
  z-index: 1;
  align-self: center;
  margin: clamp(30px, 4vw, 48px) 0;
  color: var(--white);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.12;
}

.home-review-card-spk blockquote {
  margin: clamp(22px, 3vw, 36px) 0;
  font-size: clamp(20px, 1.8vw, 25px);
  line-height: 1.15;
}

.home-review-card-letter blockquote {
  margin: clamp(20px, 2.5vw, 30px) 0;
  font-size: clamp(20px, 1.7vw, 25px);
  line-height: 1.16;
}

.home-review-card-brand blockquote {
  margin: clamp(34px, 4vw, 52px) 0;
  font-size: clamp(24px, 2vw, 30px);
  line-height: 1.12;
}

.home-review-author {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 5px;
  padding-top: 18px;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.home-review-author strong {
  color: rgba(255, 255, 255, 0.88);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.18;
}

.home-review-author span {
  color: rgba(255, 255, 255, 0.48);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.22;
}

.news-preview-section {
  display: grid;
  gap: clamp(24px, 3vw, 34px);
}

.news-preview-head {
  align-items: flex-end;
  flex-wrap: wrap;
}

.news-preview-copy {
  max-width: 760px;
}

.news-preview-copy h2 {
  max-width: 760px;
}

.news-preview-track {
  display: flex;
  align-items: stretch;
  flex-wrap: nowrap;
  gap: 26px;
  overflow-x: auto;
  padding: 2px 2px 12px;
  margin: 0 -2px -12px;
  scroll-behavior: smooth;
  scroll-padding-left: 2px;
  scrollbar-width: none;
}

.news-preview-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  flex: 0 0 clamp(312px, 28vw, 380px);
  width: clamp(312px, 28vw, 380px);
  max-width: clamp(312px, 28vw, 380px);
  gap: 16px;
  min-width: 0;
  height: 100%;
  color: inherit;
  text-decoration: none;
}

.news-preview-card .blog-mini-preview {
  width: 100%;
  min-height: 220px;
}

.news-preview-card .blog-mini-body {
  width: 100%;
  gap: 12px;
}

.news-preview-card .blog-mini-body strong {
  font-size: clamp(22px, 1.65vw, 28px);
  -webkit-line-clamp: 4;
}

.news-preview-card .blog-mini-body p {
  -webkit-line-clamp: 4;
}

.news-preview-card:hover .blog-mini-preview,
.news-preview-card:focus-visible .blog-mini-preview {
  border-color: rgba(255, 255, 255, 0.32);
  filter: saturate(1.08) brightness(1.04);
}

.news-preview-card:hover .blog-mini-body strong,
.news-preview-card:focus-visible .blog-mini-body strong {
  color: var(--white);
}

.blog-main {
  min-height: 100vh;
}

.blog-page {
  display: grid;
  gap: 34px;
  padding-top: clamp(104px, 9vw, 132px);
  --blog-sticky-top: clamp(88px, 7vw, 104px);
  --blog-rail-preview-height: clamp(118px, 8vw, 158px);
  --blog-title-lines: 3;
  --blog-copy-lines: 3;
}

.blog-section {
  display: grid;
  gap: 34px;
}

.blog-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
}

.blog-head .eyebrow {
  margin-bottom: 16px;
}

.blog-head h1,
.blog-head h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(44px, 5.4vw, 82px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.9;
}

.blog-tools {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
  padding-bottom: 10px;
}

.blog-control-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.blog-control-row .blog-tools {
  flex: 0 0 auto;
  padding-bottom: 0;
}

.blog-view-toggle {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px;
  border: 1px solid var(--line-soft);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.035);
}

.blog-view-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: rgba(255, 255, 255, 0.58);
  cursor: pointer;
  transition:
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.blog-view-button svg {
  display: block;
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
}

.blog-view-button[data-blog-view-trigger="grid"] svg {
  fill: currentColor;
  stroke: none;
}

.blog-view-button:hover,
.blog-view-button:focus-visible {
  color: var(--white);
  transform: translateY(-1px);
}

.blog-view-button.is-active {
  background: #f4f4f4;
  color: #050505;
}

.blog-search {
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(100vw - 48px, 310px);
  height: 44px;
  padding: 0 16px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  transition:
    border-color 220ms ease,
    background 220ms ease;
}

.blog-search:focus-within {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.065);
}

.search-icon-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 auto;
  width: 22px;
  height: 22px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: rgba(255, 255, 255, 0.62);
  cursor: pointer;
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.search-icon-button svg {
  display: block;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.6;
}

.search-icon-button:hover,
.search-icon-button:focus-visible {
  color: var(--white);
  transform: scale(1.04);
}

.blog-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--white);
  font-size: 16px;
  font-weight: 350;
}

.blog-search input::placeholder {
  color: var(--muted);
  opacity: 1;
}

.blog-subscribe {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 44px;
  padding: 0 22px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.02)),
    #101011;
  color: var(--white);
  font-size: 16px;
  font-weight: 650;
  text-decoration: none;
  white-space: nowrap;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.blog-subscribe:hover,
.blog-subscribe:focus-visible {
  border-color: rgba(255, 255, 255, 0.8);
  background: #f4f4f4;
  color: #050505;
}

.blog-filters {
  display: flex;
  flex-wrap: wrap;
  flex: 1 1 auto;
  gap: 10px;
}

.blog-filters a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 39px;
  padding: 0 18px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.blog-filters a:hover,
.blog-filters a:focus-visible,
.blog-filters a.is-active {
  border-color: rgba(255, 255, 255, 0.82);
  background: #f4f4f4;
  color: #050505;
}

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

.news-layout {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 34px);
  align-items: start;
}

.news-featured-column,
.news-feed-column {
  min-width: 0;
}

.news-featured-column {
  display: grid;
  grid-column: span 2;
  align-content: start;
  position: sticky;
  top: var(--blog-sticky-top);
  align-self: start;
}

.news-feed-column {
  display: grid;
  grid-column: span 1;
  gap: 26px;
  align-content: start;
}

.news-main-card {
  position: static;
}

.news-card-link,
.news-rail-link,
.blog-more-card {
  color: inherit;
  text-decoration: none;
}

.news-card-link {
  display: grid;
  gap: 18px;
  height: 100%;
}

.news-rail {
  display: grid;
  grid-template-columns: 1fr;
  gap: 26px;
  align-content: start;
  height: auto;
}

.news-rail-card {
  min-height: 0;
}

.news-rail-link {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
  align-items: stretch;
  height: 100%;
  min-height: 0;
}

.news-main-preview {
  aspect-ratio: 1.9 / 1;
  min-height: clamp(368px, 31vw, 520px);
  padding: clamp(24px, 2.6vw, 32px);
}

.news-main-preview strong {
  font-size: clamp(78px, 9vw, 138px);
}

.news-rail-preview {
  min-height: 190px;
  padding: 24px;
}

.news-card-body {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 0;
}

.news-card-body p {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.news-card-body h3 {
  margin: 0;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 2.8vw, 38px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

.news-rail-card .news-card-body h3 {
  font-size: clamp(20px, 1.55vw, 26px);
  line-height: 1.1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--blog-title-lines);
  overflow: hidden;
}

.news-card-body span {
  max-width: 720px;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.38;
}

.news-card-link:hover .blog-mini-preview,
.news-card-link:focus-visible .blog-mini-preview,
.news-rail-link:hover .blog-mini-preview,
.news-rail-link:focus-visible .blog-mini-preview,
.news-rail-card.is-active .blog-mini-preview {
  border-color: rgba(255, 255, 255, 0.32);
  filter: saturate(1.08) brightness(1.04);
}

.news-card-link:hover h3,
.news-card-link:focus-visible h3,
.news-rail-link:hover h3,
.news-rail-link:focus-visible h3 {
  color: var(--heat-light);
}

.blog-section-label,
.blog-latest-title {
  margin: 0;
  color: var(--white);
  font-size: 20px;
  font-weight: 650;
}

.blog-featured-block,
.blog-latest-block {
  display: grid;
  gap: 18px;
}

.blog-card-link {
  display: grid;
  gap: 18px;
  color: inherit;
  text-decoration: none;
}

.blog-poster {
  position: relative;
  min-height: 330px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: #101010;
  transition:
    border-color 260ms ease,
    filter 260ms ease,
    transform 260ms var(--ease-smooth);
}

.blog-card-link:hover .blog-poster,
.blog-card-link:focus-visible .blog-poster {
  border-color: rgba(255, 255, 255, 0.34);
  filter: saturate(1.08) brightness(1.04);
}

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

.blog-poster::before {
  inset: 0;
  opacity: 0.35;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 22px 22px;
}

.blog-poster::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.32));
}

.blog-post-card-blue .blog-poster {
  background:
    linear-gradient(135deg, #075dff 0%, #0047da 58%, #00277c 100%);
}

.blog-post-card-lime .blog-poster {
  background:
    linear-gradient(135deg, #00c747 0%, #00a63d 48%, #034419 100%);
}

.blog-post-card-coral .blog-poster {
  background:
    linear-gradient(135deg, #ff3b12 0%, #ff8a1f 48%, #240904 100%);
}

.blog-post-card-dark .blog-poster {
  background:
    radial-gradient(circle at 76% 24%, rgba(255, 138, 31, 0.5), transparent 26%),
    linear-gradient(135deg, #171719 0%, #050505 58%, #1b0b07 100%);
}

.poster-label,
.poster-stamp,
.poster-word {
  position: absolute;
  z-index: 1;
  text-transform: uppercase;
}

.poster-label {
  top: 28px;
  left: 32px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.poster-stamp {
  right: 28px;
  bottom: 24px;
  color: rgba(0, 0, 0, 0.68);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
}

.poster-word {
  top: 30%;
  left: 9%;
  max-width: 82%;
  color: #ff4a12;
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(68px, 8vw, 112px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.78;
  text-shadow: 10px 12px 0 rgba(45, 0, 78, 0.72);
  transform: skewX(-9deg) rotate(-4deg);
}

.blog-post-card-lime .poster-word {
  color: #ff5a12;
  text-shadow: 10px 12px 0 rgba(45, 14, 96, 0.76);
}

.blog-post-card-coral .poster-word {
  color: #f4f4f4;
  text-shadow: 10px 12px 0 rgba(75, 0, 0, 0.5);
}

.blog-post-card-dark .poster-word {
  color: var(--heat-orange);
  text-shadow: 10px 12px 0 rgba(255, 47, 31, 0.22);
}

.blog-card-body {
  display: grid;
  gap: 8px;
}

.blog-card-body p {
  margin: 0;
  color: var(--quiet);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-transform: uppercase;
}

.blog-card-body h3 {
  max-width: 650px;
  margin: 0;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(24px, 2.4vw, 34px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.08;
  transition: color 220ms ease;
}

.blog-card-link:hover .blog-card-body h3,
.blog-card-link:focus-visible .blog-card-body h3 {
  color: var(--heat-light);
}

.blog-latest {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 26px;
  margin-top: 0;
}

.blog-latest-block .blog-latest {
  margin-top: 0;
}

.blog-list-card {
  display: grid;
  grid-template-rows: auto 1fr;
  gap: 16px;
  color: inherit;
  text-decoration: none;
  height: 100%;
  transition:
    color 220ms ease,
    transform 260ms var(--ease-smooth);
}

.blog-mini-preview {
  position: relative;
  display: grid;
  align-content: space-between;
  aspect-ratio: 1.9 / 1;
  min-height: 190px;
  padding: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background: #111;
  transition:
    border-color 240ms ease,
    filter 240ms ease;
}

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

.blog-mini-preview::before {
  inset: 0;
  opacity: 0.32;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
}

.blog-mini-preview::after {
  right: -48px;
  bottom: -62px;
  width: 150px;
  height: 150px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.blog-mini-preview span,
.blog-mini-preview strong {
  position: relative;
  z-index: 1;
}

.blog-mini-preview span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.blog-mini-preview strong {
  align-self: end;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(44px, 4.4vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.8;
  text-transform: uppercase;
}

.blog-mini-card-blue .blog-mini-preview {
  background: linear-gradient(135deg, #075dff 0%, #0047da 56%, #002462 100%);
}

.blog-mini-card-coral .blog-mini-preview {
  background: linear-gradient(135deg, #ff3b12 0%, #ff8a1f 54%, #2a0802 100%);
}

.blog-mini-card-dark .blog-mini-preview {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 138, 31, 0.42), transparent 26%),
    linear-gradient(135deg, #19191b 0%, #050505 60%, #160806 100%);
}

.blog-mini-card-lime .blog-mini-preview {
  background: linear-gradient(135deg, #00bd46 0%, #008f35 54%, #033916 100%);
}

.blog-mini-card-violet .blog-mini-preview {
  background: linear-gradient(135deg, #3722ff 0%, #27147a 55%, #080611 100%);
}

.blog-mini-card-amber .blog-mini-preview {
  background: linear-gradient(135deg, #ffb21f 0%, #ff5a12 56%, #220800 100%);
}

.blog-mini-body {
  display: grid;
  gap: 10px;
  align-content: start;
  min-height: 0;
}

.blog-mini-body small {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  text-transform: uppercase;
}

.blog-mini-body strong {
  display: block;
  color: var(--text);
  font-size: clamp(20px, 1.55vw, 26px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.1;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--blog-title-lines);
  overflow: hidden;
}

.blog-list-card:hover .blog-mini-preview,
.blog-list-card:focus-visible .blog-mini-preview {
  border-color: rgba(255, 255, 255, 0.32);
  filter: saturate(1.08) brightness(1.04);
}

.blog-list-card:hover .blog-mini-body strong,
.blog-list-card:focus-visible .blog-mini-body strong {
  color: var(--white);
}

.blog-mini-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.36;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: var(--blog-copy-lines);
  overflow: hidden;
}

.blog-more-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 1fr;
  gap: 26px;
  margin-top: 26px;
}

.blog-more-card {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto 1fr;
  gap: 16px;
  align-items: stretch;
  height: 100%;
  padding-top: 0;
  border-top: 0;
  transition:
    border-color 220ms ease,
    color 220ms ease;
}

.blog-more-card:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.blog-more-preview {
  min-height: 190px;
}

.blog-more-preview strong {
  font-size: clamp(44px, 4.4vw, 72px);
}

.blog-more-card:hover,
.blog-more-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
}

.blog-more-card:hover .blog-mini-preview,
.blog-more-card:focus-visible .blog-mini-preview {
  border-color: rgba(255, 255, 255, 0.32);
  filter: saturate(1.08) brightness(1.04);
}

.blog-more-card:hover .blog-mini-body strong,
.blog-more-card:focus-visible .blog-mini-body strong {
  color: var(--white);
}

.blog-page.is-list-view {
  gap: 28px;
}

.blog-page.is-list-view .blog-featured-block,
.blog-page.is-list-view .blog-latest-block {
  gap: 16px;
}

.blog-page.is-list-view .news-layout,
.blog-page.is-list-view .news-feed-column,
.blog-page.is-list-view .news-rail,
.blog-page.is-list-view .blog-latest,
.blog-page.is-list-view .blog-more-list {
  grid-template-columns: 1fr;
  grid-template-rows: none;
  gap: 0;
}

.blog-page.is-list-view .news-featured-column,
.blog-page.is-list-view .news-feed-column {
  grid-column: auto;
}

.blog-page.is-list-view .news-featured-column {
  position: static;
  top: auto;
}

.blog-page.is-list-view .news-main-card {
  position: static;
  top: auto;
}

.blog-page.is-list-view .blog-latest,
.blog-page.is-list-view .blog-more-list {
  margin-top: 0;
}

.blog-page.is-list-view .news-card-link,
.blog-page.is-list-view .news-rail-link,
.blog-page.is-list-view .blog-list-card,
.blog-page.is-list-view .blog-more-card {
  display: grid;
  grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
  grid-template-rows: none;
  gap: 22px;
  align-items: center;
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  transform: none;
}

.blog-page.is-list-view .blog-more-card {
  padding-top: 22px;
}

.blog-page.is-list-view .blog-more-card:last-child {
  padding-bottom: 22px;
  border-bottom: 1px solid var(--line-soft);
}

.blog-page.is-list-view .news-main-preview,
.blog-page.is-list-view .news-rail-preview,
.blog-page.is-list-view .blog-mini-preview,
.blog-page.is-list-view .blog-more-preview {
  min-height: 156px;
  padding: 18px;
}

.blog-page.is-list-view .news-main-preview strong {
  font-size: clamp(42px, 5vw, 66px);
}

.blog-page.is-list-view .news-rail-preview strong,
.blog-page.is-list-view .blog-mini-preview strong,
.blog-page.is-list-view .blog-more-preview strong {
  font-size: clamp(34px, 3.4vw, 52px);
}

.blog-page.is-list-view .news-card-body,
.blog-page.is-list-view .blog-mini-body {
  gap: 8px;
}

.blog-page.is-list-view .news-card-body h3,
.blog-page.is-list-view .news-rail-card .news-card-body h3,
.blog-page.is-list-view .blog-mini-body strong {
  max-width: 820px;
  font-size: clamp(24px, 2.1vw, 30px);
  line-height: 1.08;
}

.blog-page.is-list-view .news-card-body span,
.blog-page.is-list-view .blog-mini-body p {
  max-width: 880px;
  font-size: 17px;
  line-height: 1.38;
}

.blog-page.is-list-view .news-card-link:hover,
.blog-page.is-list-view .news-card-link:focus-visible,
.blog-page.is-list-view .news-rail-link:hover,
.blog-page.is-list-view .news-rail-link:focus-visible,
.blog-page.is-list-view .blog-list-card:hover,
.blog-page.is-list-view .blog-list-card:focus-visible,
.blog-page.is-list-view .blog-more-card:hover,
.blog-page.is-list-view .blog-more-card:focus-visible {
  border-color: rgba(255, 255, 255, 0.22);
}

.products-main {
  min-height: 100vh;
}

.products-page {
  display: grid;
  gap: clamp(44px, 6vw, 72px);
  padding-top: clamp(86px, 7vw, 108px);
}

.products-head {
  display: grid;
  gap: 18px;
  max-width: 820px;
}

.products-head .eyebrow {
  margin: 0;
}

.products-head h1 {
  max-width: none;
  margin: 0;
  color: var(--white);
  font-size: clamp(54px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.92;
}

.products-head p {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.5vw, 22px);
  font-weight: 350;
  line-height: 1.38;
}

.products-layout {
  display: grid;
  grid-template-columns: minmax(180px, 230px) minmax(0, 1fr);
  gap: clamp(30px, 4vw, 58px);
  align-items: start;
}

.product-filter-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 18px;
  align-self: start;
}

.product-filter-panel h2 {
  margin: 0;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 650;
  line-height: 1;
}

.product-filter-list {
  display: grid;
  gap: 8px;
}

.product-filter-list button {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 40px;
  padding: 0 15px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  cursor: pointer;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 15px;
  font-weight: 650;
  line-height: 1.12;
  text-align: left;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.product-filter-list button::after {
  display: none;
}

.product-filter-list button:hover,
.product-filter-list button:focus-visible,
.product-filter-list button.is-active {
  border-color: rgba(255, 255, 255, 0.82);
  background: #f4f4f4;
  color: #050505;
}

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

.folder-card {
  min-width: 0;
}

.folder-card a {
  display: grid;
  grid-template-rows: auto 1fr;
  min-height: 420px;
  color: inherit;
  text-decoration: none;
}

.folder-cover {
  position: relative;
  display: grid;
  align-content: start;
  gap: 42px;
  min-height: 176px;
  padding: 20px 22px 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #111;
}

.folder-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 1px, transparent 1px);
  background-size: 18px 18px;
}

.folder-cover::after {
  content: "";
  position: absolute;
  right: -44px;
  bottom: -58px;
  width: 138px;
  height: 138px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.folder-cover span,
.folder-cover strong {
  position: relative;
  z-index: 1;
}

.folder-cover span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.folder-cover strong {
  align-self: start;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 3.6vw, 62px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.folder-body {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: space-between;
  gap: 28px;
  min-height: 286px;
  margin-top: -42px;
  padding: 30px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0 8px 8px 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #151516;
  transition:
    border-color 240ms ease,
    background 240ms ease,
    transform 260ms var(--ease-smooth);
}

.folder-body::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 46%;
  height: 42px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  border-right: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0 8px 0 0;
  background: #151516;
  transform: translateY(-100%);
}

.folder-index {
  display: block;
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.folder-body h2 {
  max-width: 340px;
  margin: 0 0 14px;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(22px, 1.8vw, 28px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.05;
}

.folder-body p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.38;
}

.folder-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.folder-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  text-transform: uppercase;
}

.folder-card a:hover .folder-body,
.folder-card a:focus-visible .folder-body,
.folder-card a:hover .folder-cover,
.folder-card a:focus-visible .folder-cover {
  border-color: rgba(255, 255, 255, 0.28);
}

.folder-card a:hover .folder-body,
.folder-card a:focus-visible .folder-body {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    #181819;
}

.folder-card-blue .folder-cover {
  background: linear-gradient(135deg, #075dff 0%, #0047da 56%, #002462 100%);
}

.folder-card-green .folder-cover {
  background: linear-gradient(135deg, #00bd46 0%, #008f35 54%, #033916 100%);
}

.folder-card-violet .folder-cover {
  background: linear-gradient(135deg, #3722ff 0%, #27147a 55%, #080611 100%);
}

.folder-card-orange .folder-cover {
  background: linear-gradient(135deg, #ff3b12 0%, #ff8a1f 54%, #2a0802 100%);
}

.folder-card-dark .folder-cover {
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 138, 31, 0.42), transparent 26%),
    linear-gradient(135deg, #19191b 0%, #050505 60%, #160806 100%);
}

.portfolio-page {
  display: grid;
  grid-template-columns: minmax(190px, 240px) minmax(0, 1fr);
  gap: clamp(32px, 4.4vw, 64px);
  align-items: start;
  padding-top: clamp(86px, 7vw, 108px);
}

.case-filter-panel {
  position: sticky;
  top: 112px;
  display: grid;
  gap: 12px;
  align-self: start;
}

.case-filter-panel h1 {
  margin: 0 0 10px;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(42px, 5vw, 64px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.88;
}

.case-filter-panel p {
  max-width: 230px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.34;
}

.case-filter-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}

.product-search {
  width: 100%;
  margin-bottom: 4px;
}

.case-filter-list button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-width: 0;
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid var(--line-soft);
  border-radius: 15px;
  background: rgba(255, 255, 255, 0.045);
  color: var(--muted);
  cursor: pointer;
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.case-filter-list button::after {
  content: none;
}

.case-filter-list button:hover,
.case-filter-list button:focus-visible,
.case-filter-list button.is-active {
  border-color: rgba(255, 255, 255, 0.82);
  background: #f4f4f4;
  color: #050505;
}

.case-card-grid {
  --case-card-height: 530px;
  --case-cover-height: 146px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: var(--case-card-height);
  gap: 26px;
  align-items: stretch;
}

.portfolio-card {
  display: grid;
  grid-template-rows: var(--case-cover-height) minmax(0, 1fr);
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.portfolio-card[data-detail-url] {
  cursor: pointer;
}

.portfolio-card[data-detail-url]:focus-visible {
  outline: 2px solid rgba(255, 255, 255, 0.72);
  outline-offset: 4px;
}

.portfolio-card[hidden] {
  display: none;
}

.case-cover {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 0;
  height: 100%;
  padding: 18px 20px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-bottom: 0;
  border-radius: 8px 8px 0 0;
  background: #111;
  transition:
    border-color 240ms ease,
    filter 260ms ease;
}

.case-cover::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(270deg, rgba(8, 8, 11, 0.4) 0%, rgba(8, 8, 11, 0.18) 14%, rgba(8, 8, 11, 0) 34%),
    linear-gradient(rgba(0, 0, 0, 0.16) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.16) 1px, transparent 1px);
  background-size: auto, 18px 18px, 18px 18px;
  pointer-events: none;
}

.case-cover::after {
  content: "";
  position: absolute;
  right: -52px;
  bottom: -66px;
  width: 152px;
  height: 152px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.case-cover span,
.case-cover strong {
  position: relative;
  z-index: 1;
}

.case-cover span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.case-cover strong {
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(38px, 3.2vw, 56px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.82;
  text-transform: uppercase;
}

.case-body {
  display: flex;
  flex-direction: column;
  gap: 11px;
  min-height: 0;
  height: 100%;
  padding: 18px 20px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 0 0 8px 8px;
  background:
    linear-gradient(270deg, rgba(7, 7, 9, 0.26) 0%, rgba(7, 7, 9, 0.08) 14%, rgba(7, 7, 9, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #151516;
  transition:
    border-color 240ms ease,
    background 240ms ease;
}

.case-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-width: 0;
}

.case-index {
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.case-status {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  min-height: 26px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.case-demo-link {
  position: relative;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  flex: 0 0 auto;
  min-height: 34px;
  margin-top: auto;
  padding: 0 13px;
  border: 1px solid rgba(255, 255, 255, 0.88);
  border-radius: 999px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(232, 232, 232, 0.96));
  color: #050505;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
  box-shadow:
    0 12px 24px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.74);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    background 200ms ease,
    box-shadow 200ms ease;
}

.case-demo-link + .case-tags {
  margin-top: 0;
}

.case-demo-link::after {
  content: "↗";
  margin-left: 7px;
  font-size: 12px;
  line-height: 1;
}

.case-demo-link:hover,
.case-demo-link:focus-visible {
  border-color: var(--white);
  background: var(--white);
  color: #050505;
  transform: translateY(-1px);
  box-shadow:
    0 16px 34px rgba(0, 0, 0, 0.3),
    0 0 0 4px rgba(255, 255, 255, 0.08);
}

.case-body h2 {
  margin: 0;
  color: var(--white);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(21px, 1.5vw, 25px);
  font-weight: 650;
  letter-spacing: 0;
  line-height: 1.04;
}

.case-body p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.38;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: auto;
}

.case-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 23px;
  padding: 0 8px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  text-transform: uppercase;
}

.case-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  min-height: 36px;
  margin-top: 2px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 999px;
  color: var(--text);
  width: auto;
  max-width: 100%;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    background 220ms ease,
    color 220ms ease,
    border-color 220ms ease;
}

.case-link:hover,
.case-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.82);
  background: #f4f4f4;
  color: #050505;
}

.portfolio-card:hover .case-cover,
.portfolio-card:focus-within .case-cover,
.portfolio-card:hover .case-body,
.portfolio-card:focus-within .case-body {
  border-color: rgba(255, 255, 255, 0.26);
}

.portfolio-card:hover .case-body,
.portfolio-card:focus-within .case-body {
  background:
    linear-gradient(270deg, rgba(8, 8, 11, 0.3) 0%, rgba(8, 8, 11, 0.1) 14%, rgba(8, 8, 11, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.026)),
    #181819;
}

.portfolio-card:hover .case-cover,
.portfolio-card:focus-within .case-cover {
  filter: saturate(1.06) brightness(1.04);
}

.portfolio-card[data-portfolio-state="soon"] {
  position: relative;
  cursor: default;
}

.portfolio-card[data-portfolio-state="soon"]::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(6, 6, 8, 0.28), rgba(6, 6, 8, 0.52)),
    radial-gradient(circle at 50% 42%, rgba(10, 10, 14, 0.14), rgba(10, 10, 14, 0.04) 28%, transparent 56%);
  backdrop-filter: blur(8px);
  pointer-events: none;
}

.portfolio-card[data-portfolio-state="soon"]::after {
  content: attr(data-progress-note);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 3;
  display: flex;
  align-items: center;
  width: min(calc(100% - 56px), 296px);
  min-height: 52px;
  padding: 0 16px 0 50px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background:
    linear-gradient(180deg, rgba(19, 20, 24, 0.88), rgba(11, 12, 16, 0.92));
  backdrop-filter: blur(18px);
  color: rgba(255, 255, 255, 0.95);
  font-size: 12px;
  font-weight: 650;
  line-height: 1.2;
  text-align: left;
  transform: translate(-50%, -50%);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M7 11V8a5 5 0 0 1 10 0v3'/%3E%3Crect x='5' y='11' width='14' height='10' rx='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: 18px center;
  background-size: 18px 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.24);
  pointer-events: none;
}

.portfolio-card[data-portfolio-state="soon"] .case-cover,
.portfolio-card[data-portfolio-state="soon"] .case-body,
.portfolio-card[data-portfolio-state="soon"]:hover .case-cover,
.portfolio-card[data-portfolio-state="soon"]:focus-within .case-cover,
.portfolio-card[data-portfolio-state="soon"]:hover .case-body,
.portfolio-card[data-portfolio-state="soon"]:focus-within .case-body {
  border-color: rgba(255, 255, 255, 0.09);
  filter: saturate(0.7) brightness(0.86);
}

.portfolio-card[data-portfolio-state="soon"] .case-body,
.portfolio-card[data-portfolio-state="soon"]:hover .case-body,
.portfolio-card[data-portfolio-state="soon"]:focus-within .case-body {
  background:
    linear-gradient(270deg, rgba(7, 7, 9, 0.28) 0%, rgba(7, 7, 9, 0.12) 14%, rgba(7, 7, 9, 0) 30%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.014)),
    #121213;
}

.portfolio-card[data-portfolio-state="soon"] .case-cover > *,
.portfolio-card[data-portfolio-state="soon"] .case-body > * {
  filter: blur(5px);
  opacity: 0.28;
  user-select: none;
}

.portfolio-card[data-portfolio-state="soon"] a {
  pointer-events: none;
}

.case-card-coral .case-cover {
  background: linear-gradient(135deg, #ff3b1f 0%, #ff9b24 54%, #351006 100%);
}

.case-card-blue .case-cover {
  background: linear-gradient(135deg, #2d7dff 0%, #0047da 56%, #001a54 100%);
}

.case-card-amber .case-cover {
  background: linear-gradient(135deg, #ff4b5c 0%, #b3122d 56%, #2b040b 100%);
}

.case-card-slate .case-cover {
  background: linear-gradient(135deg, #ff3d8f 0%, #b81462 56%, #260617 100%);
}

.case-card-green .case-cover {
  background: linear-gradient(135deg, #10d68b 0%, #008b5b 54%, #03251b 100%);
}

.case-card-violet .case-cover {
  background: linear-gradient(135deg, #b000ff 0%, #7200ff 56%, #21002f 100%);
}

.case-card-coral .case-cover-visual,
.case-card-blue .case-cover-visual,
.case-card-amber .case-cover-visual,
.case-card-slate .case-cover-visual,
.case-card-green .case-cover-visual,
.case-card-violet .case-cover-visual {
  padding: 0;
  background: #08090b;
}

.case-cover-visual.has-cover-copy {
  padding: 18px 22px 16px;
}

.case-cover-visual::before {
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.04) 0%, rgba(5, 5, 6, 0.42) 100%),
    linear-gradient(270deg, rgba(5, 5, 6, 0.44) 0%, rgba(5, 5, 6, 0.08) 42%, rgba(5, 5, 6, 0.24) 100%);
  background-size: auto;
}

.case-cover-visual.has-cover-copy::before {
  background:
    linear-gradient(180deg, rgba(5, 5, 6, 0.56) 0%, rgba(5, 5, 6, 0.16) 44%, rgba(5, 5, 6, 0.7) 100%),
    linear-gradient(90deg, rgba(5, 5, 6, 0.58) 0%, rgba(5, 5, 6, 0.18) 48%, rgba(5, 5, 6, 0.46) 100%);
}

.case-cover-visual::after {
  display: none;
}

.case-cover-visual.has-cover-copy span,
.case-cover-visual.has-cover-copy strong {
  text-shadow:
    0 2px 12px rgba(0, 0, 0, 0.62),
    0 0 34px rgba(0, 0, 0, 0.42);
}

.case-cover-visual.has-cover-copy span {
  color: rgba(255, 255, 255, 0.88);
  font-size: 12px;
  letter-spacing: 0.2em;
}

.case-cover-visual.has-cover-copy strong {
  max-width: 96%;
  font-size: clamp(38px, 3.2vw, 58px);
}

.case-cover-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
  filter: saturate(0.96) contrast(1.04);
  transition:
    filter 260ms ease,
    transform 320ms var(--ease-smooth);
}

.portfolio-card:hover .case-cover-image,
.portfolio-card:focus-within .case-cover-image {
  transform: scale(1.045);
  filter: saturate(1.05) contrast(1.08);
}

.product-detail-main {
  min-height: 100vh;
}

.product-detail-hero,
.detail-facts,
.detail-section,
.detail-workflow,
.security-band,
.detail-cta {
  width: min(100% - var(--page-gutter), var(--page-max));
  margin: 0 auto;
}

.product-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 0.82fr);
  gap: clamp(44px, 7vw, 110px);
  align-items: center;
  min-height: min(820px, 100vh);
  padding-top: clamp(98px, 8vw, 124px);
}

.detail-hero-copy {
  display: grid;
  align-content: center;
  justify-items: start;
}

.detail-back {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin-bottom: clamp(22px, 3vw, 34px);
  padding: 0 13px;
  border: 1px solid var(--line-soft);
  border-radius: 999px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease;
}

.detail-back:hover,
.detail-back:focus-visible {
  border-color: rgba(255, 255, 255, 0.72);
  background: #f4f4f4;
  color: #050505;
}

.detail-kicker {
  margin: 0 0 16px;
  color: var(--quiet);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.detail-hero-copy h1 {
  max-width: 780px;
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(56px, 6.2vw, 100px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.86;
  text-transform: uppercase;
  overflow-wrap: anywhere;
}

.detail-lead {
  max-width: 680px;
  margin: clamp(26px, 4vw, 44px) 0 0;
  color: var(--muted);
  font-size: clamp(21px, 2vw, 28px);
  font-weight: 350;
  line-height: 1.32;
}

.detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: clamp(34px, 4.8vw, 56px);
}

.detail-hero-visual {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: clamp(480px, 48vw, 660px);
  padding: clamp(22px, 3vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 138, 31, 0.34), transparent 24%),
    linear-gradient(135deg, rgba(255, 47, 31, 0.96) 0%, rgba(255, 138, 31, 0.8) 42%, rgba(13, 13, 14, 0.96) 100%);
  box-shadow: 0 28px 90px rgba(255, 58, 18, 0.08);
}

.detail-hero-visual::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 20px 20px;
}

.detail-hero-visual::after {
  content: "";
  position: absolute;
  right: -100px;
  bottom: -120px;
  width: 330px;
  height: 330px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 50%;
}

.solution-detail-visual {
  align-content: space-between;
}

.product-detail-main.is-tour-page .detail-hero-visual,
.product-detail-main.is-tour-page .workflow-gradient-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #ff5c2e 0%, #f0a22c 46%, #261006 100%);
  box-shadow: 0 28px 90px rgba(255, 105, 35, 0.08);
}

.product-detail-main.is-request-page .detail-hero-visual,
.product-detail-main.is-request-page .workflow-gradient-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #12c981 0%, #007d54 54%, #031c15 100%);
  box-shadow: 0 28px 90px rgba(18, 201, 129, 0.08);
}

.product-detail-main.is-nomenclature-page .detail-hero-visual,
.product-detail-main.is-nomenclature-page .workflow-gradient-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #4f76ff 0%, #0643d9 54%, #04102d 100%);
  box-shadow: 0 28px 90px rgba(55, 102, 255, 0.08);
}

.product-detail-main.is-drawing-page .detail-hero-visual,
.product-detail-main.is-drawing-page .workflow-gradient-card,
.product-detail-main.is-tender-page .detail-hero-visual,
.product-detail-main.is-tender-page .workflow-gradient-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #ff334e 0%, #b30f24 54%, #250308 100%);
  box-shadow: 0 28px 90px rgba(255, 40, 70, 0.08);
}

.product-detail-main.is-docs-page .detail-hero-visual,
.product-detail-main.is-docs-page .workflow-gradient-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #b000ff 0%, #7200ff 56%, #21002f 100%);
  box-shadow: 0 28px 90px rgba(150, 0, 255, 0.08);
}

.product-detail-main.is-line-page .detail-hero-visual,
.product-detail-main.is-line-page .workflow-gradient-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #00b86b 0%, #00784b 54%, #041c15 100%);
  box-shadow: 0 28px 90px rgba(0, 184, 107, 0.08);
}

.product-detail-main.is-shift-page .detail-hero-visual,
.product-detail-main.is-shift-page .workflow-gradient-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #4f76ff 0%, #153fbc 52%, #050b29 100%);
  box-shadow: 0 28px 90px rgba(55, 102, 255, 0.08);
}

.product-detail-main.is-hr-page .detail-hero-visual,
.product-detail-main.is-hr-page .workflow-gradient-card {
  background:
    radial-gradient(circle at 82% 24%, rgba(255, 255, 255, 0.2), transparent 24%),
    linear-gradient(135deg, #ff334e 0%, #b30f24 54%, #250308 100%);
  box-shadow: 0 28px 90px rgba(255, 40, 70, 0.08);
}

.solution-screenshot-visual {
  align-content: space-between;
}

.solution-demo-shot {
  position: relative;
  z-index: 1;
  align-self: end;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  background: rgba(7, 7, 8, 0.74);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.26);
}

.solution-demo-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
}

.doc-visual-header,
.doc-visual-grid {
  position: relative;
  z-index: 1;
}

.doc-visual-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.doc-visual-header span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-visual-header strong {
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(58px, 5.6vw, 92px);
  font-weight: 700;
  line-height: 0.86;
}

.doc-visual-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-self: end;
}

.doc-panel {
  min-height: 170px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.022)),
    rgba(12, 12, 13, 0.78);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.doc-panel-main {
  grid-column: 1 / -1;
  min-height: 220px;
}

.doc-panel span {
  display: block;
  margin-bottom: 18px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doc-panel strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(24px, 2vw, 32px);
  font-weight: 650;
  line-height: 1.05;
}

.doc-panel p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.38;
}

.detail-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.detail-facts article {
  min-height: 170px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012)),
    #0b0b0c;
}

.detail-facts span,
.workflow-steps span {
  display: block;
  margin-bottom: 22px;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.detail-facts strong {
  display: block;
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(22px, 2vw, 30px);
  font-weight: 650;
  line-height: 1;
}

.detail-facts p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  font-weight: 350;
  line-height: 1.34;
}

.detail-section,
.detail-workflow,
.security-band,
.detail-cta {
  padding-top: clamp(96px, 12vw, 152px);
}

.detail-section-head {
  display: grid;
  gap: 20px;
  max-width: 920px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.detail-section-head h2,
.workflow-copy h2,
.security-band h2,
.detail-cta h2 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(46px, 6.8vw, 92px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.94;
}

.capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.capability-grid article {
  min-height: 300px;
  padding: clamp(24px, 3vw, 36px);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #0d0d0e;
}

.capability-grid span {
  display: block;
  margin-bottom: clamp(60px, 8vw, 110px);
  color: var(--quiet);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.capability-grid h3,
.security-list h3 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: clamp(23px, 2vw, 30px);
  font-weight: 650;
  line-height: 1.05;
}

.capability-grid p,
.security-list p,
.workflow-steps p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  font-weight: 350;
  line-height: 1.42;
}

.detail-workflow {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) minmax(0, 0.86fr);
  gap: clamp(32px, 5vw, 72px);
  align-items: stretch;
}

.workflow-visual {
  min-height: 560px;
}

.workflow-gradient-card {
  position: sticky;
  top: 112px;
  display: grid;
  align-content: space-between;
  min-height: 560px;
  padding: clamp(24px, 3vw, 36px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 74% 20%, rgba(255, 255, 255, 0.18), transparent 24%),
    linear-gradient(135deg, #ff2f1f 0%, #ff8a1f 52%, #190604 100%);
}

.workflow-gradient-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.2) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.2) 1px, transparent 1px);
  background-size: 20px 20px;
}

.workflow-gradient-card span,
.workflow-gradient-card strong {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.workflow-gradient-card span {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.18em;
}

.workflow-gradient-card strong {
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(72px, 9vw, 132px);
  font-weight: 700;
  line-height: 0.82;
}

.workflow-copy {
  display: grid;
  align-content: center;
}

.workflow-steps {
  display: grid;
  gap: 1px;
  margin-top: clamp(34px, 5vw, 58px);
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.workflow-steps article {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 20px;
  padding: 24px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.014)),
    #0d0d0e;
}

.interface-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.22fr) minmax(0, 0.78fr);
  gap: 22px;
}

.interface-card {
  position: relative;
  display: grid;
  align-content: space-between;
  min-height: 300px;
  padding: 26px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background:
    radial-gradient(circle at 84% 28%, rgba(255, 138, 31, 0.34), transparent 28%),
    linear-gradient(135deg, #161618 0%, #070707 58%, #260a03 100%);
}

.interface-card-wide {
  grid-row: span 2;
  min-height: 622px;
  background:
    radial-gradient(circle at 74% 26%, rgba(255, 255, 255, 0.16), transparent 26%),
    linear-gradient(135deg, #ff2f1f 0%, #ff8a1f 50%, #150604 100%);
}

.interface-card::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(0, 0, 0, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 0, 0, 0.22) 1px, transparent 1px);
  background-size: 18px 18px;
}

.interface-card span,
.interface-card strong {
  position: relative;
  z-index: 1;
  color: var(--white);
}

.interface-card span {
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.interface-card strong {
  align-self: end;
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(44px, 5vw, 78px);
  font-weight: 700;
  line-height: 0.84;
  text-transform: uppercase;
}

.security-band {
  display: grid;
  grid-template-columns: minmax(280px, 0.58fr) minmax(0, 0.78fr);
  gap: clamp(34px, 6vw, 86px);
}

.security-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 8px;
  background: var(--line-soft);
}

.security-list article {
  padding: 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #0d0d0e;
}

.detail-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  padding-bottom: clamp(90px, 11vw, 150px);
}

.detail-cta h2 {
  max-width: 880px;
}

.cta-section {
  position: relative;
  margin-top: var(--section-stack-gap);
  padding: 0;
  background: transparent;
  overflow: visible;
}

.cta-surface {
  position: relative;
  display: grid;
  justify-items: center;
  gap: clamp(24px, 3vw, 34px);
  padding: clamp(40px, 6vw, 72px) clamp(28px, 5vw, 64px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 36px;
  background:
    radial-gradient(circle at 20% 76%, rgba(255, 118, 79, 0.3), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(71, 122, 255, 0.2), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.9), rgba(244, 239, 235, 0.96) 58%, rgba(235, 232, 230, 0.94) 100%);
  color: #050505;
  text-align: center;
  box-shadow:
    0 32px 80px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

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

.cta-surface::before {
  inset: 0;
  opacity: 0.36;
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.05) 1px, transparent 1px);
  background-size: 26px 26px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.62), transparent 88%);
}

.cta-surface::after {
  right: -120px;
  bottom: -120px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(5, 5, 5, 0.08);
  border-radius: 50%;
  box-shadow:
    0 0 0 42px rgba(255, 255, 255, 0.16),
    0 0 0 96px rgba(255, 255, 255, 0.08);
}

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

.cta-copy {
  display: grid;
  justify-items: center;
  gap: 18px;
}

.cta-copy h2 {
  max-width: 1040px;
  margin: 0;
  color: #050505;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.95;
}

.cta-copy p {
  max-width: 760px;
  margin: 0;
  color: rgba(5, 5, 5, 0.66);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 350;
  line-height: 1.4;
}

.cta-actions {
  justify-content: center;
  justify-self: center;
}

.cta-section .primary-action.light {
  min-width: clamp(248px, 24vw, 320px);
  height: 56px;
  border-color: #050505;
  border-radius: 999px;
  background: #050505;
  color: var(--white);
  font-size: 18px;
  font-weight: 650;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.14);
}

.cta-section .primary-action.light:hover,
.cta-section .primary-action.light:focus-visible {
  background: var(--white);
  color: #050505;
  border-color: #050505;
}

.compliance-section {
  display: grid;
  gap: clamp(26px, 3vw, 38px);
  margin-top: clamp(50px, 6vw, 78px);
  padding: clamp(34px, 5vw, 58px) 0 clamp(28px, 4vw, 46px);
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}

.compliance-head {
  display: grid;
  gap: 14px;
  max-width: 780px;
}

.compliance-head .eyebrow {
  margin: 0;
}

.compliance-head h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 500;
  letter-spacing: 0;
  line-height: 0.98;
}

.compliance-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr) minmax(360px, 1.32fr);
  gap: 14px;
  align-items: stretch;
}

.compliance-grid article {
  display: grid;
  align-content: start;
  gap: 18px;
  min-height: 100%;
  padding: clamp(20px, 2.2vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
}

.compliance-grid span {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.compliance-grid p,
.compliance-legal dd,
.compliance-legal a {
  color: var(--muted);
  font-size: clamp(15px, 1.18vw, 17px);
  font-weight: 350;
  line-height: 1.48;
}

.compliance-grid p {
  margin: 0;
}

.price-list {
  display: grid;
  gap: 16px;
}

.price-list > div {
  display: grid;
  gap: 8px;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-list > div:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.price-list small {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  line-height: 1.15;
  text-transform: uppercase;
}

.price-list strong {
  display: block;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(32px, 2.55vw, 40px);
  font-weight: 600;
  letter-spacing: 0;
  line-height: 0.98;
  white-space: nowrap;
}

.price-list strong em {
  display: inline-block;
  color: rgba(255, 255, 255, 0.72);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 0.46em;
  font-style: normal;
  font-weight: 700;
  line-height: 1;
  vertical-align: baseline;
}

.compliance-price p {
  max-width: 36ch;
}

.tech-stack-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.tech-stack-list > div {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr);
  gap: 8px 12px;
  align-content: start;
  min-height: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 8px;
  background:
    radial-gradient(circle at 85% 12%, rgba(255, 255, 255, 0.07), transparent 34%),
    rgba(255, 255, 255, 0.03);
}

.tech-stack-list i {
  display: inline-grid;
  grid-row: span 2;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.045);
  color: rgba(255, 255, 255, 0.82);
  font-style: normal;
}

.tech-stack-list svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.tech-stack-list strong {
  align-self: center;
  color: var(--white);
  font-size: 17px;
  font-weight: 650;
  line-height: 1.14;
}

.tech-stack-list p {
  grid-column: 2;
  max-width: none;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.38;
}

.compliance-legal dl {
  display: grid;
  gap: 14px;
  margin: 0;
}

.compliance-legal dl > div {
  display: grid;
  grid-template-columns: minmax(136px, 0.44fr) minmax(0, 1fr);
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.07);
}

.compliance-legal dl > div:first-child {
  padding-top: 0;
  border-top: 0;
}

.compliance-legal dt {
  color: rgba(255, 255, 255, 0.48);
  font-size: 13px;
  font-weight: 550;
  line-height: 1.35;
}

.compliance-legal dd {
  margin: 0;
}

.compliance-legal a {
  text-decoration: none;
}

.compliance-legal a:hover,
.compliance-legal a:focus-visible {
  color: var(--white);
}

.redirect-page {
  display: grid;
  min-height: 100vh;
  place-items: center;
  background: var(--black);
}

.redirect-page a {
  color: var(--white);
  font-size: 20px;
  text-decoration: none;
}

.prototype-main {
  width: min(100% - var(--page-gutter), var(--page-max));
  margin: 0 auto;
  padding-top: clamp(140px, 13vw, 210px);
}

.contacts-main {
  padding-top: clamp(118px, 10vw, 152px);
}

.prototype-hero {
  display: grid;
  justify-items: start;
  max-width: 980px;
  gap: clamp(18px, 2.4vw, 28px);
  margin-bottom: clamp(48px, 8vw, 96px);
}

.prototype-hero h1 {
  max-width: 980px;
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(64px, 8.2vw, 126px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.88;
  text-transform: uppercase;
}

.prototype-hero p:not(.eyebrow) {
  max-width: 760px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(21px, 2vw, 29px);
  font-weight: 350;
  line-height: 1.34;
}

.case-story-grid,
.contacts-layout {
  display: grid;
  gap: clamp(18px, 2vw, 24px);
}

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

.contacts-layout {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.prototype-card,
.contact-card {
  position: relative;
  overflow: hidden;
  min-height: clamp(320px, 28vw, 392px);
  padding: clamp(26px, 3vw, 34px);
  border: 1px solid var(--line-soft);
  border-radius: 24px;
  background:
    radial-gradient(circle at 84% 12%, rgba(255, 120, 28, 0.13), transparent 30%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025));
}

.prototype-card.is-large {
  grid-column: span 2;
}

.prototype-card span,
.contact-card span {
  display: inline-flex;
  margin-bottom: clamp(18px, 2vw, 24px);
  color: var(--quiet);
  font-size: 14px;
  font-weight: 750;
  letter-spacing: 0.12em;
  line-height: 1;
  text-transform: uppercase;
}

.prototype-card h2,
.contact-card h2,
.prototype-strip h2 {
  max-width: 720px;
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(34px, 4.8vw, 72px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 0.95;
}

.prototype-card p,
.contact-card p,
.prototype-strip p {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 19px;
  font-weight: 350;
  line-height: 1.45;
}

.prototype-strip {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-top: 18px;
  padding: clamp(30px, 5vw, 52px);
  border: 1px solid var(--line-soft);
  border-radius: 18px;
  background:
    linear-gradient(135deg, rgba(255, 47, 31, 0.16), rgba(255, 138, 31, 0.08) 42%, rgba(255, 255, 255, 0.04));
}

.contact-card {
  display: grid;
  grid-template-rows: auto auto auto 1fr auto;
  align-content: start;
}

.contact-card h2 {
  max-width: none;
  font-size: clamp(32px, 2.8vw, 46px);
  line-height: 0.98;
}

.contact-card p {
  max-width: 32ch;
  font-size: 18px;
}

.contact-card-icon {
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin-bottom: clamp(24px, 2.6vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    radial-gradient(circle at 28% 24%, rgba(255, 255, 255, 0.14), transparent 34%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 16px 32px rgba(0, 0, 0, 0.18);
}

.contact-card-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-link {
  align-self: end;
  margin-top: clamp(26px, 3vw, 38px);
  color: var(--white);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 650;
  line-height: 1.08;
  text-decoration: none;
  overflow-wrap: anywhere;
  transition: color 220ms ease, transform 220ms ease;
}

.contact-link--email {
  font-size: clamp(20px, 1.72vw, 30px);
  letter-spacing: -0.02em;
  word-break: break-word;
}

.contact-link:hover,
.contact-link:focus-visible {
  color: var(--heat-light);
  transform: translateY(-1px);
}

.contact-telegram-card {
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.28), transparent 26%),
    radial-gradient(circle at 84% 82%, rgba(10, 102, 255, 0.14), transparent 26%),
    linear-gradient(135deg, #fff4eb 0%, #ffd8bf 26%, #fff7ef 54%, #dfe8ff 100%);
  border-color: rgba(255, 255, 255, 0.32);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.42),
    0 26px 54px rgba(0, 0, 0, 0.2);
}

.contact-telegram-card span,
.contact-telegram-card h2,
.contact-telegram-card p {
  color: #050505;
}

.contact-telegram-card .contact-card-icon {
  border-color: rgba(0, 0, 0, 0.1);
  background:
    radial-gradient(circle at 30% 26%, rgba(255, 255, 255, 0.56), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.42), rgba(255, 255, 255, 0.08));
  color: #050505;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.52),
    0 18px 36px rgba(0, 0, 0, 0.1);
}

.contact-telegram-card .secondary-action {
  align-self: end;
  margin-top: clamp(26px, 3vw, 38px);
  border-color: #050505;
  background: #050505;
  color: var(--white);
  font-weight: 600;
}

.contact-telegram-card .secondary-action:hover,
.contact-telegram-card .secondary-action:focus-visible {
  border-color: #050505;
  background: rgba(5, 5, 5, 0.88);
  color: var(--white);
}

.site-footer {
  position: relative;
  width: 100%;
  margin-top: clamp(52px, 7vw, 88px);
  padding: clamp(12px, 2vw, 22px) 0 clamp(34px, 5vw, 58px);
  background: var(--black);
}

.footer-grid,
.footer-bottom {
  width: min(100% - var(--page-gutter), var(--page-max));
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(0, 0.72fr));
  gap: clamp(24px, 3vw, 38px);
  margin-top: clamp(6px, 1.2vw, 14px);
  padding: clamp(18px, 2.4vw, 28px) 0 0;
}

.footer-contact {
  display: grid;
  align-content: start;
  gap: 14px;
  min-height: 100%;
  padding-right: clamp(18px, 2vw, 28px);
  border-right: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-contact p,
.footer-contact a,
.footer-column a,
.footer-bottom p {
  color: rgba(255, 255, 255, 0.64);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.35;
  text-decoration: none;
}

.footer-contact p {
  max-width: 240px;
  margin: 0;
}

.footer-brand {
  display: inline-flex;
  width: clamp(92px, 7vw, 118px);
  margin-bottom: clamp(10px, 1vw, 14px);
  transition: opacity 220ms ease;
}

.footer-brand img {
  display: block;
  width: 100%;
  height: auto;
}

.footer-brand:hover,
.footer-brand:focus-visible {
  opacity: 0.88;
}

.footer-contact > a:not(.footer-brand) {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 4px;
  color: var(--white);
  font-size: clamp(20px, 1.9vw, 28px);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}

.footer-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 6px;
}

.footer-socials a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.025);
  color: rgba(255, 255, 255, 0.62);
  transition:
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    transform 220ms ease;
}

.footer-socials svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.footer-socials svg path:first-child {
  fill: currentColor;
  fill-opacity: 0.06;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 14px;
  padding-left: clamp(2px, 0.8vw, 10px);
}

.footer-column h2 {
  margin: 0 0 6px;
  color: rgba(255, 255, 255, 0.48);
  font-family: "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-column a {
  display: block;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-contact > a:not(.footer-brand) {
  display: inline-flex;
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact > a:not(.footer-brand):hover,
.footer-contact > a:not(.footer-brand):focus-visible,
.footer-socials a:hover,
.footer-socials a:focus-visible {
  color: var(--white);
}

.footer-socials a:hover,
.footer-socials a:focus-visible {
  border-color: rgba(255, 255, 255, 0.32);
  background: rgba(255, 255, 255, 0.06);
  transform: translateY(-1px);
}

.footer-column a:hover,
.footer-column a:focus-visible,
.footer-contact > a:not(.footer-brand):hover,
.footer-contact > a:not(.footer-brand):focus-visible {
  transform: translateX(2px);
}

.footer-bottom {
  display: grid;
  grid-template-columns: minmax(280px, 1.3fr) repeat(3, minmax(0, 0.72fr));
  align-items: center;
  gap: clamp(24px, 3vw, 38px);
  padding-top: clamp(20px, 3vw, 28px);
  margin-top: clamp(8px, 1.2vw, 14px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.02em;
  grid-column: 1 / 2;
}

@media (max-width: 1020px) {
  :root {
    --section-stack-gap: 72px;
  }

  .hero-section,
  .feature-band,
  .cta-section {
    grid-template-columns: 1fr;
  }

  .hero-section {
    height: auto;
    min-height: 100svh;
    margin-bottom: 96px;
    padding-top: 126px;
    padding-bottom: 70px;
  }

  .hero-copy {
    transform: none;
  }

  .hero-visual {
    height: auto;
    min-height: 380px;
  }

  .signal-core {
    width: clamp(330px, 60vw, 500px);
  }

  .product-grid,
  .timeline {
    grid-template-columns: repeat(2, 1fr);
  }

  .process-showcase {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .custom-build-section .process-showcase {
    min-height: auto;
    margin-top: 26px;
  }

  .custom-build-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 0;
  }

  .custom-build-section .section-heading.narrow h2 {
    transform: none;
  }

  .custom-build-note {
    justify-self: start;
    width: min(100%, 640px);
    margin-top: 0;
  }

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

  .custom-build-section .process-list {
    height: auto;
    gap: 10px;
    grid-template-rows: none;
  }

  .process-stage,
  .process-panel {
    min-height: 500px;
  }

  .custom-build-section .process-stage,
  .custom-build-section .process-panel {
    min-height: 324px;
  }

  .custom-build-section .process-card {
    min-height: 82px;
    padding: 13px 16px 13px 20px;
  }

  .custom-build-section .process-card span {
    font-size: 28px;
  }

  .custom-build-section .process-card strong {
    font-size: 21px;
    white-space: nowrap;
  }

  .custom-build-section .process-panel {
    grid-template-rows: 184px minmax(0, 1fr);
  }

  .custom-build-section .process-visual {
    min-height: 184px;
  }

  .custom-build-section .process-copy h3 {
    font-size: 24px;
  }

  .custom-build-section .process-copy p {
    font-size: 17px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-bottom: 18px;
  }

  .directions-head {
    max-width: 720px;
  }

  .directions-head h2 {
    margin-bottom: 0;
  }

  .home-projects-section {
    --case-card-height: 500px;
    gap: 24px;
    margin-top: var(--section-stack-gap);
  }

  .home-projects-track .portfolio-card {
    flex-basis: min(336px, calc(100vw - var(--page-gutter)));
  }

  .home-projects-more {
    flex-basis: 144px;
    min-height: 150px;
  }

  .news-preview-card {
    flex-basis: min(360px, calc(100vw - var(--page-gutter)));
  }

  .home-cases-head {
    align-items: start;
  }

  .home-cases-carousel {
    --home-case-card-width: min(920px, calc(100vw - var(--page-gutter)));
    gap: 16px;
  }

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

  .home-solutions-carousel .home-cases-nav {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .home-cases-tab {
    min-height: 70px;
    padding: 10px 18px 14px;
  }

  .home-cases-tab-title {
    font-size: 21px;
  }

  .home-case-slide {
    grid-template-columns: minmax(0, 0.8fr) minmax(280px, 0.9fr);
    min-height: 456px;
  }

  .home-case-slide--cover {
    grid-template-columns: minmax(0, 1fr);
  }

  .home-case-slide--cover .home-case-slide-content {
    max-width: min(50%, 520px);
  }

  .home-case-slide-content {
    max-width: none;
  }

  .home-case-slide-copy h3 {
    font-size: clamp(34px, 4.4vw, 48px);
  }

  .home-case-slide-copy p {
    font-size: 19px;
  }

  .home-case-slide-placeholder strong {
    font-size: clamp(28px, 3.4vw, 38px);
  }

  .home-reviews-head {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .home-reviews-head > p {
    justify-self: start;
    max-width: 660px;
  }

  .home-review-card {
    flex-basis: min(390px, calc(54vw - 18px));
    min-height: 340px;
  }

  .directions-mosaic {
    grid-template-rows: repeat(5, 108px);
    grid-template-columns: repeat(6, minmax(0, 1fr));
  }

  .direction-card:nth-child(1) {
    grid-column: 1 / span 3;
    grid-row: 1 / span 2;
  }

  .direction-card:nth-child(2) {
    grid-column: 4 / span 3;
    grid-row: 1;
  }

  .direction-card:nth-child(3) {
    grid-column: 4 / span 3;
    grid-row: 2;
  }

  .direction-card:nth-child(4) {
    grid-column: 1 / span 2;
    grid-row: 3;
  }

  .direction-card:nth-child(5) {
    grid-column: 3 / span 2;
    grid-row: 3;
  }

  .direction-card:nth-child(6) {
    grid-column: 1 / span 3;
    grid-row: 4 / span 2;
  }

  .direction-card:nth-child(7) {
    grid-column: 5 / span 2;
    grid-row: 3;
  }

  .direction-card:nth-child(8) {
    grid-column: 4 / span 3;
    grid-row: 4;
  }

  .direction-card:nth-child(9) {
    grid-column: 4 / span 3;
    grid-row: 5;
  }

  .direction-content strong {
    font-size: clamp(21px, 2.15vw, 28px);
  }

  .direction-card:nth-child(4) .direction-content span,
  .direction-card:nth-child(5) .direction-content span,
  .direction-card:nth-child(7) .direction-content span,
  .direction-card:nth-child(9) .direction-content span {
    font-size: 13px;
  }

  .direction-card:hover .direction-content span,
  .direction-card:focus-visible .direction-content span {
    max-height: 96px;
  }

  .direction-card:nth-child(4):hover .direction-content span,
  .direction-card:nth-child(4):focus-visible .direction-content span,
  .direction-card:nth-child(5):hover .direction-content span,
  .direction-card:nth-child(5):focus-visible .direction-content span,
  .direction-card:nth-child(7):hover .direction-content span,
  .direction-card:nth-child(7):focus-visible .direction-content span,
  .direction-card:nth-child(9):hover .direction-content span,
  .direction-card:nth-child(9):focus-visible .direction-content span {
    max-height: 72px;
  }

  .direction-card:nth-child(4),
  .direction-card:nth-child(5),
  .direction-card:nth-child(7),
  .direction-card:nth-child(9) {
    --direction-pad-x: 16px;
    --direction-pad-top: 16px;
    --direction-pad-bottom: 16px;
  }

  .direction-card:nth-child(4) .direction-icon,
  .direction-card:nth-child(5) .direction-icon,
  .direction-card:nth-child(7) .direction-icon,
  .direction-card:nth-child(9) .direction-icon {
    width: 34px;
    height: 34px;
  }

  .direction-card:nth-child(4) .direction-icon svg,
  .direction-card:nth-child(5) .direction-icon svg,
  .direction-card:nth-child(7) .direction-icon svg,
  .direction-card:nth-child(9) .direction-icon svg {
    width: 20px;
    height: 20px;
  }

  .cta-actions {
    align-self: start;
  }

  .case-browser {
    max-width: 680px;
  }

  .news-layout {
    grid-template-columns: 1fr;
  }

  .news-featured-column,
  .news-feed-column {
    grid-column: auto;
  }

  .news-featured-column {
    position: static;
    top: auto;
  }

  .news-rail {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .news-rail-link {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .products-layout {
    grid-template-columns: 1fr;
  }

  .portfolio-page {
    grid-template-columns: 1fr;
  }

  .product-filter-panel {
    position: static;
  }

  .case-filter-panel {
    position: static;
  }

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

  .case-filter-list {
    display: grid;
    grid-template-columns: 1fr;
  }

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

  .case-card-grid {
    --case-card-height: 550px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-hero,
  .detail-workflow,
  .security-band,
  .detail-cta {
    grid-template-columns: 1fr;
  }

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

  .workflow-gradient-card {
    position: relative;
    top: auto;
    min-height: 420px;
  }

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

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

  .footer-bottom p {
    grid-column: 1 / -1;
  }

  .footer-contact {
    grid-column: 1 / -1;
    padding-right: 0;
    padding-bottom: 22px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

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

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

  .compliance-legal {
    grid-column: 1 / -1;
  }

  .prototype-card.is-large {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .site-header {
    padding: 12px clamp(14px, 4vw, 28px) 10px;
  }

  .navbar {
    grid-template-columns: minmax(78px, 1fr) 52px minmax(120px, 1fr);
    height: 48px;
  }

  .brand {
    width: 82px;
    min-width: 82px;
  }

  .nav-center {
    display: none;
  }

  .project-button {
    min-width: 128px;
    height: 36px;
    padding: 0 16px;
    font-size: 12px;
  }

  .mobile-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(14px, 4vw, 28px);
    width: min(100%, 520px);
    margin: 10px auto 0;
    padding: 0 4px;
  }

  .hero-section,
  .intro-band,
  .directions-section,
  .home-projects-section,
  .info-strip,
  .section-block,
  .feature-band,
  .method-section,
  .insights-section,
  .blog-page,
  .products-page,
  .portfolio-page,
  .product-detail-hero,
  .detail-facts,
  .detail-section,
  .detail-workflow,
  .security-band,
  .detail-cta,
  .compliance-section,
  .cta-section {
    width: min(100% - var(--page-gutter-mobile), var(--page-max));
  }

  .footer-grid,
  .footer-bottom {
    width: min(100% - var(--page-gutter-mobile), var(--page-max));
  }

  .intro-band,
  .info-strip {
    grid-template-columns: 1fr;
  }

  .home-projects-section {
    --case-card-height: 520px;
    gap: 22px;
    margin-top: 64px;
  }

  .home-projects-head {
    align-items: center;
  }

  .home-cases-copy {
    gap: 0;
  }

  .home-cases-copy h2 {
    font-size: clamp(34px, 8vw, 48px);
  }

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

  .home-solutions-carousel .home-cases-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .home-cases-carousel {
    --home-case-card-width: min(760px, calc(100vw - var(--page-gutter-mobile)));
  }

  .home-cases-tab {
    min-height: 66px;
    padding: 10px 18px 14px;
  }

  .home-cases-tab-title {
    font-size: 19px;
  }

  .home-case-slide {
    grid-template-columns: 1fr;
    min-height: 0;
    border-radius: 24px;
  }

  .home-case-slide--cover .home-case-slide-content {
    max-width: none;
  }

  .home-case-slide-content {
    max-width: none;
    padding: 0;
  }

  .home-case-slide-copy h3 {
    font-size: clamp(30px, 6vw, 40px);
  }

  .home-case-slide-copy p {
    font-size: 18px;
    max-width: none;
  }

  .home-case-slide-placeholder {
    min-height: 248px;
  }

  .home-projects-copy h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .home-projects-controls {
    gap: 10px;
  }

  .home-projects-arrow {
    width: 46px;
    height: 46px;
  }

  .home-projects-track {
    gap: 20px;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }

  .home-projects-track .portfolio-card {
    flex-basis: min(332px, calc(100vw - var(--page-gutter-mobile)));
  }

  .home-projects-more {
    flex-basis: 142px;
    min-height: 148px;
  }

  .news-preview-copy h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .news-preview-controls {
    gap: 10px;
  }

  .news-preview-track {
    gap: 20px;
    padding-bottom: 10px;
    margin-bottom: -10px;
  }

  .news-preview-card {
    flex-basis: min(340px, calc(100vw - var(--page-gutter-mobile)));
  }

  .news-preview-card .blog-mini-preview {
    min-height: 204px;
  }

  .news-preview-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .blog-head {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .blog-tools {
    justify-content: flex-start;
    padding-bottom: 0;
  }

  .blog-page.is-list-view .news-card-link,
  .blog-page.is-list-view .news-rail-link,
  .blog-page.is-list-view .blog-list-card,
  .blog-page.is-list-view .blog-more-card {
    grid-template-columns: minmax(180px, 220px) minmax(0, 1fr);
    gap: 18px;
  }

  .blog-control-row {
    flex-direction: column;
    align-items: stretch;
  }

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

  .product-detail-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .detail-hero-visual {
    min-height: 430px;
  }

  .doc-visual-grid,
  .interface-grid {
    grid-template-columns: 1fr;
  }

  .interface-card-wide {
    grid-row: auto;
    min-height: 390px;
  }

  .news-rail {
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .news-rail-link {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
  }

  .blog-poster {
    min-height: clamp(260px, 54vw, 390px);
  }

  .blog-latest,
  .blog-more-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .blog-page {
    padding-top: 118px;
  }

  .info-strip {
    gap: 38px;
  }

  .decision-section {
    min-height: auto;
    padding: 42px 24px 34px;
  }

  .decision-head {
    display: block;
    max-width: none;
    margin: 0;
    text-align: left;
  }

  .decision-head p:not(.eyebrow) {
    margin-right: 0;
    margin-left: 0;
  }

  .decision-cards {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 38px;
  }

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

  .decision-conclusion {
    justify-content: flex-start;
    width: 100%;
    text-align: left;
  }

}

@media (max-width: 560px) {
  :root {
    --section-stack-gap: 56px;
  }

  .navbar {
    grid-template-columns: minmax(68px, 1fr) 48px minmax(112px, 1fr);
  }

  .brand {
    width: 70px;
    min-width: 70px;
  }

  .project-button {
    min-width: 112px;
    padding: 0 12px;
    font-size: 13px;
  }

  .mobile-links {
    justify-content: space-between;
    gap: 14px;
    justify-content: flex-start;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .mobile-links .nav-link {
    font-size: 12px;
  }

  .mobile-links::-webkit-scrollbar {
    display: none;
  }

  h1 {
    font-size: clamp(40px, 11.5vw, 56px);
  }

  .prototype-main {
    padding-top: 126px;
  }

  .prototype-hero h1 {
    font-size: clamp(46px, 15vw, 70px);
  }

  .prototype-hero p:not(.eyebrow),
  .prototype-card p,
  .contact-card p,
  .prototype-strip p {
    font-size: 17px;
  }

  .prototype-strip {
    display: grid;
    align-items: start;
  }

  .contacts-layout {
    grid-template-columns: 1fr;
  }

  .hero-lead,
  .feature-copy p,
  .cta-copy p {
    font-size: 18px;
  }

  .hero-visual {
    display: grid;
    min-height: 310px;
    padding: 10px 0 0;
  }

  .signal-core {
    justify-self: center;
    width: min(82vw, 320px);
  }

  .directions-section {
    margin-top: 0;
  }

  .directions-head {
    margin-bottom: 28px;
  }

  .directions-head h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .home-projects-section {
    --case-card-height: 590px;
    --case-cover-height: 156px;
    gap: 20px;
    margin-top: var(--section-stack-gap);
  }

  .home-projects-head {
    align-items: flex-start;
  }

  .home-projects-copy {
    gap: 12px;
  }

  .home-projects-copy h2 {
    font-size: clamp(32px, 11vw, 44px);
  }

  .home-projects-track {
    gap: 18px;
    padding-bottom: 8px;
    margin-bottom: -8px;
  }

  .home-projects-track .portfolio-card {
    flex-basis: min(320px, calc(100vw - var(--page-gutter-mobile)));
  }

  .home-projects-more {
    flex-basis: 138px;
    min-height: 142px;
    padding: 14px 12px;
  }

  .home-cases-copy h2 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .home-cases-carousel {
    --home-case-card-width: calc(100vw - var(--page-gutter-mobile));
    gap: 14px;
  }

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

  .home-solutions-carousel .home-cases-nav {
    grid-template-columns: 1fr;
  }

  .home-cases-tab {
    min-height: 60px;
    padding: 9px 16px 13px;
  }

  .home-cases-tab-title {
    font-size: 18px;
  }

  .home-cases-track {
    gap: 14px;
    padding-left: 0;
    padding-right: 0;
  }

  .home-case-slide {
    min-height: 0;
    border-radius: 22px;
    opacity: 0.88;
    filter: none;
    transform: scale(1);
  }

  .home-reviews-section {
    gap: 22px;
  }

  .home-reviews-copy h2 {
    font-size: clamp(32px, 10vw, 42px);
  }

  .home-reviews-head > p {
    font-size: 17px;
  }

  .home-reviews-viewport {
    overflow: hidden;
  }

  .home-reviews-viewport::before,
  .home-reviews-viewport::after {
    width: 34px;
  }

  .home-reviews-set {
    gap: 14px;
    padding-right: 14px;
  }

  .home-review-card {
    flex-basis: min(306px, calc(100vw - var(--page-gutter-mobile)));
    min-height: auto;
    padding: 22px;
    border-radius: 22px;
  }

  .home-review-card-brand {
    min-height: 380px;
  }

  .home-review-card-letter {
    flex-basis: min(330px, calc(100vw - var(--page-gutter-mobile)));
    min-height: 520px;
  }

  .home-review-card-spk {
    flex-basis: min(330px, calc(100vw - var(--page-gutter-mobile)));
    min-height: 520px;
  }

  .home-reviews-set .home-review-card:first-child {
    margin-left: 34px;
  }

  .home-review-card blockquote {
    margin: 28px 0;
    font-size: 22px;
    line-height: 1.16;
  }

  .home-review-proof-large {
    height: 190px;
  }

  .home-review-proof-spk {
    height: 204px;
  }

  .home-review-card-recovery .home-review-company-short {
    font-size: 30px;
  }

  .home-case-slide-content {
    max-width: none;
    padding: 0;
  }

  .home-case-slide-top {
    flex-wrap: wrap;
    align-items: flex-start;
  }

  .home-case-slide-copy h3 {
    font-size: clamp(28px, 10vw, 36px);
  }

  .home-case-slide-copy p {
    font-size: 16px;
    line-height: 1.34;
    max-width: none;
  }

  .home-case-slide-link {
    min-height: 42px;
    padding: 0 18px;
    font-size: 16px;
  }

  .home-case-slide-placeholder {
    min-height: 216px;
    padding: 20px 18px;
    border-radius: 20px;
  }

  .home-case-slide-placeholder strong {
    font-size: clamp(26px, 9vw, 34px);
  }

  .home-cases-actions {
    width: 100%;
    justify-content: flex-start;
  }

  .directions-mosaic {
    grid-auto-rows: minmax(128px, auto);
    grid-template-columns: 1fr;
    grid-template-rows: none;
  }

  .direction-card,
  .direction-card:nth-child(1),
  .direction-card:nth-child(2),
  .direction-card:nth-child(3),
  .direction-card:nth-child(4),
  .direction-card:nth-child(5),
  .direction-card:nth-child(6),
  .direction-card:nth-child(7),
  .direction-card:nth-child(8),
  .direction-card:nth-child(9) {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 128px;
    padding: 18px;
  }

  .direction-content strong {
    font-size: clamp(22px, 7vw, 28px);
  }

  .product-grid,
  .timeline {
    grid-template-columns: 1fr;
  }

  .process-showcase {
    gap: 12px;
    padding: 10px;
    margin-top: 30px;
  }

  .custom-build-section .process-showcase {
    min-height: auto;
    margin-top: 24px;
  }

  .custom-build-section .section-heading.narrow h2 {
    transform: none;
    white-space: normal;
  }

  .custom-build-heading {
    gap: 14px;
    margin-bottom: 0;
  }

  .custom-build-note {
    --custom-note-pad: 14px;
    --custom-note-icon-size: 56px;
    grid-template-columns: var(--custom-note-icon-size) minmax(0, 1fr);
    gap: 0 16px;
    width: 100%;
    padding: 14px 16px 14px 14px;
    border-radius: 22px;
  }

  .custom-build-note::after {
    top: 14px;
    bottom: 14px;
    left: calc(var(--custom-note-pad) + var(--custom-note-icon-size) + 8px);
  }

  .custom-build-note-icon {
    width: var(--custom-note-icon-size);
    height: var(--custom-note-icon-size);
    border-radius: 18px;
  }

  .custom-build-note-icon::before {
    width: 26px;
    height: 26px;
  }

  .custom-build-note-kicker {
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .custom-build-note strong {
    font-size: 18px;
  }

  .custom-build-note p {
    font-size: 15px;
    line-height: 1.36;
  }

  .process-list {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .process-list::-webkit-scrollbar {
    display: none;
  }

  .process-card {
    flex: 0 0 250px;
    min-height: 148px;
    padding: 20px 22px 20px 24px;
  }

  .custom-build-section .process-card {
    flex: 0 0 212px;
    min-height: 92px;
    padding: 12px 16px 12px 18px;
  }

  .custom-build-section .process-card span {
    font-size: 24px;
  }

  .process-card:hover,
  .process-card:focus-visible,
  .process-card.is-active {
    transform: none;
  }

  .process-card strong {
    font-size: 22px;
  }

  .custom-build-section .process-card strong {
    font-size: 20px;
    white-space: nowrap;
  }

  .process-card small {
    font-size: 15px;
  }

  .process-stage,
  .process-panel {
    min-height: auto;
  }

  .custom-build-section .process-stage,
  .custom-build-section .process-panel {
    min-height: auto;
  }

  .custom-build-section .process-panel {
    grid-template-rows: 168px minmax(0, 1fr);
  }

  .custom-build-section .process-visual {
    min-height: 168px;
  }

  .custom-build-section .process-copy h3 {
    font-size: 22px;
  }

  .custom-build-section .process-copy p {
    font-size: 16px;
    line-height: 1.4;
  }

  .process-panel {
    grid-template-rows: minmax(270px, auto) auto;
  }

  .process-visual {
    min-height: 270px;
  }

  .process-mini-card {
    right: 16px;
    bottom: 16px;
    min-width: 132px;
    padding: 14px;
  }

  .process-mini-card strong {
    font-size: 22px;
  }

  .process-grid-dots {
    left: 28px;
    grid-template-columns: repeat(3, 38px);
    gap: 12px;
  }

  .process-screen {
    inset: 34px 20px 84px;
  }

  .process-nodes {
    inset: 46px 24px 82px;
  }

  .process-nodes span {
    width: 54px;
    height: 54px;
  }

  .process-copy {
    padding: 24px 22px 26px;
  }

  .process-copy h3 {
    font-size: clamp(30px, 10vw, 38px);
  }

  .process-copy p {
    font-size: 16px;
  }

  .product-card,
  .timeline li,
  .intro-item {
    min-height: auto;
  }

  .info-strip {
    margin-top: 70px;
  }

  .info-strip h2 {
    margin-bottom: 18px;
    padding-bottom: 18px;
    font-size: 22px;
  }

  .info-strip p {
    font-size: 18px;
  }

  .decision-section {
    padding: 34px 18px 28px;
    border-radius: 24px;
  }

  .decision-head h2 {
    font-size: clamp(44px, 13vw, 56px);
  }

  .decision-head p:not(.eyebrow) {
    font-size: 17px;
  }

  .decision-card {
    padding: 24px 22px;
    border-radius: 20px;
  }

  .decision-number {
    top: 22px;
    right: 22px;
  }

  .decision-kicker {
    margin-bottom: 26px;
  }

  .decision-card h3 {
    font-size: clamp(30px, 10vw, 40px);
  }

  .decision-card p,
  .decision-conclusion p {
    font-size: 16px;
  }

  .intro-item h2,
  .section-heading h2,
  .feature-copy h2,
  .method-section h2,
  .cta-copy h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .custom-build-section .section-heading.narrow h2 {
    font-size: clamp(32px, 10vw, 44px);
  }

  .case-stack article,
  .product-card,
  .timeline li,
  .intro-item {
    padding: 22px;
  }

  .news-preview-copy {
    gap: 12px;
  }

  .news-preview-copy h2 {
    font-size: clamp(32px, 10vw, 40px);
  }

  .news-preview-track {
    gap: 16px;
    padding-bottom: 8px;
    margin-bottom: -8px;
  }

  .news-preview-card {
    flex-basis: min(320px, calc(100vw - var(--page-gutter-mobile)));
  }

  .news-preview-card .blog-mini-preview {
    min-height: 188px;
    padding: 20px;
  }

  .news-preview-card .blog-mini-body strong {
    font-size: clamp(20px, 6vw, 24px);
  }

  .news-preview-card .blog-mini-body p {
    font-size: 15px;
  }

  .blog-section {
    gap: 26px;
  }

  .blog-head h1,
  .blog-head h2 {
    font-size: clamp(70px, 24vw, 104px);
  }

  .blog-tools,
  .blog-search,
  .blog-subscribe {
    width: 100%;
  }

  .blog-tools {
    flex-wrap: wrap;
  }

  .blog-view-toggle {
    padding: 4px;
  }

  .blog-view-button {
    width: 34px;
    height: 34px;
  }

  .blog-search {
    max-width: none;
  }

  .blog-filters {
    gap: 8px;
  }

  .blog-filters a {
    min-height: 36px;
    padding: 0 14px;
    font-size: 14px;
  }

  .blog-poster {
    min-height: 230px;
  }

  .poster-label {
    top: 22px;
    left: 20px;
    font-size: 11px;
  }

  .poster-word {
    top: 34%;
    left: 8%;
    font-size: clamp(54px, 18vw, 74px);
  }

  .poster-stamp {
    right: 20px;
    bottom: 20px;
  }

  .blog-card-body h3 {
    font-size: 24px;
  }

  .blog-latest {
    grid-template-columns: 1fr;
  }

  .blog-more-list {
    grid-template-columns: 1fr;
  }

  .blog-mini-preview {
    min-height: 210px;
  }

  .blog-page.is-list-view .news-card-link,
  .blog-page.is-list-view .news-rail-link,
  .blog-page.is-list-view .blog-list-card,
  .blog-page.is-list-view .blog-more-card {
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px 0;
  }

  .blog-page.is-list-view .news-main-preview,
  .blog-page.is-list-view .news-rail-preview,
  .blog-page.is-list-view .blog-mini-preview,
  .blog-page.is-list-view .blog-more-preview {
    min-height: 168px;
  }

  .products-page {
    padding-top: 104px;
  }

  .portfolio-page {
    padding-top: 104px;
  }

  .products-head h1 {
    font-size: clamp(48px, 15vw, 68px);
  }

  .product-folder-grid {
    grid-template-columns: 1fr;
  }

  .case-card-grid {
    --case-card-height: 620px;
    --case-cover-height: 156px;
    grid-template-columns: 1fr;
  }

  .detail-facts,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .detail-actions {
    width: 100%;
  }

  .detail-actions .primary-action,
  .detail-actions .secondary-action {
    flex: 1 1 100%;
  }

  .doc-panel {
    min-height: 142px;
  }

  .workflow-visual,
  .workflow-gradient-card {
    min-height: 330px;
  }

  .workflow-steps article {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .folder-card a {
    min-height: auto;
  }

  .folder-cover {
    min-height: 128px;
  }

  .folder-body {
    min-height: 250px;
    padding: 26px 22px 22px;
  }

  .news-main-preview {
    min-height: 300px;
  }

  .news-rail-link,
  .blog-more-card {
    grid-template-columns: 1fr;
  }

  .news-rail-preview,
  .blog-more-preview {
    min-height: 190px;
  }

  .cta-surface {
    padding: 28px 22px;
    border-radius: 30px;
  }

  .case-tabs {
    display: flex;
    overflow-x: auto;
    scrollbar-width: none;
  }

  .case-tabs::-webkit-scrollbar {
    display: none;
  }

  .case-tab {
    flex: 0 0 auto;
    min-width: 96px;
    height: 40px;
    padding: 0 16px;
    font-size: 15px;
  }

  .case-pages,
  .case-panel {
    min-height: 390px;
  }

  .case-panel {
    padding: 26px 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 20px 0 0;
  }

  .footer-contact {
    padding-bottom: 18px;
  }

  .footer-contact > a:not(.footer-brand) {
    margin-bottom: 6px;
  }

  .footer-column {
    gap: 12px;
    padding-left: 0;
  }

  .footer-column h2 {
    margin-bottom: 8px;
  }

  .compliance-section {
    gap: 24px;
    margin-top: 46px;
    padding: 30px 0 32px;
  }

  .compliance-grid,
  .compliance-legal dl > div,
  .tech-stack-list {
    grid-template-columns: 1fr;
  }

  .compliance-legal {
    grid-column: auto;
  }

  .compliance-grid article {
    padding: 20px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    padding-top: 20px;
  }

  .footer-bottom p {
    grid-column: 1 / -1;
  }
}

.product-detail-main.is-product-template {
  padding-bottom: clamp(84px, 10vw, 144px);
}

.product-detail-main.is-docmodifier-page .product-detail-hero {
  grid-template-columns: minmax(0, 0.88fr) minmax(360px, 0.9fr);
  gap: clamp(28px, 4vw, 66px);
  align-items: start;
  min-height: min(700px, calc(100svh - 28px));
  padding-top: clamp(92px, 7vw, 108px);
  padding-bottom: 22px;
}

.product-detail-main.is-docmodifier-page .detail-hero-copy {
  align-content: start;
  padding-top: clamp(24px, 3vw, 44px);
}

.product-detail-main.is-docmodifier-page .detail-hero-copy h1 {
  font-size: clamp(50px, 5.2vw, 84px);
  line-height: 0.92;
}

.product-detail-main.is-docmodifier-page .detail-lead {
  max-width: 700px;
  margin-top: 22px;
  font-size: clamp(19px, 1.85vw, 22px);
  line-height: 1.46;
}

.product-detail-main.is-docmodifier-page .detail-actions {
  margin-top: 30px;
}

.product-detail-main.is-docmodifier-page .detail-hero-visual {
  min-height: clamp(390px, 37vw, 540px);
  padding: clamp(20px, 2.4vw, 28px);
}

.product-detail-main.is-docmodifier-page .docmodifier-hero-visual {
  align-content: stretch;
  gap: 16px;
  min-height: clamp(420px, 39vw, 560px);
  background:
    radial-gradient(circle at 84% 18%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(135deg, rgba(22, 22, 24, 0.98), rgba(5, 5, 5, 0.98));
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.24);
}

.product-detail-main.is-docmodifier-page .docmodifier-hero-visual::before,
.product-detail-main.is-docmodifier-page .docmodifier-hero-visual::after {
  content: none;
}

.docmodifier-hero-shot {
  position: relative;
  display: block;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: #111;
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.28);
}

.docmodifier-hero-shot img,
.docmodifier-screen-card img,
.docmodifier-proof-grid img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top left;
}

.docmodifier-hero-shot img {
  aspect-ratio: 16 / 9;
  background: #ede9e2;
  object-fit: contain;
  object-position: top center;
}

.docmodifier-hero-proof {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  min-height: 86px;
  padding: 18px 20px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.018)),
    #151516;
}

.docmodifier-hero-proof span {
  color: rgba(255, 255, 255, 0.52);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.docmodifier-hero-proof strong {
  max-width: 360px;
  color: var(--white);
  font-size: clamp(20px, 1.8vw, 28px);
  font-weight: 650;
  line-height: 1.04;
  text-align: right;
}

.docmodifier-flow-summary {
  margin-top: clamp(18px, 2vw, 28px);
}

.product-detail-main.is-docmodifier-page .doc-panel {
  min-height: 150px;
}

.product-detail-main.is-docmodifier-page .doc-panel-main {
  min-height: 190px;
}

.product-detail-main.is-docmodifier-page .detail-workflow,
.product-detail-main.is-docmodifier-page .detail-section,
.product-detail-main.is-docmodifier-page .security-band,
.product-detail-main.is-docmodifier-page .detail-cta {
  padding-top: clamp(74px, 8vw, 112px);
}

.product-detail-main.is-docmodifier-page .detail-section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.product-detail-main.is-docmodifier-page .detail-section-head p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.product-detail-main.is-docmodifier-page .detail-section-head h2,
.product-detail-main.is-docmodifier-page .workflow-copy h2,
.product-detail-main.is-docmodifier-page .security-band h2,
.product-detail-main.is-docmodifier-page .detail-cta h2 {
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 0.96;
}

.product-detail-main.is-docmodifier-page .workflow-copy {
  align-content: start;
}

.product-detail-main.is-docmodifier-page .docmodifier-screen-stack {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  align-content: start;
  min-height: 0;
}

.docmodifier-screen-card,
.docmodifier-proof-grid figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.012)),
    #111;
}

.docmodifier-screen-card.is-primary {
  grid-column: 1 / -1;
}

.docmodifier-screen-card.is-primary img {
  background: #ede9e2;
  object-fit: contain;
  object-position: top center;
}

.docmodifier-screen-card img {
  aspect-ratio: 16 / 8.6;
}

.docmodifier-screen-card:not(.is-primary) img {
  aspect-ratio: 16 / 10.4;
}

.docmodifier-screen-card figcaption,
.docmodifier-proof-grid figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  max-width: calc(100% - 24px);
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(7, 7, 9, 0.7);
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 750;
  line-height: 1;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.product-detail-main.is-docmodifier-page .detail-section-docmodifier-inside .interface-grid {
  margin-top: 22px;
}

.docmodifier-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.detail-section-head p {
  max-width: 760px;
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.55;
}

.detail-section-screens {
  overflow: hidden;
}

.detail-section-screens .detail-section-head {
  margin-bottom: 22px;
}

.solution-screen-carousel {
  display: grid;
  gap: 16px;
  margin-top: 0;
}

.solution-screen-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
}

.solution-screen-controls .home-projects-arrow {
  width: 48px;
  height: 48px;
  border-color: rgba(255, 255, 255, 0.14);
  background: #0d0d0f;
}

.solution-screen-track {
  display: flex;
  gap: clamp(18px, 2vw, 26px);
  overflow-x: auto;
  overflow-y: hidden;
  padding: 2px 2px 16px;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  -ms-overflow-style: none;
  cursor: grab;
}

.solution-screen-track::-webkit-scrollbar {
  display: none;
}

.solution-screen-track.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.solution-screen-track:focus-visible {
  outline: 1px solid rgba(255, 255, 255, 0.54);
  outline-offset: 5px;
  border-radius: 16px;
}

.solution-screen-slide {
  position: relative;
  display: block;
  flex: 0 0 clamp(700px, 62vw, 840px);
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.014)),
    #0f1012;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.05),
    0 30px 78px rgba(0, 0, 0, 0.28);
  scroll-snap-align: start;
}

.solution-screen-slide img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: top left;
  background: #ece9e3;
}

.solution-screen-slide.is-full img {
  object-fit: contain;
  object-position: top center;
}

.solution-screen-slide figcaption {
  position: absolute;
  right: 16px;
  bottom: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto minmax(0, 0.34fr) minmax(0, 1fr);
  align-items: center;
  gap: 14px;
  min-height: 74px;
  padding: 16px 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background:
    radial-gradient(circle at 88% 12%, rgba(255, 255, 255, 0.055), transparent 26%),
    rgba(16, 17, 19, 0.86);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.solution-screen-slide figcaption span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.solution-screen-slide figcaption strong {
  min-width: 0;
  color: var(--white);
  font-size: clamp(21px, 1.8vw, 30px);
  font-weight: 650;
  line-height: 1.02;
}

.solution-screen-slide figcaption p {
  max-width: 56ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.34;
}

.detail-section-docmodifier-inside .solution-screen-carousel {
  margin-top: clamp(28px, 4vw, 48px);
}

.docmodifier-proof-grid figure {
  min-height: 270px;
}

.docmodifier-proof-grid img {
  aspect-ratio: 16 / 10;
}

.docmodifier-proof-grid figcaption {
  width: auto;
  border-radius: 8px;
  white-space: normal;
  line-height: 1.28;
}

@media (max-width: 1180px) {
  .docmodifier-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .solution-screen-slide {
    flex-basis: min(760px, calc(100vw - var(--page-gutter)));
  }

  .solution-screen-slide figcaption {
    grid-template-columns: auto minmax(0, 0.42fr) minmax(0, 1fr);
  }
}

@media (max-width: 760px) {
  .docmodifier-proof-grid {
    grid-template-columns: 1fr;
  }

  .docmodifier-proof-grid figure {
    min-height: 240px;
  }

  .solution-screen-carousel {
    gap: 14px;
    margin-top: 18px;
  }

  .solution-screen-controls {
    justify-content: flex-start;
  }

  .solution-screen-controls .home-projects-arrow {
    width: 44px;
    height: 44px;
  }

  .solution-screen-track {
    gap: 14px;
    margin-right: calc(var(--page-gutter-mobile) * -1);
    padding-right: var(--page-gutter-mobile);
  }

  .solution-screen-slide {
    flex-basis: min(100%, calc(100vw - var(--page-gutter-mobile)));
    border-radius: 13px;
  }

  .solution-screen-slide img {
    aspect-ratio: 4 / 3;
  }

  .solution-screen-slide figcaption {
    position: static;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 10px 12px;
    min-height: 0;
    padding: 16px;
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    background: #101113;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  .solution-screen-slide figcaption p {
    grid-column: 1 / -1;
    max-width: none;
    font-size: 14px;
  }

  .solution-screen-slide figcaption strong {
    font-size: 21px;
  }
}

.product-detail-main.is-docmodifier-page .docmodifier-audience {
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.product-detail-main.is-docmodifier-page .docmodifier-audience .security-list {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-detail-main.is-docmodifier-page .docmodifier-cta-copy {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.product-detail-main.is-omni-page {
  --omni-violet-tint: rgba(123, 101, 255, 0.15);
  --omni-violet-tint-soft: rgba(123, 101, 255, 0.11);
  --omni-violet-tint-strong: rgba(145, 124, 255, 0.18);
  --omni-violet-glow: rgba(124, 102, 255, 0.28);
  --omni-violet-line: rgba(162, 147, 255, 0.26);
  --omni-violet-shadow: rgba(46, 34, 96, 0.18);
  --omni-violet-surface: rgba(236, 230, 246, 0.96);
  --omni-violet-ink: rgba(152, 134, 255, 0.94);
}

.product-detail-main.is-omni-page .product-detail-hero {
  grid-template-columns: minmax(0, 0.78fr) minmax(380px, 0.98fr);
  gap: clamp(28px, 4vw, 60px);
  align-items: start;
  min-height: min(780px, calc(100svh - 12px));
  padding-top: clamp(138px, 14vh, 168px);
  padding-bottom: 28px;
}

.product-detail-main.is-omni-page .detail-hero-copy {
  align-content: start;
  padding-top: 0;
  margin-top: -14px;
}

.product-detail-main.is-omni-page .detail-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(46px, 4.9vw, 74px);
  line-height: 0.94;
  text-transform: none;
}

.product-detail-main.is-omni-page .detail-lead {
  max-width: 660px;
  margin-top: 42px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.44;
}

.product-detail-main.is-omni-page .detail-actions {
  margin-top: 54px;
}

.product-detail-main.is-omni-page .detail-actions .primary-action {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  border-color: rgba(188, 170, 255, 0.38);
  background:
    radial-gradient(circle at 18% 20%, rgba(234, 171, 255, 0.24), transparent 26%),
    linear-gradient(135deg, rgba(177, 20, 255, 0.98) 0%, rgba(128, 17, 247, 0.98) 48%, rgba(66, 12, 136, 0.98) 100%);
  color: var(--white);
  text-shadow: 0 1px 0 rgba(24, 7, 54, 0.28);
  filter: saturate(0.96);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.18),
    0 18px 34px rgba(64, 25, 124, 0.26),
    0 0 32px rgba(139, 58, 255, 0.16);
  transition:
    background 260ms ease,
    border-color 260ms ease,
    color 260ms ease,
    box-shadow 260ms ease,
    filter 260ms ease;
}

.product-detail-main.is-omni-page .detail-actions .primary-action::before,
.product-detail-main.is-omni-page .detail-actions .primary-action::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.product-detail-main.is-omni-page .detail-actions .primary-action::before {
  inset: 0;
  z-index: -1;
  opacity: 0.2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.18) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.18) 1px, transparent 1px);
  background-size: 18px 18px;
  transition:
    opacity 260ms ease,
    background-size 260ms ease;
}

.product-detail-main.is-omni-page .detail-actions .primary-action::after {
  right: -32px;
  bottom: -34px;
  z-index: -1;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  opacity: 0.7;
  transition:
    opacity 260ms ease,
    border-color 260ms ease,
    box-shadow 260ms ease,
    transform 260ms ease;
}

.product-detail-main.is-omni-page .detail-actions .primary-action:hover,
.product-detail-main.is-omni-page .detail-actions .primary-action:focus-visible {
  transform: none;
  border-color: rgba(255, 233, 255, 0.62);
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 213, 251, 0.34), transparent 30%),
    linear-gradient(135deg, rgba(249, 91, 255, 1) 0%, rgba(170, 54, 255, 1) 48%, rgba(92, 24, 194, 1) 100%);
  color: var(--white);
  filter: saturate(1.18) brightness(1.05);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    0 18px 34px rgba(64, 25, 124, 0.26),
    0 0 44px rgba(209, 90, 255, 0.34);
}

.product-detail-main.is-omni-page .detail-actions .primary-action:hover::before,
.product-detail-main.is-omni-page .detail-actions .primary-action:focus-visible::before {
  opacity: 0.34;
  background-size: 16px 16px;
}

.product-detail-main.is-omni-page .detail-actions .primary-action:hover::after,
.product-detail-main.is-omni-page .detail-actions .primary-action:focus-visible::after {
  opacity: 0.92;
  border-color: rgba(255, 255, 255, 0.34);
  box-shadow: 0 0 0 18px rgba(255, 255, 255, 0.06);
  transform: scale(1.06);
}

.product-detail-main.is-omni-page .detail-hero-visual {
  display: grid;
  align-content: start;
  min-height: clamp(444px, 37.5vw, 580px);
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
  margin-top: -14px;
}

.omni-hero-visual {
  background: none;
  box-shadow: none;
}

.omni-hero-visual::before {
  display: none;
}

.omni-hero-visual::after {
  display: none;
}

.omni-hero-screen {
  position: relative;
  z-index: 1;
}

.omni-hero-screen {
  display: grid;
  place-items: center;
  width: 100%;
  min-height: clamp(410px, 34.5vw, 520px);
  padding: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  border: 1px solid rgba(150, 132, 255, 0.14);
  border-radius: 26px;
  background:
    radial-gradient(circle at 14% 18%, rgba(216, 133, 255, 0.18), transparent 28%),
    radial-gradient(circle at 86% 16%, rgba(171, 74, 255, 0.22), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(111, 41, 219, 0.16), transparent 36%),
    linear-gradient(180deg, #eff2f8, #e7edf6);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.2),
    0 0 48px rgba(124, 102, 255, 0.08);
  cursor: zoom-in;
  appearance: none;
  -webkit-appearance: none;
  transition:
    border-color 280ms ease,
    box-shadow 320ms ease,
    background 280ms ease;
}

.omni-hero-screen::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 52%, transparent 50%, rgba(137, 58, 240, 0.12) 72%, rgba(72, 24, 164, 0.24) 100%),
    radial-gradient(circle at 18% 14%, rgba(212, 112, 255, 0.16), transparent 28%),
    radial-gradient(circle at 84% 14%, rgba(164, 71, 255, 0.18), transparent 30%),
    radial-gradient(circle at 50% 100%, rgba(101, 40, 214, 0.16), transparent 34%);
  pointer-events: none;
}

.omni-hero-screen-blur,
.omni-hero-screen-main {
  display: block;
  width: 100%;
  height: auto;
}

.omni-hero-screen-blur {
  position: absolute;
  inset: -6%;
  z-index: 0;
  width: 112%;
  max-width: none;
  height: 112%;
  object-fit: cover;
  object-position: center;
  filter: blur(28px) saturate(1.02);
  opacity: 0.74;
  transform: scale(1.06);
  transition:
    opacity 320ms ease,
    transform 320ms var(--ease-smooth);
}

.omni-hero-screen-main {
  position: relative;
  z-index: 2;
  width: min(100%, 980px);
  border-radius: 16px;
  box-shadow:
    0 24px 64px rgba(40, 30, 84, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.34);
  transition:
    transform 320ms var(--ease-smooth),
    box-shadow 320ms ease;
}

.omni-hero-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    radial-gradient(circle at 50% 50%, transparent 58%, rgba(56, 20, 132, 0.08) 100%);
  pointer-events: none;
  transition: opacity 280ms ease;
}

.omni-hero-screen:hover,
.omni-hero-screen:focus-visible {
  transform: none;
  border-color: rgba(168, 149, 255, 0.24);
  box-shadow:
    0 30px 70px rgba(0, 0, 0, 0.26),
    0 0 0 1px rgba(84, 59, 170, 0.12),
    0 0 74px rgba(54, 31, 124, 0.34),
    0 0 126px rgba(28, 16, 70, 0.22);
}

.omni-hero-screen:hover .omni-hero-screen-blur,
.omni-hero-screen:focus-visible .omni-hero-screen-blur {
  opacity: 0.86;
  transform: scale(1.1);
}

.omni-hero-screen:hover .omni-hero-screen-main,
.omni-hero-screen:focus-visible .omni-hero-screen-main {
  transform: scale(1.04);
  box-shadow:
    0 30px 76px rgba(34, 22, 82, 0.24),
    0 0 0 1px rgba(255, 255, 255, 0.4);
}

.omni-hero-screen:hover::after,
.omni-hero-screen:focus-visible::after {
  opacity: 0.76;
}

.image-lightbox {
  width: min(1000px, calc(100vw - 40px));
  margin: auto;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background: rgba(10, 10, 12, 0.9);
  box-shadow: 0 36px 80px rgba(0, 0, 0, 0.38);
}

.image-lightbox::backdrop {
  background: rgba(3, 3, 5, 0.8);
  backdrop-filter: blur(12px);
}

.image-lightbox[open] {
  display: grid;
  gap: 14px;
}

.image-lightbox-close {
  justify-self: end;
  min-height: 38px;
  padding: 0 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--white);
  font-size: 14px;
  font-weight: 650;
  line-height: 1;
  cursor: pointer;
  transition:
    background 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.image-lightbox-close:hover,
.image-lightbox-close:focus-visible {
  border-color: rgba(255, 255, 255, 0.4);
  background: rgba(255, 255, 255, 0.12);
}

.image-lightbox-frame {
  overflow: hidden;
  border-radius: 20px;
  background: #eef2f7;
}

.image-lightbox-frame img {
  display: block;
  width: 100%;
  height: auto;
}

.product-detail-main.is-omni-page .detail-workflow,
.product-detail-main.is-omni-page .detail-section,
.product-detail-main.is-omni-page .security-band,
.product-detail-main.is-omni-page .detail-cta {
  padding-top: clamp(74px, 8vw, 112px);
}

.product-detail-main.is-omni-page .detail-cta {
  padding-bottom: clamp(28px, 3.6vw, 44px);
}

.product-detail-main.is-omni-page #how-it-works {
  scroll-margin-top: clamp(56px, 7vh, 76px);
}

.product-detail-main.is-omni-page #omni-cta {
  scroll-margin-top: clamp(132px, 14vh, 164px);
}

.product-detail-main.is-omni-page + .site-footer {
  margin-top: clamp(18px, 2.8vw, 30px);
}

.product-detail-main.is-omni-page .detail-workflow {
  display: block;
  padding-top: clamp(48px, 5vw, 72px);
}

.product-detail-main.is-omni-page .detail-section-head {
  max-width: 760px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.product-detail-main.is-omni-page .detail-section-head h2,
.product-detail-main.is-omni-page .workflow-copy h2,
.product-detail-main.is-omni-page .security-band h2,
.product-detail-main.is-omni-page .detail-cta h2 {
  font-size: clamp(42px, 4.4vw, 64px);
  font-weight: 500;
  line-height: 0.96;
}

.omni-workflow-intro {
  max-width: 920px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.42;
}

.product-detail-main.is-omni-page .workflow-copy {
  display: grid;
  align-content: start;
}

.product-detail-main.is-omni-page .workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 4vw, 44px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
}

.product-detail-main.is-omni-page .workflow-steps article {
  --omni-panel-tint: var(--omni-violet-tint);
  position: relative;
  display: grid;
  grid-template-columns: clamp(96px, 8.6vw, 126px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 194px;
  padding: 22px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, var(--omni-panel-tint), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    #111113;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 44px var(--omni-violet-shadow);
}

.product-detail-main.is-omni-page .workflow-steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.038) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.038) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.product-detail-main.is-omni-page .workflow-steps article::after {
  content: "";
  position: absolute;
  inset: auto -28px -34px auto;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(151, 135, 255, 0.1);
  opacity: 0.7;
}

.product-detail-main.is-omni-page .workflow-steps article:nth-child(2) {
  --omni-panel-tint: var(--omni-violet-tint-strong);
}

.product-detail-main.is-omni-page .workflow-steps article:nth-child(3) {
  --omni-panel-tint: rgba(136, 116, 255, 0.13);
}

.product-detail-main.is-omni-page .workflow-steps article:nth-child(4) {
  --omni-panel-tint: var(--omni-violet-tint-soft);
}

.product-detail-main.is-omni-page .workflow-steps span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.46);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(56px, 5.1vw, 78px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.82;
}

.product-detail-main.is-omni-page .omni-step-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
  align-content: start;
  padding-top: 2px;
}

.product-detail-main.is-omni-page .omni-step-copy strong {
  display: block;
  max-width: none;
  color: var(--white);
  font-size: clamp(24px, 2vw, 31px);
  font-weight: 650;
  line-height: 1.05;
}

.product-detail-main.is-omni-page .omni-step-copy p {
  max-width: 34ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.48;
}

.product-detail-main.is-omni-page .omni-audience {
  grid-template-columns: minmax(220px, 0.46fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 64px);
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid {
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article {
  position: relative;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  align-content: start;
  align-items: start;
  column-gap: 16px;
  row-gap: 14px;
  min-height: 228px;
  padding: 24px 24px 26px;
  overflow: hidden;
  border: 1px solid rgba(17, 23, 34, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, var(--omni-card-tint, var(--omni-violet-tint)), transparent 42%),
    linear-gradient(180deg, rgba(244, 239, 232, 0.98), rgba(233, 226, 217, 0.98)),
    #efe8df;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 20px 40px rgba(43, 31, 95, 0.12);
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(10, 17, 28, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 17, 28, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article::after {
  content: "";
  position: absolute;
  inset: auto -28px -34px auto;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(15, 22, 34, 0.08);
  opacity: 0.55;
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(2) {
  --omni-card-tint: var(--omni-violet-tint-strong);
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(3) {
  --omni-card-tint: rgba(136, 116, 255, 0.12);
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(4) {
  --omni-card-tint: var(--omni-violet-tint-soft);
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(5) {
  --omni-card-tint: rgba(148, 128, 255, 0.13);
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid span,
.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article span {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
  margin: 0;
  border: 1px solid color-mix(in srgb, var(--omni-icon-accent, rgba(255, 255, 255, 0.28)) 30%, rgba(255, 255, 255, 0.12));
  border-radius: 18px;
  background:
    radial-gradient(circle at 50% 28%, color-mix(in srgb, var(--omni-icon-accent, rgba(255, 255, 255, 0.28)) 18%, rgba(255, 255, 255, 0.04)) 0, transparent 72%),
    linear-gradient(180deg, rgba(35, 39, 48, 0.98), rgba(14, 16, 21, 0.98)),
    #121419;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.08),
    0 12px 24px rgba(17, 17, 19, 0.18),
    0 0 0 1px color-mix(in srgb, var(--omni-icon-accent, rgba(255, 255, 255, 0.22)) 18%, transparent),
    0 0 18px color-mix(in srgb, var(--omni-icon-glow, rgba(255, 255, 255, 0.12)) 24%, transparent);
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid span::before,
.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article span::before {
  content: "";
  width: 22px;
  height: 22px;
  background: #fff;
  opacity: 1;
  filter: drop-shadow(0 0 8px color-mix(in srgb, var(--omni-icon-glow, rgba(255, 255, 255, 0.18)) 32%, transparent));
  transform: translateZ(0);
  -webkit-mask: var(--omni-capability-icon) center / contain no-repeat;
  mask: var(--omni-capability-icon) center / contain no-repeat;
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(1) {
  --omni-card-tint: var(--omni-violet-tint);
  --omni-icon-accent: var(--omni-violet-ink);
  --omni-icon-glow: var(--omni-violet-glow);
  --omni-capability-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='4' width='8' height='6' rx='1.5'/%3E%3Crect x='13' y='4' width='8' height='6' rx='1.5'/%3E%3Crect x='3' y='14' width='18' height='6' rx='1.5'/%3E%3C/svg%3E");
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(2) {
  --omni-icon-accent: rgba(161, 144, 255, 0.96);
  --omni-icon-glow: rgba(140, 118, 255, 0.32);
  --omni-capability-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M12 3v4'/%3E%3Cpath d='M12 17v4'/%3E%3Cpath d='M3 12h4'/%3E%3Cpath d='M17 12h4'/%3E%3Ccircle cx='12' cy='12' r='4.5'/%3E%3C/svg%3E");
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(3) {
  --omni-icon-accent: rgba(150, 132, 255, 0.94);
  --omni-icon-glow: rgba(132, 112, 255, 0.3);
  --omni-capability-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Crect x='3' y='5' width='18' height='16' rx='2'/%3E%3Cpath d='M8 3v4'/%3E%3Cpath d='M16 3v4'/%3E%3Cpath d='M8 13l2.5 2.5L16 10'/%3E%3C/svg%3E");
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(4) {
  --omni-icon-accent: rgba(147, 128, 255, 0.92);
  --omni-icon-glow: rgba(124, 102, 255, 0.28);
  --omni-capability-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M4 12a8 8 0 0 1 16 0'/%3E%3Crect x='3' y='11' width='4' height='7' rx='2'/%3E%3Crect x='17' y='11' width='4' height='7' rx='2'/%3E%3Cpath d='M7 19c1 1 2.5 2 5 2s4-1 5-2'/%3E%3C/svg%3E");
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(5) {
  --omni-icon-accent: rgba(165, 149, 255, 0.94);
  --omni-icon-glow: rgba(144, 126, 255, 0.28);
  --omni-capability-icon: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='12' cy='12' r='8'/%3E%3Cpath d='M12 8v5l3 2'/%3E%3Cpath d='M5 5l2 2'/%3E%3C/svg%3E");
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid h3,
.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid p {
  position: relative;
  z-index: 1;
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid h3 {
  grid-column: 2;
  align-self: center;
  max-width: none;
  margin: 0;
  color: #11131a;
  font-size: clamp(20px, 1.65vw, 26px);
  line-height: 1.06;
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid p {
  grid-column: 1 / -1;
  max-width: 34ch;
  margin-top: 2px;
  color: rgba(20, 26, 36, 0.78);
  font-size: 16px;
  line-height: 1.5;
}

.product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article:nth-child(5) p {
  max-width: 44ch;
}

.product-detail-main.is-omni-page .omni-audience .security-list {
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.product-detail-main.is-omni-page .omni-audience .security-list article {
  --omni-audience-tint: var(--omni-violet-tint);
  position: relative;
  min-height: 214px;
  padding: 28px 28px 30px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, var(--omni-audience-tint), transparent 42%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    #111113;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 44px var(--omni-violet-shadow);
}

.product-detail-main.is-omni-page .omni-audience .security-list article::before {
  content: "";
  position: absolute;
  top: 20px;
  left: 20px;
  width: 42px;
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(150, 132, 255, 0.28));
  opacity: 0.9;
}

.product-detail-main.is-omni-page .omni-audience .security-list article::after {
  content: "";
  position: absolute;
  inset: auto -28px -34px auto;
  width: 148px;
  height: 148px;
  border-radius: 50%;
  border: 1px solid rgba(151, 135, 255, 0.1);
  opacity: 0.7;
}

.product-detail-main.is-omni-page .omni-audience .security-list article:nth-child(2) {
  --omni-audience-tint: var(--omni-violet-tint-strong);
}

.product-detail-main.is-omni-page .omni-audience .security-list article:nth-child(3) {
  --omni-audience-tint: rgba(136, 116, 255, 0.13);
}

.product-detail-main.is-omni-page .omni-audience .security-list article:nth-child(4) {
  --omni-audience-tint: var(--omni-violet-tint-soft);
}

.product-detail-main.is-omni-page .omni-audience .security-list h3 {
  max-width: 16ch;
  margin: 28px 0 16px;
}

.product-detail-main.is-omni-page .omni-audience .security-list p {
  max-width: 32ch;
}

.product-detail-main.is-omni-page .omni-cta-copy {
  max-width: 700px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.42;
}

.detail-cta-light {
  display: block;
}

.detail-cta-light .cta-surface {
  gap: clamp(24px, 3vw, 34px);
  width: 100%;
  border-color: rgba(150, 132, 255, 0.14);
  background:
    radial-gradient(circle at 20% 76%, rgba(123, 101, 255, 0.16), transparent 26%),
    radial-gradient(circle at 82% 18%, rgba(151, 131, 255, 0.14), transparent 24%),
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.92), rgba(245, 241, 250, 0.97) 58%, rgba(236, 230, 246, 0.95) 100%);
  box-shadow:
    0 32px 80px rgba(47, 34, 104, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.42);
}

.detail-cta-light .cta-surface::after {
  border: 1px solid rgba(123, 101, 255, 0.1);
  box-shadow:
    0 0 0 42px rgba(150, 130, 255, 0.08),
    0 0 0 96px rgba(150, 130, 255, 0.04);
}

.detail-cta-light .cta-copy h2 {
  max-width: 1040px;
  color: #050505;
  font-size: clamp(42px, 5vw, 72px);
  font-weight: 500;
  line-height: 0.95;
}

.detail-cta-light .cta-copy p {
  max-width: 760px;
  color: rgba(5, 5, 5, 0.66);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 350;
  line-height: 1.4;
}

.detail-cta-light .cta-actions {
  justify-content: center;
  justify-self: center;
}

.detail-cta-light .primary-action.light {
  min-width: clamp(248px, 24vw, 320px);
  height: 56px;
  border-color: #050505;
  border-radius: 999px;
  background: #050505;
  color: var(--white);
  font-size: 18px;
  font-weight: 650;
  box-shadow: 0 18px 34px rgba(52, 39, 112, 0.18);
}

.detail-cta-light .primary-action.light:hover,
.detail-cta-light .primary-action.light:focus-visible {
  background: var(--white);
  color: #050505;
  border-color: #050505;
}

@media (max-width: 1120px) {
  .product-detail-main.is-docmodifier-page .product-detail-hero,
  .product-detail-main.is-docmodifier-page .docmodifier-audience {
    grid-template-columns: 1fr;
  }

  .product-detail-main.is-docmodifier-page .detail-hero-copy {
    padding-top: 0;
  }

  .product-detail-main.is-docmodifier-page .detail-hero-visual {
    min-height: 430px;
  }

  .product-detail-main.is-docmodifier-page .docmodifier-proof-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-main.is-omni-page .product-detail-hero,
  .product-detail-main.is-omni-page .omni-audience {
    grid-template-columns: 1fr;
  }

  .product-detail-main.is-omni-page .detail-hero-copy {
    padding-top: 0;
    margin-top: 0;
  }

  .product-detail-main.is-omni-page .detail-hero-visual {
    min-height: clamp(392px, 46vw, 500px);
    margin-top: 0;
  }

  .product-detail-main.is-omni-page .detail-lead {
    margin-top: 34px;
  }

  .product-detail-main.is-omni-page .detail-actions {
    margin-top: 44px;
  }
}

@media (max-width: 860px) {
  .product-detail-main.is-docmodifier-page .product-detail-hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 12px;
  }

  .product-detail-main.is-docmodifier-page .detail-hero-copy h1 {
    font-size: clamp(42px, 12vw, 62px);
  }

  .product-detail-main.is-docmodifier-page .detail-hero-visual {
    min-height: 360px;
  }

  .product-detail-main.is-docmodifier-page .docmodifier-hero-proof {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-detail-main.is-docmodifier-page .docmodifier-hero-proof strong {
    text-align: left;
  }

  .product-detail-main.is-docmodifier-page .docmodifier-screen-stack,
  .product-detail-main.is-docmodifier-page .docmodifier-proof-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-main.is-docmodifier-page .docmodifier-proof-grid figure {
    min-height: 240px;
  }

  .product-detail-main.is-docmodifier-page .detail-section-head h2,
  .product-detail-main.is-docmodifier-page .workflow-copy h2,
  .product-detail-main.is-docmodifier-page .security-band h2,
  .product-detail-main.is-docmodifier-page .detail-cta h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .product-detail-main.is-docmodifier-page .docmodifier-audience .security-list {
    grid-template-columns: 1fr;
  }

  .product-detail-main.is-omni-page .product-detail-hero {
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 12px;
  }

  .product-detail-main.is-omni-page .detail-hero-copy h1 {
    font-size: clamp(40px, 13vw, 64px);
  }

  .product-detail-main.is-omni-page .detail-hero-visual {
    min-height: 0;
    margin-top: 12px;
  }

  .product-detail-main.is-omni-page .detail-lead {
    margin-top: 30px;
  }

  .product-detail-main.is-omni-page .detail-actions {
    margin-top: 38px;
  }

  .product-detail-main.is-omni-page .detail-section-head h2,
  .product-detail-main.is-omni-page .workflow-copy h2,
  .product-detail-main.is-omni-page .security-band h2,
  .product-detail-main.is-omni-page .detail-cta h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .omni-hero-screen {
    min-height: 300px;
    padding: 14px;
    border-radius: 18px;
  }

  .omni-hero-screen-main {
    border-radius: 12px;
  }

  .product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article {
    min-height: 212px;
    padding: 20px 20px 22px;
    border-radius: 18px;
    column-gap: 14px;
    row-gap: 12px;
  }

  .product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid span,
  .product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article span {
    width: 48px;
    height: 48px;
    margin-bottom: 18px;
    border-radius: 15px;
  }

  .product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid span::before,
  .product-detail-main.is-omni-page .detail-section-omni-inside .capability-grid article span::before {
    width: 19px;
    height: 19px;
  }

  .product-detail-main.is-omni-page .workflow-steps article {
    grid-template-columns: 60px minmax(0, 1fr);
    gap: 16px;
    min-height: 0;
    padding: 20px 20px 22px;
    border-radius: 18px;
  }

  .product-detail-main.is-omni-page .workflow-steps {
    grid-template-columns: 1fr;
  }

  .product-detail-main.is-omni-page .workflow-steps span {
    font-size: 42px;
  }

  .product-detail-main.is-omni-page .omni-step-copy {
    gap: 8px;
  }

  .product-detail-main.is-omni-page .omni-step-copy strong {
    font-size: 21px;
  }

  .product-detail-main.is-omni-page .omni-step-copy p {
    font-size: 16px;
  }

  .omni-workflow-intro,
  .omni-flow-stack p {
    font-size: 16px;
  }

  .omni-flow-stack strong {
    font-size: 20px;
  }

  .product-detail-main.is-omni-page .omni-audience .security-list {
    grid-template-columns: 1fr;
  }

  .detail-cta-light .cta-copy h2 {
    font-size: clamp(36px, 8vw, 52px);
  }

  .image-lightbox {
    width: min(calc(100vw - 24px), 1000px);
    padding: 14px;
    border-radius: 20px;
  }

  .image-lightbox-frame {
    border-radius: 14px;
  }
}

.product-detail-main.is-product-template .product-detail-hero {
  grid-template-columns: minmax(0, 0.96fr) minmax(360px, 0.9fr);
  gap: clamp(30px, 4vw, 56px);
  align-items: center;
  min-height: auto;
  padding-top: clamp(110px, 8vw, 134px);
  padding-bottom: clamp(44px, 6vw, 72px);
}

.product-detail-main.is-product-template .detail-hero-copy h1 {
  max-width: 760px;
  font-size: clamp(48px, 5vw, 64px);
  line-height: 0.96;
  text-transform: none;
}

.product-detail-main.is-product-template .detail-kicker {
  margin-bottom: 18px;
  font-size: 14px;
}

.product-detail-main.is-product-template .detail-lead {
  max-width: 620px;
  margin-top: 18px;
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.44;
}

.product-detail-main.is-product-template .detail-section,
.product-detail-main.is-product-template .detail-workflow,
.product-detail-main.is-product-template .detail-cta {
  padding-top: clamp(72px, 9vw, 112px);
}

.product-detail-main.is-product-template .detail-actions .primary-action,
.product-detail-main.is-product-template .product-cta-panel .primary-action {
  border-color: rgba(255, 255, 255, 0.14);
  background: #f3f4f5;
  color: #050505;
}

.product-detail-main.is-product-template .detail-actions .primary-action:hover,
.product-detail-main.is-product-template .detail-actions .primary-action:focus-visible,
.product-detail-main.is-product-template .product-cta-panel .primary-action:hover,
.product-detail-main.is-product-template .product-cta-panel .primary-action:focus-visible {
  background: #ffffff;
  color: #050505;
}

.product-detail-main.is-product-template .detail-actions .secondary-action {
  border-color: rgba(255, 255, 255, 0.12);
  color: var(--white);
}

.product-tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.product-tag-list span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  line-height: 1;
}

.product-preview-shell,
.product-process-shell,
.product-feature-card,
.product-audience-card,
.product-cta-panel {
  border: 1px solid rgba(255, 255, 255, 0.08);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.012)),
    #0b0c0f;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.product-preview-shell {
  position: relative;
  display: grid;
  gap: 18px;
  min-height: 430px;
  padding: 18px;
  overflow: hidden;
  border-radius: 26px;
}

.product-preview-shell::before,
.product-process-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(circle at 16% 18%, rgba(93, 136, 255, 0.12), transparent 28%),
    radial-gradient(circle at 86% 82%, rgba(55, 93, 170, 0.1), transparent 30%);
}

.product-preview-topbar,
.product-preview-body,
.product-process-header,
.product-process-layout {
  position: relative;
  z-index: 1;
}

.product-preview-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.product-preview-caption,
.product-process-header span,
.product-preview-sidepanel-head span,
.product-preview-stat span,
.product-feature-card span,
.product-audience-card span {
  display: block;
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-preview-topbar strong,
.product-process-header strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 22px;
  font-weight: 600;
  line-height: 1.16;
}

.product-preview-status {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}

.product-preview-body {
  display: grid;
  grid-template-columns: 164px minmax(0, 1fr);
  gap: 16px;
  min-height: 320px;
}

.product-preview-list,
.product-preview-thread,
.product-preview-sidepanel,
.product-process-column,
.product-process-card,
.product-point-list article {
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: rgba(255, 255, 255, 0.018);
}

.product-preview-list {
  display: grid;
  gap: 10px;
  align-content: start;
  padding: 12px;
  border-radius: 20px;
}

.product-preview-item {
  display: grid;
  gap: 6px;
  padding: 14px 12px;
  border: 1px solid transparent;
  border-radius: 16px;
  color: var(--muted);
}

.product-preview-item strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.16;
}

.product-preview-item span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.3;
}

.product-preview-item.is-active {
  border-color: rgba(118, 149, 230, 0.36);
  background: rgba(88, 118, 194, 0.14);
}

.product-preview-main {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(230px, 0.78fr);
  gap: 16px;
}

.product-preview-thread {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 12px;
  padding: 16px;
  border-radius: 22px;
}

.preview-bubble {
  max-width: 84%;
  padding: 14px 15px;
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 16px;
  color: var(--white);
  font-size: 15px;
  font-weight: 400;
  line-height: 1.42;
}

.preview-bubble.is-patient {
  align-self: flex-start;
  background: rgba(255, 255, 255, 0.05);
}

.preview-bubble.is-ai {
  align-self: flex-end;
  background: rgba(88, 118, 194, 0.18);
}

.preview-bubble.is-note {
  max-width: 100%;
  background: rgba(255, 255, 255, 0.028);
  color: var(--muted);
}

.product-preview-sidepanel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 16px;
  border-radius: 22px;
}

.product-preview-sidepanel-head strong {
  display: block;
  margin-top: 8px;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
  line-height: 1.16;
}

.product-preview-meta {
  display: grid;
  gap: 10px;
}

.product-preview-stat {
  display: grid;
  gap: 8px;
  padding: 14px;
  border-radius: 16px;
}

.product-preview-stat strong {
  color: var(--white);
  font-size: 15px;
  font-weight: 550;
  line-height: 1.2;
}

.product-detail-main.is-product-template .detail-workflow {
  grid-template-columns: minmax(0, 1.06fr) minmax(280px, 0.84fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}

.product-process-shot {
  min-height: 520px;
}

.product-process-shell {
  position: relative;
  display: grid;
  gap: 24px;
  min-height: 520px;
  padding: clamp(24px, 3vw, 32px);
  overflow: hidden;
  border-radius: 28px;
}

.product-process-layout {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  min-height: 360px;
}

.product-process-column {
  display: grid;
  gap: 12px;
  align-content: start;
  padding: 14px;
  border-radius: 22px;
}

.product-process-chip {
  display: inline-flex;
  align-items: center;
  min-height: 46px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--white);
  font-size: 14px;
  font-weight: 550;
}

.product-process-center {
  display: grid;
  gap: 16px;
  align-content: center;
}

.product-process-card {
  display: grid;
  gap: 10px;
  padding: 22px;
  border-radius: 22px;
}

.product-process-card span {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.product-process-card strong {
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 550;
  line-height: 1.18;
}

.product-process-card.is-accent {
  background: rgba(88, 118, 194, 0.14);
  border-color: rgba(118, 149, 230, 0.28);
}

.product-process-copy {
  display: grid;
  gap: 18px;
  align-content: center;
}

.product-detail-main.is-product-template .detail-section-head,
.product-process-copy {
  max-width: 820px;
}

.product-detail-main.is-product-template .detail-section-head h2,
.product-detail-main.is-product-template .product-process-copy h2,
.product-detail-main.is-product-template .product-cta-copy h2 {
  font-size: clamp(38px, 4vw, 52px);
  line-height: 0.98;
}

.product-process-copy > p:not(.eyebrow),
.product-cta-copy p:not(.eyebrow) {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.48;
}

.product-point-list {
  display: grid;
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line-soft);
  border-radius: 22px;
  background: var(--line-soft);
}

.product-point-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 18px 20px;
}

.product-point-list strong {
  color: var(--white);
  font-size: 17px;
  font-weight: 500;
  line-height: 1.3;
  text-transform: none;
}

.product-point-list span {
  color: var(--quiet);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

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

.product-feature-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 200px;
  padding: 24px;
  border-radius: 22px;
}

.product-feature-card.is-wide {
  grid-column: span 2;
}

.product-feature-card h3,
.product-audience-card h3 {
  margin: 0;
  color: var(--white);
  font-size: clamp(22px, 2vw, 28px);
  font-weight: 550;
  line-height: 1.1;
}

.product-feature-card p,
.product-audience-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.45;
}

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

.product-audience-card {
  display: grid;
  gap: 14px;
  align-content: start;
  min-height: 176px;
  padding: 24px;
  border-radius: 22px;
}

.detail-cta-template {
  padding-bottom: clamp(84px, 10vw, 144px);
}

.product-cta-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  padding: clamp(28px, 4vw, 36px);
  border-radius: 26px;
}

.product-cta-copy {
  display: grid;
  gap: 16px;
  max-width: 760px;
}

@media (max-width: 1180px) {
  .product-detail-main.is-product-template .product-detail-hero,
  .product-detail-main.is-product-template .detail-workflow,
  .product-cta-panel {
    grid-template-columns: 1fr;
  }

  .product-detail-main.is-product-template .detail-hero-copy {
    max-width: 760px;
  }

  .product-preview-body,
  .product-preview-main,
  .product-process-layout,
  .product-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-feature-card.is-wide {
    grid-column: auto;
  }

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

@media (max-width: 860px) {
  .product-detail-main.is-product-template .product-detail-hero {
    padding-top: 126px;
    padding-bottom: 18px;
  }

  .product-detail-main.is-product-template .detail-hero-copy h1 {
    font-size: clamp(40px, 10vw, 52px);
  }

  .product-detail-main.is-product-template .detail-lead {
    font-size: 18px;
  }

  .product-preview-shell,
  .product-process-shell {
    min-height: auto;
    padding: 16px;
    border-radius: 22px;
  }

  .product-preview-body,
  .product-preview-main,
  .product-process-layout,
  .product-feature-grid,
  .product-audience-grid,
  .product-cta-panel {
    grid-template-columns: 1fr;
  }

  .product-preview-topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-process-shot {
    min-height: auto;
  }

  .product-process-header strong {
    font-size: 20px;
  }

  .product-process-card strong {
    font-size: 20px;
  }

  .product-detail-main.is-product-template .detail-section-head h2,
  .product-detail-main.is-product-template .product-process-copy h2,
  .product-detail-main.is-product-template .product-cta-copy h2 {
    font-size: clamp(32px, 8vw, 42px);
  }

  .product-point-list article {
    grid-template-columns: 1fr;
  }

  .product-feature-card,
  .product-audience-card {
    min-height: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  .home-reviews-track {
    animation: none !important;
    transform: none !important;
  }

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

.blog-page--digest {
  gap: 28px;
}

.news-digest-head {
  display: grid;
  gap: 18px;
  max-width: 980px;
}

.news-digest-head h1 {
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(52px, 7vw, 96px);
  font-weight: 600;
  line-height: 0.92;
}

.news-digest-head > p {
  max-width: 840px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(18px, 1.6vw, 22px);
  font-weight: 350;
  line-height: 1.42;
}

.news-digest-note {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-digest-controls {
  align-items: flex-end;
}

.news-digest-search {
  width: min(100vw - 48px, 340px);
  max-width: 100%;
}

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

.news-digest-card {
  min-width: 0;
}

.news-digest-card[hidden] {
  display: none !important;
}

.news-digest-card.is-featured {
  grid-column: span 2;
}

.news-digest-link {
  display: grid;
  gap: 16px;
  height: 100%;
  padding: clamp(24px, 2.8vw, 34px);
  border: 1px solid var(--line-soft);
  border-radius: 28px;
  background:
    radial-gradient(circle at top right, rgba(160, 130, 255, 0.12), transparent 32%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0.015)),
    rgba(12, 12, 14, 0.92);
  color: inherit;
  text-decoration: none;
  transition:
    border-color 220ms ease,
    background 220ms ease,
    transform 220ms ease,
    box-shadow 220ms ease;
}

.news-digest-link:hover,
.news-digest-link:focus-visible {
  border-color: rgba(255, 255, 255, 0.28);
  box-shadow: 0 26px 64px rgba(0, 0, 0, 0.26);
  transform: translateY(-2px);
}

.news-digest-kicker {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px 14px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.news-digest-link h2 {
  max-width: 920px;
  margin: 0;
  color: var(--white);
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 650;
  line-height: 1.06;
}

.news-digest-card.is-featured .news-digest-link h2 {
  font-size: clamp(34px, 3.8vw, 56px);
  line-height: 0.98;
}

.news-digest-link p {
  max-width: 900px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 350;
  line-height: 1.45;
}

.news-digest-read {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--white);
  font-size: 15px;
  font-weight: 650;
}

.news-digest-read::after {
  content: "↗";
  font-size: 15px;
}

.news-article-main {
  min-height: 100vh;
  padding-top: clamp(108px, 9vw, 136px);
  padding-bottom: clamp(72px, 8vw, 118px);
}

.news-article-shell {
  width: min(100% - var(--page-gutter), 920px);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.news-article-back {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  color: var(--muted);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: color 180ms ease;
}

.news-article-back:hover,
.news-article-back:focus-visible {
  color: var(--white);
}

.news-article-header {
  display: grid;
  gap: 16px;
}

.news-article-label {
  margin: 0;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.news-article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  color: var(--quiet);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.news-article-header h1 {
  max-width: 900px;
  margin: 0;
  color: var(--white);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(50px, 7vw, 92px);
  font-weight: 600;
  line-height: 0.94;
}

.news-article-lead {
  max-width: 860px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(20px, 1.75vw, 25px);
  font-weight: 350;
  line-height: 1.46;
}

.news-article-prose {
  display: grid;
  gap: 30px;
}

.news-article-prose section {
  display: grid;
  gap: 14px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.news-article-prose h2 {
  margin: 0;
  color: var(--white);
  font-size: clamp(24px, 2vw, 34px);
  font-weight: 650;
  line-height: 1.1;
}

.news-article-prose p {
  max-width: 840px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(17px, 1.35vw, 20px);
  font-weight: 350;
  line-height: 1.6;
}

.news-article-source a {
  color: var(--white);
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.28);
  text-underline-offset: 3px;
}

.news-article-source a:hover,
.news-article-source a:focus-visible {
  text-decoration-color: rgba(255, 255, 255, 0.82);
}

.news-digest-read::after {
  content: "\2197";
}

@media (max-width: 980px) {
  .news-digest-grid {
    grid-template-columns: 1fr;
  }

  .news-digest-card.is-featured {
    grid-column: auto;
  }
}

@media (max-width: 860px) {
  .news-digest-controls {
    align-items: stretch;
    flex-direction: column;
  }

  .news-digest-search {
    width: 100%;
  }

  .news-digest-note,
  .news-digest-kicker,
  .news-article-meta {
    gap: 8px 12px;
    justify-content: flex-start;
  }

  .news-digest-link {
    border-radius: 24px;
    padding: 22px 20px;
  }

  .news-digest-card.is-featured .news-digest-link h2,
  .news-digest-link h2 {
    font-size: clamp(28px, 7vw, 38px);
    line-height: 1.02;
  }

  .news-article-main {
    padding-top: 126px;
  }

  .news-article-shell {
    width: min(100% - var(--page-gutter-mobile), 920px);
    gap: 24px;
  }

  .news-article-header h1 {
    font-size: clamp(40px, 10vw, 54px);
  }

  .news-article-lead {
    font-size: 18px;
  }

  .news-article-prose p {
    font-size: 17px;
    line-height: 1.56;
  }
}

@media (max-width: 560px) {
  .product-filter-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .product-filter-list button {
    min-height: 44px;
    padding: 10px 14px;
    font-size: 14px;
  }

  .contact-link--email {
    font-size: clamp(18px, 6.1vw, 22px);
    line-height: 1.14;
  }

  .news-digest-note {
    font-size: 12px;
    letter-spacing: 0.02em;
  }

  .news-digest-link {
    padding: 20px 18px;
  }

  .news-article-header {
    gap: 14px;
  }

  .news-article-lead,
  .news-article-prose p,
  .news-article-source a {
    overflow-wrap: anywhere;
  }
}

.product-detail-main.is-solution-clean-page {
  --solution-accent: #12c981;
  --solution-accent-deep: #007d54;
  --solution-accent-ink: rgba(18, 201, 129, 0.95);
  --solution-accent-soft: rgba(18, 201, 129, 0.14);
  --solution-accent-faint: rgba(18, 201, 129, 0.08);
  --solution-panel-shadow: rgba(6, 42, 31, 0.2);
}

.product-detail-main.is-solution-clean-page.is-nomenclature-page {
  --solution-accent: #5b7cff;
  --solution-accent-deep: #253fc8;
  --solution-accent-ink: rgba(91, 124, 255, 0.95);
  --solution-accent-soft: rgba(91, 124, 255, 0.16);
  --solution-accent-faint: rgba(91, 124, 255, 0.08);
  --solution-panel-shadow: rgba(20, 35, 98, 0.22);
}

.product-detail-main.is-solution-clean-page.is-drawing-page,
.product-detail-main.is-solution-clean-page.is-tender-page {
  --solution-accent: #ffb13d;
  --solution-accent-deep: #ad6417;
  --solution-accent-ink: rgba(255, 177, 61, 0.95);
  --solution-accent-soft: rgba(255, 177, 61, 0.17);
  --solution-accent-faint: rgba(255, 177, 61, 0.08);
  --solution-panel-shadow: rgba(99, 58, 15, 0.22);
}

.product-detail-main.is-solution-clean-page.is-docs-page {
  --solution-accent: #9b78ff;
  --solution-accent-deep: #5634b4;
  --solution-accent-ink: rgba(155, 120, 255, 0.95);
  --solution-accent-soft: rgba(155, 120, 255, 0.16);
  --solution-accent-faint: rgba(155, 120, 255, 0.08);
  --solution-panel-shadow: rgba(52, 31, 104, 0.22);
}

.product-detail-main.is-solution-clean-page.is-docmodifier-page {
  --solution-accent: #ff7b4f;
  --solution-accent-deep: #aa3f21;
  --solution-accent-ink: rgba(255, 123, 79, 0.95);
  --solution-accent-soft: rgba(255, 123, 79, 0.16);
  --solution-accent-faint: rgba(255, 123, 79, 0.08);
  --solution-panel-shadow: rgba(99, 42, 22, 0.22);
}

.product-detail-main.is-solution-clean-page .product-detail-hero {
  grid-template-columns: minmax(0, 0.72fr) minmax(460px, 1fr);
  gap: clamp(32px, 4.6vw, 68px);
  align-items: start;
  min-height: min(800px, calc(100svh - 8px));
  padding-top: clamp(132px, 13vh, 160px);
  padding-bottom: clamp(22px, 3vw, 34px);
}

.product-detail-main.is-solution-clean-page .detail-hero-copy {
  align-content: start;
  padding-top: 0;
}

.product-detail-main.is-solution-clean-page .detail-hero-copy h1 {
  max-width: 720px;
  font-size: clamp(46px, 5vw, 78px);
  line-height: 0.94;
}

.product-detail-main.is-solution-clean-page .detail-lead {
  max-width: 660px;
  margin-top: clamp(30px, 4vw, 42px);
  font-size: clamp(18px, 1.7vw, 22px);
  line-height: 1.44;
}

.product-detail-main.is-solution-clean-page .detail-actions {
  margin-top: clamp(38px, 4.8vw, 54px);
}

.product-detail-main.is-solution-clean-page .detail-actions .primary-action {
  border-color: color-mix(in srgb, var(--solution-accent) 34%, transparent);
  background:
    radial-gradient(circle at 18% 20%, color-mix(in srgb, var(--solution-accent) 32%, transparent), transparent 28%),
    linear-gradient(135deg, var(--solution-accent) 0%, var(--solution-accent-deep) 66%, #111312 100%);
  color: var(--white);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.16),
    0 18px 34px var(--solution-panel-shadow),
    0 0 32px var(--solution-accent-soft);
}

.product-detail-main.is-solution-clean-page .detail-hero-visual {
  min-height: clamp(430px, 38vw, 590px);
  padding: 0;
  border: 0;
  background: none;
  box-shadow: none;
}

.product-detail-main.is-solution-clean-page .detail-hero-visual::before,
.product-detail-main.is-solution-clean-page .detail-hero-visual::after {
  content: none;
}

.solution-hero-shot {
  position: relative;
  display: grid;
  align-content: center;
  min-height: clamp(430px, 38vw, 590px);
  margin: 0;
  padding: clamp(22px, 2.4vw, 34px);
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--solution-accent) 22%, transparent);
  border-radius: 26px;
  background:
    radial-gradient(circle at 12% 16%, color-mix(in srgb, var(--solution-accent) 18%, transparent), transparent 28%),
    radial-gradient(circle at 86% 18%, var(--solution-accent-soft), transparent 34%),
    radial-gradient(circle at 52% 100%, color-mix(in srgb, var(--solution-accent-deep) 18%, transparent), transparent 36%),
    linear-gradient(180deg, #eef7f2, #e4efe9);
  box-shadow:
    0 24px 62px rgba(0, 0, 0, 0.22),
    0 0 56px var(--solution-accent-faint);
}

.solution-hero-shot::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.5;
  background-image:
    linear-gradient(rgba(0, 85, 57, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0, 85, 57, 0.045) 1px, transparent 1px);
  background-size: 20px 20px;
  pointer-events: none;
}

.solution-hero-shot::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    radial-gradient(circle at 50% 52%, transparent 54%, rgba(0, 100, 70, 0.13) 76%, rgba(0, 52, 36, 0.24) 100%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  pointer-events: none;
}

.solution-hero-shot img {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 1040px);
  margin: 0 auto;
  aspect-ratio: 16 / 9;
  border-radius: 16px;
  object-fit: contain;
  object-position: top center;
  background: #f3f0ea;
  box-shadow:
    0 24px 64px rgba(5, 37, 27, 0.18),
    0 0 0 1px rgba(255, 255, 255, 0.42);
}

.product-detail-main.is-solution-clean-page.is-drawing-page .detail-hero-visual,
.product-detail-main.is-solution-clean-page.is-drawing-page .solution-hero-shot,
.product-detail-main.is-solution-clean-page.is-nomenclature-page .detail-hero-visual,
.product-detail-main.is-solution-clean-page.is-nomenclature-page .solution-hero-shot {
  min-height: 0;
}

.product-detail-main.is-solution-clean-page.is-drawing-page .solution-hero-shot,
.product-detail-main.is-solution-clean-page.is-nomenclature-page .solution-hero-shot {
  justify-self: center;
  width: max-content;
  max-width: 100%;
  padding: 7px;
  border-color: rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.045);
  box-shadow:
    0 22px 54px rgba(0, 0, 0, 0.28),
    0 0 0 1px rgba(255, 177, 61, 0.08);
}

.product-detail-main.is-solution-clean-page.is-nomenclature-page .solution-hero-shot {
  width: min(100%, 860px);
}

.product-detail-main.is-solution-clean-page.is-drawing-page .solution-hero-shot::before,
.product-detail-main.is-solution-clean-page.is-drawing-page .solution-hero-shot::after,
.product-detail-main.is-solution-clean-page.is-nomenclature-page .solution-hero-shot::before,
.product-detail-main.is-solution-clean-page.is-nomenclature-page .solution-hero-shot::after {
  content: none;
}

.solution-hero-expand {
  position: relative;
  z-index: 2;
  display: block;
  margin: 0;
  padding: 0;
  border: 0;
  border-radius: 14px;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
  transition:
    transform 220ms ease,
    filter 220ms ease;
}

.solution-hero-expand:hover,
.solution-hero-expand:focus-visible {
  transform: translateY(-2px);
  filter: brightness(1.02);
}

.solution-hero-expand:focus-visible {
  outline: 2px solid var(--solution-accent);
  outline-offset: 4px;
}

.solution-hero-expand::after {
  content: "↗";
  position: absolute;
  top: 12px;
  right: 12px;
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.72);
  color: var(--white);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.28);
  opacity: 0.88;
  pointer-events: none;
  transition:
    opacity 220ms ease,
    transform 220ms ease,
    background 220ms ease;
}

.solution-hero-expand:hover::after,
.solution-hero-expand:focus-visible::after {
  opacity: 1;
  transform: scale(1.04);
  background: rgba(12, 12, 13, 0.86);
}

.solution-step-expand {
  position: relative;
  display: block;
  width: 100%;
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: inherit;
  cursor: zoom-in;
}

.solution-step-expand:focus-visible {
  outline: 2px solid var(--solution-accent);
  outline-offset: 3px;
}

.solution-step-expand::after {
  content: "↗";
  position: absolute;
  top: 10px;
  right: 10px;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  background: rgba(10, 10, 11, 0.68);
  color: var(--white);
  font-size: 15px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  pointer-events: none;
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    background 180ms ease;
}

.solution-step-expand:hover::after,
.solution-step-expand:focus-visible::after {
  opacity: 1;
  transform: scale(1.04);
  background: rgba(12, 12, 13, 0.84);
}

.product-detail-main.is-solution-clean-page.is-drawing-page .solution-hero-shot img {
  width: auto;
  height: clamp(480px, 37vw, 585px);
  max-width: min(100%, 680px);
  aspect-ratio: auto;
  border-radius: 12px;
  object-position: center;
  background: transparent;
  box-shadow:
    0 18px 46px rgba(5, 37, 27, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.36);
}

.product-detail-main.is-solution-clean-page.is-nomenclature-page .solution-hero-shot img {
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  border-radius: 12px;
  object-position: center;
  background: transparent;
  box-shadow:
    0 18px 46px rgba(14, 31, 56, 0.16),
    0 0 0 1px rgba(255, 255, 255, 0.36);
}

.product-detail-main.is-solution-clean-page.is-nomenclature-page .solution-hero-shot figcaption {
  display: none;
}

.image-preview-dialog {
  width: min(96vw, 1180px);
  max-width: 1180px;
  max-height: 94vh;
  padding: 0;
  overflow: visible;
  border: 0;
  border-radius: 18px;
  background: transparent;
}

.image-preview-dialog::backdrop {
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(8px);
}

.image-preview-dialog img {
  display: block;
  width: auto;
  max-width: 100%;
  max-height: 90vh;
  margin: 0 auto;
  border-radius: 16px;
  background: #f3f0ea;
  box-shadow:
    0 28px 80px rgba(0, 0, 0, 0.48),
    0 0 0 1px rgba(255, 255, 255, 0.16);
}

.image-preview-close {
  position: absolute;
  top: -18px;
  right: -18px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.96);
  color: #050505;
  font-size: 28px;
  font-weight: 350;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.28);
}

.image-preview-close:hover,
.image-preview-close:focus-visible {
  background: var(--white);
}

.solution-hero-shot figcaption {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 18px;
  align-items: center;
  width: min(100%, 720px);
  margin: clamp(18px, 2vw, 26px) auto 0;
  padding: 18px 22px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  background: rgba(15, 16, 18, 0.9);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.solution-hero-shot figcaption span {
  color: rgba(255, 255, 255, 0.55);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  line-height: 1.1;
  text-transform: uppercase;
}

.solution-hero-shot figcaption strong {
  color: var(--white);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 650;
  line-height: 1.08;
}

.product-detail-main.is-solution-clean-page .detail-workflow {
  display: block;
  padding-top: clamp(58px, 7vw, 92px);
}

.product-detail-main.is-solution-clean-page .workflow-copy {
  display: grid;
  align-content: start;
}

.product-detail-main.is-solution-clean-page .workflow-copy h2,
.product-detail-main.is-solution-clean-page .detail-section-head h2,
.product-detail-main.is-solution-clean-page .detail-cta h2 {
  font-size: clamp(42px, 4.5vw, 66px);
  font-weight: 500;
  line-height: 0.98;
}

.solution-section-intro {
  max-width: 920px;
  margin: 20px 0 0;
  color: var(--muted);
  font-size: 18px;
  font-weight: 350;
  line-height: 1.42;
}

.product-detail-main.is-solution-clean-page .workflow-steps {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: clamp(32px, 4vw, 44px);
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
}

.product-detail-main.is-solution-clean-page .workflow-steps article {
  position: relative;
  display: grid;
  grid-template-columns: clamp(82px, 7vw, 112px) minmax(0, 1fr);
  align-items: start;
  gap: 16px;
  min-height: 328px;
  padding: 22px 24px 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, var(--solution-accent-soft), transparent 44%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0.018)),
    #111312;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.04),
    0 22px 44px var(--solution-panel-shadow);
}

.product-detail-main.is-solution-clean-page .workflow-steps article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.18;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.product-detail-main.is-solution-clean-page .workflow-steps span {
  position: relative;
  z-index: 1;
  display: block;
  margin: 0;
  color: rgba(255, 255, 255, 0.44);
  font-family: "Oswald", "Tilda Sans", Inter, ui-sans-serif, system-ui, sans-serif;
  font-size: clamp(54px, 5vw, 76px);
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.82;
}

.solution-step-copy {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 10px;
}

.solution-step-copy strong {
  display: block;
  color: var(--white);
  font-size: clamp(23px, 1.9vw, 30px);
  font-weight: 650;
  line-height: 1.06;
}

.solution-step-copy p {
  max-width: 40ch;
  margin: 0;
  color: var(--muted);
  font-size: 16px;
  font-weight: 350;
  line-height: 1.44;
}

.solution-step-shot {
  position: relative;
  z-index: 1;
  grid-column: 1 / -1;
  margin: 6px 0 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background: #ece9e3;
  box-shadow: 0 16px 34px rgba(0, 0, 0, 0.22);
}

.solution-step-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 5.8;
  object-fit: cover;
  object-position: top left;
}

.product-detail-main.is-solution-clean-page.is-drawing-page .workflow-steps article {
  min-height: 0;
}

.product-detail-main.is-solution-clean-page.is-drawing-page .solution-step-shot {
  margin-top: 10px;
  background: #f2efe9;
}

.product-detail-main.is-solution-clean-page.is-drawing-page .solution-step-shot img {
  aspect-ratio: 16 / 6.8;
  object-fit: cover;
  object-position: 50% 0;
}

.product-detail-main.is-solution-clean-page.is-drawing-page .workflow-steps article:nth-child(2) .solution-step-shot img,
.product-detail-main.is-solution-clean-page.is-drawing-page .workflow-steps article:nth-child(3) .solution-step-shot img {
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center;
}

.product-detail-main.is-solution-clean-page.is-drawing-page .workflow-steps article:nth-child(4) .solution-step-shot img {
  aspect-ratio: 16 / 6.8;
  object-position: 50% 43%;
}

.product-detail-main.is-solution-clean-page.is-nomenclature-page .workflow-steps article:nth-child(2) .solution-step-shot img {
  aspect-ratio: 16 / 5.8;
  object-fit: cover;
  object-position: 50% 52%;
}

.product-detail-main.is-solution-clean-page .solution-inside {
  padding-top: clamp(74px, 8vw, 112px);
}

.product-detail-main.is-solution-clean-page .solution-inside .detail-section-head {
  max-width: 820px;
  margin-bottom: clamp(28px, 4vw, 42px);
}

.product-detail-main.is-solution-clean-page .solution-inside .detail-section-head p {
  max-width: 760px;
  color: var(--muted);
}

.product-detail-main.is-solution-clean-page .solution-inside .capability-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: none;
}

.product-detail-main.is-solution-clean-page .solution-inside .capability-grid article {
  position: relative;
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 0;
  padding: 20px 20px 24px;
  overflow: hidden;
  border: 1px solid rgba(17, 36, 28, 0.1);
  border-radius: 24px;
  background:
    radial-gradient(circle at top right, var(--solution-accent-faint), transparent 44%),
    linear-gradient(180deg, rgba(244, 242, 236, 0.98), rgba(232, 228, 219, 0.98)),
    #efe8df;
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.58),
    0 20px 40px rgba(6, 42, 31, 0.12);
}

.product-detail-main.is-solution-clean-page .solution-inside .capability-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.28;
  background-image:
    linear-gradient(rgba(10, 28, 20, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10, 28, 20, 0.04) 1px, transparent 1px);
  background-size: 18px 18px;
  pointer-events: none;
}

.solution-capability-shot,
.product-detail-main.is-solution-clean-page .solution-inside .capability-grid h3,
.product-detail-main.is-solution-clean-page .solution-inside .capability-grid p {
  position: relative;
  z-index: 1;
}

.solution-capability-shot {
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(17, 36, 28, 0.1);
  border-radius: 16px;
  background: #f2eee7;
  box-shadow: 0 14px 30px rgba(6, 42, 31, 0.1);
}

.solution-capability-shot img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 7.2;
  object-fit: cover;
  object-position: top left;
}

.product-detail-main.is-solution-clean-page .solution-inside .capability-grid h3 {
  margin: 0;
  color: #11131a;
  font-size: clamp(22px, 1.75vw, 28px);
  font-weight: 650;
  line-height: 1.06;
}

.product-detail-main.is-solution-clean-page .solution-inside .capability-grid p {
  max-width: 36ch;
  margin: 0;
  color: rgba(20, 26, 36, 0.78);
  font-size: 16px;
  line-height: 1.48;
}

.product-detail-main.is-solution-clean-page .detail-section-screens {
  padding-top: clamp(78px, 8vw, 116px);
}

.product-detail-main.is-solution-clean-page .solution-screen-slide {
  flex-basis: clamp(760px, 72vw, 1040px);
}

@media (max-width: 1120px) {
  .product-detail-main.is-solution-clean-page .product-detail-hero {
    grid-template-columns: 1fr;
  }

  .product-detail-main.is-solution-clean-page .detail-hero-visual,
  .solution-hero-shot {
    min-height: clamp(390px, 52vw, 560px);
  }

  .product-detail-main.is-solution-clean-page .solution-inside .capability-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .product-detail-main.is-solution-clean-page.is-drawing-page .solution-hero-shot img {
    height: clamp(460px, 56vw, 560px);
  }
}

@media (max-width: 860px) {
  .product-detail-main.is-solution-clean-page .product-detail-hero {
    min-height: auto;
    padding-top: 126px;
  }

  .product-detail-main.is-solution-clean-page .detail-hero-copy h1 {
    font-size: clamp(40px, 12vw, 62px);
  }

  .solution-hero-shot {
    min-height: 0;
    padding: 14px;
    border-radius: 18px;
  }

  .solution-hero-shot img {
    border-radius: 12px;
  }

  .product-detail-main.is-solution-clean-page.is-drawing-page .solution-hero-shot img {
    width: min(100%, 560px);
    height: auto;
  }

  .solution-hero-expand::after {
    top: 10px;
    right: 10px;
    width: 34px;
    height: 34px;
    font-size: 16px;
  }

  .image-preview-dialog {
    width: calc(100vw - 24px);
  }

  .image-preview-close {
    top: 8px;
    right: 8px;
  }

  .solution-hero-shot figcaption {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 14px;
    border-radius: 14px;
  }

  .product-detail-main.is-solution-clean-page .workflow-steps,
  .product-detail-main.is-solution-clean-page .solution-inside .capability-grid {
    grid-template-columns: 1fr;
  }

  .product-detail-main.is-solution-clean-page .workflow-steps article {
    min-height: 0;
    grid-template-columns: 74px minmax(0, 1fr);
    padding: 18px;
    border-radius: 18px;
  }

  .solution-step-shot img {
    aspect-ratio: 16 / 7.5;
  }

  .product-detail-main.is-solution-clean-page .solution-inside .capability-grid article {
    min-height: 0;
    border-radius: 18px;
  }

  .product-detail-main.is-solution-clean-page .solution-screen-slide {
    flex-basis: min(100%, calc(100vw - var(--page-gutter-mobile)));
  }
}
