.bespoke-potolochnik {
  --pt-black: #0b0c0d;
  --pt-ink: #141619;
  --pt-paper: #f2f0e9;
  --pt-white: #fbfbf8;
  --pt-blue: #0879f9;
  --pt-blue-dark: #0758c8;
  --pt-line: rgba(20, 22, 25, 0.18);
  --pt-selected-color: #101111;
  overflow: clip;
  color: var(--pt-ink);
  background: var(--pt-paper);
  font-family: "Manrope", sans-serif;
}

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

.bespoke-potolochnik h1,
.bespoke-potolochnik h2,
.bespoke-potolochnik h3,
.bespoke-potolochnik p,
.bespoke-potolochnik figure,
.bespoke-potolochnik ol,
.bespoke-potolochnik ul {
  margin: 0;
}

.bespoke-potolochnik img,
.bespoke-potolochnik video {
  display: block;
  max-width: 100%;
}

.pt-shell {
  width: min(calc(100% - 72px), 1360px);
  margin-inline: auto;
}

.pt-reading-progress {
  position: fixed;
  z-index: 60;
  inset: 0 0 auto;
  height: 3px;
  pointer-events: none;
}

.pt-reading-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--pt-blue);
  transform: scaleX(0);
  transform-origin: left;
}

.pt-index {
  color: inherit;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  line-height: 1.4;
  text-transform: uppercase;
}

.pt-heading {
  max-width: 1040px;
}

.pt-heading h2 {
  margin-top: 30px;
  font-size: clamp(52px, 7vw, 112px);
  font-weight: 500;
  line-height: 0.9;
  letter-spacing: -0.07em;
}

.pt-heading > p:last-child {
  max-width: 650px;
  margin-top: 32px;
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.6;
}

.pt-heading-row {
  max-width: none;
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(280px, 0.52fr);
  gap: clamp(48px, 9vw, 150px);
  align-items: end;
}

.pt-heading-row > p:last-child {
  margin-top: 0;
  padding-bottom: 8px;
}

.pt-hero {
  position: relative;
  min-height: min(1050px, 100svh);
  overflow: hidden;
  isolation: isolate;
  color: #fff;
  background: #090a0b;
}

.pt-hero-video,
.pt-hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.pt-hero-video {
  z-index: -3;
  object-fit: cover;
}

.pt-hero-shade {
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(3, 4, 5, 0.88) 0%, rgba(3, 4, 5, 0.4) 54%, rgba(3, 4, 5, 0.68) 100%),
    linear-gradient(0deg, rgba(3, 4, 5, 0.78) 0%, transparent 50%);
}

.pt-hero-grid {
  width: min(calc(100% - 72px), 1510px);
  min-height: min(1050px, 100svh);
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.46fr);
  grid-template-rows: auto 1fr auto;
  gap: 28px 5vw;
  margin-inline: auto;
  padding: 36px 0 46px;
}

.pt-hero-topline {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pt-hero-copy {
  align-self: center;
  padding-top: 30px;
}

.pt-hero-copy > p {
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.pt-hero h1 {
  max-width: 1000px;
  font-size: clamp(74px, 9.9vw, 164px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.085em;
}

.pt-hero h1 em {
  color: var(--pt-blue);
  font-style: normal;
}

.pt-hero-lead {
  align-self: center;
  justify-self: end;
  max-width: 420px;
  padding-top: 160px;
}

.pt-hero-lead p {
  color: rgba(255, 255, 255, 0.76);
  font-size: clamp(17px, 1.25vw, 21px);
  line-height: 1.55;
}

.pt-hero-lead a {
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 40px;
  margin-top: 34px;
  padding: 0 26px;
  border: 1px solid rgba(255, 255, 255, 0.42);
  border-radius: 999px;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.pt-hero-lead a:hover,
.pt-hero-lead a:focus-visible {
  color: var(--pt-black);
  background: #fff;
}

.pt-hero-product {
  --pt-float-x: 0px;
  --pt-float-y: 0px;
  position: absolute;
  z-index: -1;
  right: -6vw;
  bottom: -9vw;
  width: min(63vw, 1010px);
  opacity: 0.9;
  filter: drop-shadow(0 40px 70px rgba(0, 0, 0, 0.48));
  transform: translate(var(--pt-float-x), var(--pt-float-y)) rotate(-5deg);
  transition: transform 280ms ease-out;
}

.pt-hero-product img {
  width: 100%;
}

.pt-task {
  padding: clamp(110px, 13vw, 220px) 0 clamp(90px, 11vw, 180px);
  background: var(--pt-paper);
}

.pt-statement {
  max-width: 1250px;
  margin-top: 48px;
  font-size: clamp(62px, 9.6vw, 154px);
  font-weight: 500;
  line-height: 0.87;
  letter-spacing: -0.075em;
}

.pt-statement em {
  color: var(--pt-blue);
  font-style: normal;
}

.pt-task-copy {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 130px);
  margin: clamp(65px, 9vw, 130px) 0 0 auto;
  max-width: 990px;
  padding-top: 30px;
  border-top: 1px solid var(--pt-line);
}

.pt-task-copy p {
  font-size: clamp(17px, 1.35vw, 21px);
  line-height: 1.6;
}

.pt-task-copy p:first-child {
  font-weight: 700;
}

.pt-deliverables {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(80px, 10vw, 150px);
  border: 1px solid var(--pt-line);
}

.pt-deliverables article {
  min-height: 390px;
  display: flex;
  flex-direction: column;
  padding: clamp(26px, 3.2vw, 46px);
}

.pt-deliverables article + article {
  border-left: 1px solid var(--pt-line);
}

.pt-deliverables span {
  color: var(--pt-blue);
  font-size: 12px;
  font-weight: 800;
}

.pt-deliverables h2 {
  margin-top: auto;
  font-size: clamp(28px, 2.6vw, 42px);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.045em;
}

.pt-deliverables p {
  max-width: 320px;
  margin-top: 20px;
  color: rgba(20, 22, 25, 0.64);
  font-size: 15px;
  line-height: 1.55;
}

.pt-route {
  padding: clamp(100px, 12vw, 190px) 0;
  color: #fff;
  background: var(--pt-blue);
}

.pt-route .pt-index,
.pt-route .pt-heading-row > p {
  color: rgba(255, 255, 255, 0.72);
}

.pt-route-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  margin-top: clamp(70px, 9vw, 130px);
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.42);
  list-style: none;
}

.pt-route-list li {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  padding: 26px 24px 30px 0;
}

.pt-route-list li + li {
  padding-left: 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.28);
}

.pt-route-list span,
.pt-route-list small {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-route-list small {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.62);
}

.pt-route-list b {
  margin-top: auto;
  font-size: clamp(19px, 1.55vw, 25px);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.pt-live,
.pt-catalog,
.pt-product,
.pt-process,
.pt-coverage {
  padding: clamp(100px, 12vw, 190px) 0;
}

.pt-live {
  background: #dedbd2;
}

.pt-browser {
  --pt-tilt-x: 0deg;
  --pt-tilt-y: 0deg;
  margin-top: clamp(58px, 8vw, 110px);
  overflow: hidden;
  border: 1px solid rgba(20, 22, 25, 0.2);
  border-radius: clamp(16px, 2vw, 28px);
  background: #fff;
  box-shadow: 0 35px 100px rgba(20, 22, 25, 0.18);
  transform: perspective(1700px) rotateX(var(--pt-tilt-y)) rotateY(var(--pt-tilt-x));
  transition: transform 180ms ease-out, box-shadow 220ms ease;
}

.pt-browser:hover {
  box-shadow: 0 46px 130px rgba(20, 22, 25, 0.24);
}

.pt-browser-bar {
  min-height: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 10px 20px;
  border-bottom: 1px solid rgba(20, 22, 25, 0.12);
  color: rgba(20, 22, 25, 0.68);
  background: rgba(255, 255, 255, 0.96);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-browser-bar i {
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 8px;
  border-radius: 50%;
  background: #45a765;
}

.pt-browser > img {
  width: 100%;
  height: auto;
}

.pt-browser figcaption {
  display: grid;
  grid-template-columns: 48px minmax(0, 760px);
  gap: 24px;
  padding: clamp(24px, 3.2vw, 46px);
  border-top: 1px solid rgba(20, 22, 25, 0.12);
  background: #fff;
}

.pt-browser figcaption b {
  color: var(--pt-blue);
  font-size: 21px;
}

.pt-browser figcaption span {
  font-size: clamp(15px, 1.25vw, 19px);
  line-height: 1.55;
}

.pt-catalog {
  color: #f6f6f2;
  background: var(--pt-black);
}

.pt-catalog .pt-index {
  color: rgba(255, 255, 255, 0.55);
}

.pt-catalog-title {
  display: grid;
  grid-template-columns: 0.3fr 1.2fr 0.55fr;
  gap: clamp(34px, 7vw, 110px);
  align-items: end;
}

.pt-catalog-title h2 {
  font-size: clamp(70px, 10vw, 150px);
  font-weight: 500;
  line-height: 0.78;
  letter-spacing: -0.08em;
}

.pt-catalog-title h2 span {
  color: var(--pt-blue);
}

.pt-catalog-title > p:last-child {
  padding-bottom: 8px;
  color: rgba(255, 255, 255, 0.64);
  font-size: clamp(16px, 1.25vw, 20px);
  line-height: 1.6;
}

.pt-browser-dark {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 36px 110px rgba(0, 0, 0, 0.44);
}

.pt-browser-dark figcaption {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.14);
  background: #151719;
}

.pt-catalog-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: clamp(62px, 8vw, 110px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.pt-catalog-notes article {
  padding: 26px clamp(20px, 3vw, 44px) 0 0;
}

.pt-catalog-notes article + article {
  padding-left: clamp(20px, 3vw, 44px);
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.pt-catalog-notes span {
  color: var(--pt-blue);
  font-size: 12px;
  font-weight: 800;
}

.pt-catalog-notes h3 {
  margin-top: 44px;
  font-size: clamp(25px, 2.3vw, 38px);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.pt-catalog-notes p {
  max-width: 320px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.56);
  font-size: 14px;
  line-height: 1.55;
}

.pt-models {
  min-height: 930px;
  display: grid;
  align-items: center;
  padding: clamp(100px, 10vw, 160px) 0;
  color: #fff;
  background: var(--pt-blue);
}

.pt-models-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: center;
}

.pt-model-copy h2 {
  max-width: 620px;
  margin-top: 32px;
  font-size: clamp(50px, 6vw, 92px);
  font-weight: 500;
  line-height: 0.93;
  letter-spacing: -0.065em;
}

.pt-model-copy > p:not(.pt-index) {
  max-width: 550px;
  margin-top: 38px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.6;
}

.pt-model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 48px;
}

.pt-model-tabs button {
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.48);
  border-radius: 50%;
  color: #fff;
  background: transparent;
  font: inherit;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background-color 160ms ease, transform 160ms ease;
}

.pt-model-tabs button:hover,
.pt-model-tabs button:focus-visible {
  transform: translateY(-2px);
}

.pt-model-tabs button[aria-pressed="true"] {
  color: var(--pt-blue);
  background: #fff;
}

.pt-model-description {
  max-width: 560px;
  min-height: 112px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.34);
}

.pt-model-description b {
  display: block;
  font-size: 19px;
}

.pt-model-description p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  line-height: 1.55;
}

.pt-model-stage {
  position: relative;
  min-height: min(680px, 58vw);
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: clamp(22px, 3vw, 48px);
  background:
    radial-gradient(circle at 50% 45%, #f7f8f6 0%, #d9dee1 48%, #b9c1c6 100%);
}

.pt-model-stage::after {
  position: absolute;
  inset: auto 10% 8%;
  height: 10%;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.22);
  filter: blur(32px);
  content: "";
}

.pt-model-stage > span {
  position: absolute;
  top: 30px;
  left: 34px;
  color: rgba(20, 22, 25, 0.24);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.pt-model-stage img {
  position: relative;
  z-index: 1;
  width: 90%;
  max-height: 620px;
  object-fit: contain;
  filter: drop-shadow(0 25px 30px rgba(0, 0, 0, 0.28));
  transition: opacity 150ms ease, transform 250ms ease;
}

.pt-palette {
  padding: clamp(100px, 12vw, 190px) 0;
  background: var(--pt-paper);
}

.pt-palette-board {
  position: relative;
  min-height: 630px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.55fr);
  gap: 30px;
  margin-top: clamp(65px, 9vw, 120px);
  overflow: hidden;
  border: 1px solid var(--pt-line);
  border-radius: clamp(22px, 3vw, 46px);
  background: var(--pt-selected-color);
  transition: background-color 260ms ease;
}

.pt-palette-product {
  display: grid;
  place-items: center;
  padding: 40px;
}

.pt-palette-product img {
  width: 100%;
  filter: drop-shadow(0 34px 44px rgba(0, 0, 0, 0.5));
}

.pt-palette-controls {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(30px, 5vw, 70px);
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  backdrop-filter: blur(18px);
}

.pt-palette-controls small {
  color: rgba(255, 255, 255, 0.56);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.pt-palette-controls strong {
  min-height: 72px;
  display: block;
  margin-top: 18px;
  font-size: clamp(25px, 2.7vw, 42px);
  line-height: 1.05;
  letter-spacing: -0.045em;
}

.pt-swatches {
  display: grid;
  grid-template-columns: repeat(4, 48px);
  gap: 14px;
  margin-top: 40px;
}

.pt-swatches button {
  width: 48px;
  height: 48px;
  border: 2px solid transparent;
  border-radius: 50%;
  outline-offset: 4px;
  background: var(--pt-color);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: transform 160ms ease, border-color 160ms ease;
}

.pt-swatches button:hover,
.pt-swatches button:focus-visible {
  transform: scale(1.08);
}

.pt-swatches button[aria-pressed="true"] {
  border-color: #fff;
}

.pt-palette-controls > p {
  margin-top: 34px;
  color: rgba(255, 255, 255, 0.54);
  font-size: 12px;
  line-height: 1.5;
}

.pt-product {
  color: #fff;
  background: #111315;
}

.pt-product .pt-index,
.pt-product .pt-heading-row > p {
  color: rgba(255, 255, 255, 0.6);
}

.pt-browser-product {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 38px 120px rgba(0, 0, 0, 0.42);
}

.pt-browser-product figcaption {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.12);
  background: #191b1e;
}

.pt-process {
  background: #d8d6cf;
}

.pt-process-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.55fr);
  gap: clamp(50px, 8vw, 120px);
  margin-top: clamp(70px, 9vw, 130px);
  align-items: start;
}

.pt-concept {
  overflow: hidden;
  border-radius: clamp(18px, 2.5vw, 34px);
  background: #0a0b0c;
  box-shadow: 0 34px 90px rgba(20, 22, 25, 0.2);
}

.pt-concept img {
  width: 100%;
}

.pt-concept figcaption {
  padding: 24px 28px;
  color: rgba(255, 255, 255, 0.66);
  font-size: 12px;
}

.pt-process-steps {
  padding: 0;
  border-top: 1px solid var(--pt-line);
  list-style: none;
}

.pt-process-steps li {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 20px;
  padding: 24px 0;
  border-bottom: 1px solid var(--pt-line);
}

.pt-process-steps span {
  color: var(--pt-blue);
  font-size: 11px;
  font-weight: 800;
}

.pt-process-steps b {
  font-size: clamp(21px, 2vw, 31px);
  font-weight: 600;
  letter-spacing: -0.04em;
}

.pt-process-steps p {
  margin-top: 9px;
  color: rgba(20, 22, 25, 0.62);
  font-size: 14px;
  line-height: 1.5;
}

.pt-mobile {
  padding: clamp(100px, 12vw, 190px) 0;
  color: #fff;
  background: var(--pt-blue-dark);
}

.pt-mobile-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.55fr);
  gap: clamp(70px, 12vw, 190px);
  align-items: center;
}

.pt-mobile-copy h2 {
  max-width: 800px;
  margin-top: 32px;
  font-size: clamp(60px, 8vw, 126px);
  font-weight: 500;
  line-height: 0.88;
  letter-spacing: -0.075em;
}

.pt-mobile-copy > p:not(.pt-index) {
  max-width: 620px;
  margin-top: 40px;
  color: rgba(255, 255, 255, 0.72);
  font-size: clamp(17px, 1.3vw, 21px);
  line-height: 1.6;
}

.pt-mobile-copy ul {
  max-width: 620px;
  margin-top: 48px;
  padding: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
  list-style: none;
}

.pt-mobile-copy li {
  padding: 18px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.24);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
}

.pt-phone {
  position: relative;
  width: min(100%, 390px);
  justify-self: center;
  overflow: hidden;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 46px;
  background: #050607;
  box-shadow: 0 46px 100px rgba(0, 0, 0, 0.32);
}

.pt-phone::after {
  position: absolute;
  inset: 0;
  border: 7px solid #08090a;
  border-radius: 46px;
  pointer-events: none;
  content: "";
}

.pt-phone-speaker {
  position: absolute;
  z-index: 2;
  top: 20px;
  left: 50%;
  width: 88px;
  height: 22px;
  border-radius: 999px;
  background: #050607;
  transform: translateX(-50%);
}

.pt-phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 35px;
}

.pt-coverage {
  background: var(--pt-paper);
}

.pt-coverage-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  margin-top: clamp(65px, 9vw, 120px);
}

.pt-coverage-grid figure {
  position: relative;
  min-height: 570px;
  overflow: hidden;
  border-radius: clamp(20px, 2.6vw, 38px);
  background: #dadbd7;
}

.pt-coverage-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pt-coverage-grid figure:hover img {
  transform: scale(1.025);
}

.pt-coverage-grid figure:nth-child(2) img {
  object-fit: contain;
  padding: 6%;
}

.pt-coverage-grid figcaption {
  position: absolute;
  inset: auto 18px 18px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 20px;
  border-radius: 14px;
  color: #fff;
  background: rgba(11, 12, 13, 0.74);
  backdrop-filter: blur(14px);
}

.pt-coverage-grid figcaption span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.pt-coverage-grid figcaption b {
  font-size: 15px;
}

.pt-result {
  padding: clamp(110px, 13vw, 210px) 0;
  color: #fff;
  background: var(--pt-black);
}

.pt-result .pt-index {
  color: rgba(255, 255, 255, 0.5);
}

.pt-result h2 {
  max-width: 1290px;
  margin-top: 46px;
  font-size: clamp(64px, 9.2vw, 146px);
  font-weight: 500;
  line-height: 0.84;
  letter-spacing: -0.08em;
}

.pt-result h2 span {
  color: var(--pt-blue);
}

.pt-result-lead {
  max-width: 760px;
  margin: clamp(55px, 8vw, 110px) 0 0 auto;
  color: rgba(255, 255, 255, 0.68);
  font-size: clamp(18px, 1.7vw, 25px);
  line-height: 1.55;
}

.pt-result-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: clamp(65px, 8vw, 110px);
  border: 1px solid rgba(255, 255, 255, 0.17);
  background: rgba(255, 255, 255, 0.17);
}

.pt-result-grid div {
  min-height: 265px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(28px, 3.6vw, 54px);
  background: var(--pt-black);
}

.pt-result-grid b {
  max-width: 270px;
  font-size: clamp(27px, 2.7vw, 43px);
  font-weight: 500;
  line-height: 1;
  letter-spacing: -0.045em;
}

.pt-result-grid span {
  max-width: 300px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  line-height: 1.5;
}

.pt-live-link {
  min-height: 104px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  margin-top: 50px;
  padding: 0 34px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: #fff;
  font-size: clamp(25px, 3vw, 45px);
  font-weight: 500;
  letter-spacing: -0.04em;
  text-decoration: none;
  transition: color 180ms ease, background-color 180ms ease;
}

.pt-live-link i {
  font-style: normal;
  transition: transform 180ms ease;
}

.pt-live-link:hover,
.pt-live-link:focus-visible {
  color: var(--pt-black);
  background: #fff;
}

.pt-live-link:hover i,
.pt-live-link:focus-visible i {
  transform: translate(4px, -4px);
}

.pt-motion-ready [data-pt-reveal] {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 720ms cubic-bezier(0.22, 1, 0.36, 1), transform 720ms cubic-bezier(0.22, 1, 0.36, 1);
}

.pt-motion-ready [data-pt-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1100px) {
  .pt-hero {
    min-height: 900px;
  }

  .pt-hero-grid {
    min-height: 900px;
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr auto;
  }

  .pt-hero-copy {
    align-self: end;
  }

  .pt-hero-lead {
    align-self: start;
    justify-self: start;
    max-width: 580px;
    padding-top: 0;
    padding-bottom: 20px;
  }

  .pt-hero h1 {
    font-size: clamp(82px, 14vw, 142px);
  }

  .pt-hero-product {
    right: -18vw;
    bottom: -5vw;
    width: 82vw;
    opacity: 0.62;
  }

  .pt-heading-row,
  .pt-catalog-title {
    grid-template-columns: 1fr;
  }

  .pt-heading-row > p:last-child,
  .pt-catalog-title > p:last-child {
    max-width: 700px;
  }

  .pt-route-list {
    grid-template-columns: repeat(2, 1fr);
  }

  .pt-route-list li {
    min-height: 250px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
  }

  .pt-route-list li:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .pt-models-grid {
    grid-template-columns: 1fr;
  }

  .pt-model-stage {
    min-height: 660px;
  }

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

  .pt-palette-product {
    min-height: 420px;
  }

  .pt-palette-controls {
    min-height: 300px;
  }
}

@media (max-width: 780px) {
  .pt-shell,
  .pt-hero-grid {
    width: min(calc(100% - 36px), 1360px);
  }

  .pt-hero {
    min-height: 820px;
  }

  .pt-hero-grid {
    min-height: 820px;
    padding: 22px 0 30px;
  }

  .pt-hero-topline span:last-child {
    display: none;
  }

  .pt-hero-copy > p {
    margin-bottom: 20px;
    font-size: 10px;
  }

  .pt-hero h1 {
    font-size: clamp(60px, 18vw, 96px);
    line-height: 0.82;
  }

  .pt-hero-lead {
    max-width: 330px;
  }

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

  .pt-hero-lead a {
    min-height: 52px;
    margin-top: 24px;
  }

  .pt-hero-product {
    right: -41vw;
    bottom: 13vw;
    width: 128vw;
    opacity: 0.5;
  }

  .pt-statement {
    font-size: clamp(52px, 15vw, 82px);
  }

  .pt-task-copy,
  .pt-deliverables,
  .pt-catalog-notes,
  .pt-process-grid,
  .pt-mobile-grid,
  .pt-coverage-grid,
  .pt-result-grid {
    grid-template-columns: 1fr;
  }

  .pt-task-copy {
    gap: 28px;
  }

  .pt-deliverables article {
    min-height: 300px;
  }

  .pt-deliverables article + article {
    border-top: 1px solid var(--pt-line);
    border-left: 0;
  }

  .pt-route-list {
    grid-template-columns: 1fr;
  }

  .pt-route-list li,
  .pt-route-list li + li {
    min-height: 220px;
    padding: 22px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.28);
    border-left: 0;
  }

  .pt-heading h2 {
    font-size: clamp(48px, 14vw, 76px);
  }

  .pt-browser {
    margin-right: -8px;
    margin-left: -8px;
    border-radius: 13px;
  }

  .pt-browser-bar {
    min-height: 38px;
    padding: 8px 12px;
    font-size: 8px;
  }

  .pt-browser figcaption {
    grid-template-columns: 30px 1fr;
    gap: 12px;
    padding: 20px;
  }

  .pt-catalog-title h2 {
    font-size: clamp(68px, 20vw, 100px);
  }

  .pt-catalog-notes article,
  .pt-catalog-notes article + article {
    padding: 24px 0 34px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-left: 0;
  }

  .pt-catalog-notes h3 {
    margin-top: 28px;
  }

  .pt-model-copy h2 {
    font-size: clamp(49px, 14vw, 76px);
  }

  .pt-model-stage {
    min-height: 420px;
  }

  .pt-model-stage img {
    max-height: 390px;
  }

  .pt-palette-board {
    min-height: 0;
  }

  .pt-palette-product {
    min-height: 310px;
    padding: 20px;
  }

  .pt-palette-controls {
    min-height: 340px;
  }

  .pt-swatches {
    grid-template-columns: repeat(4, 44px);
    gap: 12px;
  }

  .pt-swatches button {
    width: 44px;
    height: 44px;
  }

  .pt-process-grid {
    gap: 50px;
  }

  .pt-mobile-grid {
    gap: 70px;
  }

  .pt-mobile-copy h2 {
    font-size: clamp(58px, 16vw, 86px);
  }

  .pt-phone {
    width: min(100%, 330px);
  }

  .pt-coverage-grid figure {
    min-height: 430px;
  }

  .pt-coverage-grid figcaption {
    flex-direction: column;
    gap: 7px;
  }

  .pt-result h2 {
    font-size: clamp(58px, 15.6vw, 88px);
  }

  .pt-result-grid div {
    min-height: 230px;
  }

  .pt-live-link {
    min-height: 78px;
    padding: 0 24px;
  }
}

@media (max-width: 420px) {
  .pt-hero h1 {
    font-size: clamp(54px, 17vw, 72px);
  }

  .pt-hero-lead {
    padding-right: 10px;
  }

  .pt-model-tabs button {
    width: 50px;
    height: 50px;
  }
}

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

  .pt-hero-product,
  .pt-browser {
    transform: none;
  }
}
