:root {
  --bg: #f6f8fa;
  --paper: #ffffff;
  --ink: #3d3d3d;
  --muted: #74716a;
  --line: #dedbd2;
  --accent: #4257ff;
  --violet: #b8a9ff;
  --blue: #91b6ff;
  --green: #b9d8bc;
  --telegram-hover: #9cadff;
  --cv-hover: #c8a8e2;
  --radius: 8px;
  --case-top-offset: 72px;
  --page-gutter-left: 120px;
  --page-gutter-right: 120px;
  --block-radius: 28px;
  --case-radius: 32px;
  --case-card-height: clamp(380px, 31vw, 560px);
  --case-image-inset: 12px;
  --case-image-min-width: 420px;
  --case-image-share: 64%;
  --case-image-width: clamp(520px, 54vw, 980px);
  --case-cover-radius: calc(var(--case-radius) - var(--case-image-inset));
  --case-padding: clamp(24px, 4vw, 44px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--case-top-offset);
}

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    Manrope, "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.5;
  overflow-x: hidden;
}

main {
  position: relative;
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px var(--page-gutter-right) 18px var(--page-gutter-left);
  background: var(--bg);
  backdrop-filter: none;
}

.site-header a,
.site-header a:visited,
.legal-links a,
.legal-links a:visited {
  color: var(--muted);
  text-decoration: none;
}

.reveal-ready .reveal-on-scroll {
  opacity: 0;
  transition: opacity 760ms ease;
  will-change: opacity;
}

.reveal-ready .reveal-on-scroll.is-visible {
  opacity: 1;
  will-change: auto;
}

.reveal-ready .hero.reveal-on-scroll {
  opacity: 1;
  transition: none;
}

.reveal-ready .hero .hero-media,
.reveal-ready .hero .hero-links {
  opacity: 0;
}

.reveal-ready .hero .is-letterized .hero-letter {
  display: inline-block;
  opacity: 0;
}

.reveal-ready .hero.is-visible .hero-media,
.reveal-ready .hero.is-visible .hero-links {
  animation: hero-content-fade 780ms ease forwards;
}

.reveal-ready .hero.is-visible .hero-media {
  animation-delay: 80ms;
}

.reveal-ready .hero.is-visible .is-letterized .hero-letter {
  animation: hero-letter-fade 520ms ease forwards;
  animation-delay: var(--letter-delay, 0ms);
}

.reveal-ready .hero.is-visible .hero-links {
  animation-delay: var(--hero-links-delay, 620ms);
}

@keyframes hero-content-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes hero-letter-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@media (hover: hover) and (pointer: fine) {
  .about-photo,
  .about-photo * {
    cursor: none !important;
  }

  .photo-heart-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 2147483647;
    width: 29px;
    height: 26px;
    opacity: 0;
    pointer-events: none;
    transform: translate3d(-60px, -60px, 0) translate(-50%, -50%);
    transition: opacity 120ms ease;
    will-change: transform;
  }

  .photo-heart-cursor::before,
  .photo-heart-cursor::after {
    content: "";
    position: absolute;
    inset: 0;
    background: #ffffff;
    transform: scale(1);
    transform-origin: center;
    -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2070%2062'%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-width='5'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M35.3%2058.5C26.7%2051.3%2013.7%2047.2%207.1%2036.2C1.6%2027.1%203.8%2015.4%2012.2%2010.2C20.4%205.1%2030.4%208.6%2035.1%2016.1C40.8%207.6%2051.8%201.6%2061.1%206.4C69%2010.5%2068.3%2021.8%2063.8%2029.1C57.9%2038.5%2046.2%2045.7%2037.6%2058.2C36.9%2059.2%2036.1%2059.1%2035.3%2058.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2070%2062'%3E%3Cpath%20fill='none'%20stroke='black'%20stroke-width='5'%20stroke-linecap='round'%20stroke-linejoin='round'%20d='M35.3%2058.5C26.7%2051.3%2013.7%2047.2%207.1%2036.2C1.6%2027.1%203.8%2015.4%2012.2%2010.2C20.4%205.1%2030.4%208.6%2035.1%2016.1C40.8%207.6%2051.8%201.6%2061.1%206.4C69%2010.5%2068.3%2021.8%2063.8%2029.1C57.9%2038.5%2046.2%2045.7%2037.6%2058.2C36.9%2059.2%2036.1%2059.1%2035.3%2058.5Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .photo-heart-cursor::after {
    opacity: 0;
  }

  .photo-heart-cursor.is-visible {
    opacity: 1;
  }

  .photo-heart-cursor.is-beating::before {
    animation: photo-heart-beat 560ms cubic-bezier(0.18, 0.9, 0.2, 1) both;
  }

  .photo-heart-cursor.is-beating::after {
    animation: photo-heart-wave 720ms cubic-bezier(0.16, 1, 0.3, 1) both;
  }
}

@keyframes photo-heart-beat {
  0% {
    transform: scale(1);
  }

  34% {
    transform: scale(1.75);
  }

  56% {
    transform: scale(0.94);
  }

  78% {
    transform: scale(1.12);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes photo-heart-wave {
  0% {
    opacity: 0.9;
    transform: scale(1);
  }

  100% {
    opacity: 0;
    transform: scale(2.75);
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-heart-cursor.is-beating::before,
  .photo-heart-cursor.is-beating::after {
    animation-duration: 1ms;
  }
}

@property --wave-reveal-radius {
  syntax: "<length>";
  inherits: true;
  initial-value: 0px;
}

:is(.brand, .nav a, .legal-links a) {
  --wave-x: 50%;
  --wave-y: 50%;
  --wave-reveal-radius: 0px;
  --wave-cover-radius: 220px;
  position: relative;
  transition: --wave-reveal-radius 680ms cubic-bezier(0.22, 0.68, 0.24, 1);
}

.brand {
  --wave-overlay-padding: 8px 12px;
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  margin: -8px -12px;
  padding: 8px 12px;
  font-weight: 700;
}

.nav a,
.legal-links a {
  --wave-overlay-padding: 0;
  display: inline-block;
}

:is(.brand, .nav a, .legal-links a)::after {
  content: attr(data-wave-label);
  position: absolute;
  inset: 0;
  box-sizing: border-box;
  display: inline-flex;
  align-items: center;
  padding: var(--wave-overlay-padding);
  pointer-events: none;
  background: radial-gradient(
    circle farthest-corner at var(--wave-x) var(--wave-y),
    #144fc4 0%,
    #315fd1 34%,
    #7b42c2 68%,
    #d79b27 100%
  );
  background-clip: text;
  -webkit-background-clip: text;
  color: transparent;
  -webkit-text-fill-color: transparent;
  -webkit-mask-image: radial-gradient(
    circle at var(--wave-x) var(--wave-y),
    #000 0,
    #000 calc(var(--wave-reveal-radius) - 12px),
    transparent var(--wave-reveal-radius)
  );
  mask-image: radial-gradient(
    circle at var(--wave-x) var(--wave-y),
    #000 0,
    #000 calc(var(--wave-reveal-radius) - 12px),
    transparent var(--wave-reveal-radius)
  );
}

:is(.brand, .nav a, .legal-links a).is-wave-hovered,
:is(.brand, .nav a, .legal-links a):focus-visible {
  --wave-reveal-radius: var(--wave-cover-radius);
  transition-duration: 1280ms;
  transition-timing-function: cubic-bezier(0.2, 0.72, 0.22, 1);
}

@media (prefers-reduced-motion: reduce) {
  :is(.brand, .nav a, .legal-links a) {
    transition-duration: 1ms;
  }
}

.nav {
  display: flex;
  gap: clamp(14px, 3vw, 34px);
  color: var(--muted);
  font-size: 15px;
}

.section {
  width: auto;
  margin: 0 var(--page-gutter-right) 0 var(--page-gutter-left);
}

.hero {
  display: grid;
  grid-template-columns: 1fr;
  gap: 56px;
  align-items: center;
  justify-items: center;
  min-height: calc(100vh - var(--case-top-offset) + 12px);
  padding: 0;
  text-align: center;
  align-content: center;
  transform: translateY(-40px);
}

.hero-media {
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-copy {
  display: grid;
  justify-items: center;
}

.portrait-photo {
  display: block;
  width: clamp(94px, 11.25vw, 148px);
  height: clamp(94px, 11.25vw, 148px);
  border-radius: 50%;
  clip-path: circle(50% at 50% 50%);
  object-fit: cover;
  object-position: center;
  transform: translateY(0);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--muted);
  font-size: 14px;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

h1 {
  max-width: 900px;
  margin-bottom: 28px;
  color: rgba(34, 34, 32, 0.62);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(42px, 8vw, 96px);
  line-height: 0.92;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 14px;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 1;
  letter-spacing: 0;
}

.hero-main-text {
  max-width: 760px;
  margin-bottom: 28px;
  color: var(--ink);
  font-size: 32px;
  font-weight: 800;
  line-height: 1.12;
  letter-spacing: 0;
  white-space: nowrap;
}

.lead {
  max-width: 680px;
  margin-bottom: 68px;
  color: rgba(34, 34, 32, 0.46);
  font-size: 20px;
  font-weight: 500;
  line-height: 1.14;
}

.hero-links {
  position: relative;
  width: min(100%, 760px);
  height: 62px;
  margin-top: 24px;
  color: var(--ink);
}

.hero-action {
  position: absolute;
  top: 0;
  display: flex;
  width: max-content;
  max-width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-radius: 999px;
  background: var(--ink);
  color: var(--paper);
  font-size: 25px;
  font-weight: 500;
  line-height: 1;
  white-space: nowrap;
  transition:
    max-width 620ms cubic-bezier(0.22, 1.28, 0.36, 1),
    background-color 220ms ease,
    color 220ms ease,
    transform 620ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.action-full {
  font-size: 20px;
  font-weight: 700;
}

.hero-action-tg {
  right: calc(50% + 7px);
}

.hero-action-cv {
  left: calc(50% + 7px);
}

.action-short,
.action-full {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.action-short {
  position: absolute;
  opacity: 1;
  transform: translateY(-2px);
}

.action-full {
  position: static;
  width: max-content;
  gap: 8px;
  padding: 0 24px;
  opacity: 0;
  transform: scale(0.88);
}

.action-full svg {
  width: 26px;
  height: 26px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.hero-action:hover,
.hero-action:focus-visible {
  max-width: 360px;
  color: var(--paper);
  transform: translateX(0);
  transition:
    max-width 620ms cubic-bezier(0.22, 1.28, 0.36, 1),
    background-color 220ms ease,
    color 220ms ease,
    transform 620ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.hero-action:hover .action-short,
.hero-action:focus-visible .action-short {
  opacity: 0;
  transform: translateY(-2px) scale(0.72);
}

.hero-action:hover .action-full,
.hero-action:focus-visible .action-full {
  opacity: 1;
  transform: scale(1);
}

.hero-action:focus-visible {
  outline: 0;
}

.work-section {
  position: relative;
  width: auto;
  padding: 0 0 12px;
}

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

.case {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(var(--case-image-min-width), min(var(--case-image-share), var(--case-image-width)));
  align-items: stretch;
  column-gap: clamp(36px, 3.4vw, 56px);
  row-gap: clamp(20px, 3vw, 44px);
  height: var(--case-card-height);
  min-height: 0;
  padding: var(--case-padding);
  background: var(--paper);
  border-radius: var(--case-radius);
  overflow: hidden;
  scroll-snap-align: start;
  scroll-margin-top: var(--case-top-offset);
}

.case-wide-visual {
  grid-template-columns: minmax(0, 1fr) minmax(var(--case-image-min-width), min(var(--case-image-share), var(--case-image-width)));
}

.case-text {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-width: 0;
  min-height: 0;
  padding: 0;
}

.case-text p {
  color: var(--muted);
  font-size: 18px;
}

.case-text-feature {
  position: relative;
  z-index: 1;
  justify-content: space-between;
  max-width: none;
  padding-bottom: 68px;
  padding-right: 0;
}

.case-feature-copy {
  width: 100%;
  max-width: 100%;
}

.case-text .case-feature-title {
  margin: 0 0 24px;
  color: var(--ink);
  font-size: clamp(18px, 1.55vw, 28px);
  font-weight: 800;
  line-height: 1.08;
  text-wrap: balance;
  overflow-wrap: break-word;
}

.case-text .case-feature-description {
  max-width: 100%;
  margin: 0;
  color: rgba(34, 34, 32, 0.86);
  font-size: clamp(15px, 0.96vw, 18px);
  font-weight: 500;
  line-height: 1.16;
  overflow-wrap: break-word;
}

.case-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  max-width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
}

.case-tag {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  background: #eef0f2;
  color: rgba(61, 61, 61, 0.74);
  font-size: clamp(13px, 0.82vw, 15px);
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.case-text .case-feature-status {
  display: none;
  margin: 0;
  color: rgba(173, 176, 194, 0.8);
  font-size: 26px;
  font-weight: 800;
  line-height: 1;
}

.case-action {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 54px;
  height: 54px;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  appearance: none;
  border: 0;
  border-radius: 999px;
  background: #3d3d3d;
  color: #ffffff;
  cursor: pointer;
  font: inherit;
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  transition:
    max-width 620ms cubic-bezier(0.22, 1.28, 0.36, 1),
    background-color 220ms ease,
    color 220ms ease,
    transform 620ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.case-action::before,
.case-action::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 2;
  pointer-events: none;
  opacity: 1;
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.case-action::before {
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%) scale(1);
}

.case-action::after {
  width: 8px;
  height: 8px;
  border-top: 2px solid currentColor;
  border-right: 2px solid currentColor;
  transform: translate(calc(-50% + 5px), -50%) rotate(45deg) scale(1);
}

.case-action-default,
.case-action-hover {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.case-action-default {
  position: absolute;
  opacity: 1;
  transform: scale(1);
}

.case-action-default svg {
  display: none;
}

.case-action-hover {
  position: static;
  gap: 8px;
  width: max-content;
  padding: 0 16px 0 24px;
  opacity: 0;
  transform: scale(0.88);
}

.case-action-hover svg {
  display: none;
}

.case-action-hover::after {
  content: "";
  flex: 0 0 auto;
  width: 27px;
  height: 27px;
  background: currentColor;
  transform: rotate(-45deg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2028%2028'%3E%3Cg%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4.8%2014c5.7-.1%2011.6-.1%2017.8-.1'/%3E%3Cpath%20d='M16.4%207.3c2.2%201.7%204.5%204.2%206.4%206.7'/%3E%3Cpath%20d='M22.8%2013.9c-2.1%202.4-4.4%204.7-6.8%206.6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20viewBox='0%200%2028%2028'%3E%3Cg%20fill='none'%20stroke='black'%20stroke-width='2'%20stroke-linecap='round'%20stroke-linejoin='round'%3E%3Cpath%20d='M4.8%2014c5.7-.1%2011.6-.1%2017.8-.1'/%3E%3Cpath%20d='M16.4%207.3c2.2%201.7%204.5%204.2%206.4%206.7'/%3E%3Cpath%20d='M22.8%2013.9c-2.1%202.4-4.4%204.7-6.8%206.6'/%3E%3C/g%3E%3C/svg%3E") center / contain no-repeat;
}

.case-action svg {
  flex: 0 0 auto;
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.case:hover .case-action,
.case:focus-within .case-action,
.case-action:hover,
.case-action:focus-visible {
  max-width: 220px;
  transition:
    max-width 620ms cubic-bezier(0.22, 1.28, 0.36, 1),
    background-color 220ms ease,
    color 220ms ease,
    transform 620ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.case:hover .case-action::before,
.case:hover .case-action::after,
.case:focus-within .case-action::before,
.case:focus-within .case-action::after,
.case-action:hover::before,
.case-action:hover::after,
.case-action:focus-visible::before,
.case-action:focus-visible::after {
  opacity: 0;
  transform: translate(-50%, -50%) scale(0.72);
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.case:hover .case-action::after,
.case:focus-within .case-action::after,
.case-action:hover::after,
.case-action:focus-visible::after {
  opacity: 0;
  transform: translate(calc(-50% + 5px), -50%) rotate(45deg) scale(0.72);
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.case:hover .case-action-default,
.case:focus-within .case-action-default,
.case-action:hover .case-action-default,
.case-action:focus-visible .case-action-default {
  opacity: 0;
  transform: scale(0.72);
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.case:hover .case-action-hover,
.case:focus-within .case-action-hover,
.case-action:hover .case-action-hover,
.case-action:focus-visible .case-action-hover {
  opacity: 1;
  transform: scale(1);
  transition:
    opacity 180ms ease,
    transform 360ms cubic-bezier(0.22, 1.28, 0.36, 1);
}

.case-action:focus-visible {
  outline: 2px solid rgba(37, 37, 37, 0.2);
  outline-offset: 4px;
}

.case-index {
  display: inline-block;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

.case-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 36px 0 0;
}

.case-meta div {
  border-top: 0;
  padding-top: 14px;
}

.case-meta.case-meta-rows {
  display: block;
  margin: 0;
  border-top: 1px solid rgba(34, 34, 32, 0.12);
}

.case-meta.case-meta-rows div {
  display: grid;
  grid-template-columns: 88px minmax(0, 1fr);
  gap: 16px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(34, 34, 32, 0.12);
}

.case-meta.case-meta-rows dt {
  color: rgba(34, 34, 32, 0.42);
  font-size: 14px;
  line-height: 1.2;
}

.case-meta.case-meta-rows dd {
  margin: 0;
  color: rgba(34, 34, 32, 0.78);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.22;
}

dt {
  color: var(--muted);
  font-size: 13px;
}

dd {
  margin: 4px 0 0;
  font-weight: 700;
}

.visual,
.phone-row {
  min-height: 0;
  height: 100%;
  border-radius: var(--case-cover-radius);
  overflow: hidden;
  background: #d9d9d9;
}

.visual {
  position: relative;
  display: grid;
  place-items: center;
  padding: 36px;
}

.visual-purple {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.25), transparent 42%),
    linear-gradient(145deg, var(--violet), #d9d3ff 48%, #eef0f5);
}

.visual-blue {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 38%),
    linear-gradient(145deg, var(--blue), #dce8ff);
}

.visual-neutral {
  background:
    linear-gradient(145deg, #d7d6d0, #efeee8);
}

.visual-image {
  position: relative;
  justify-self: end;
  min-width: 0;
  width: 100%;
  max-width: 100%;
  height: calc(100% + (var(--case-padding) * 2) - (var(--case-image-inset) * 2));
  margin: calc(var(--case-image-inset) - var(--case-padding)) calc(var(--case-image-inset) - var(--case-padding)) calc(var(--case-image-inset) - var(--case-padding)) 0;
  padding: 0;
  background: var(--paper);
  border-radius: var(--case-cover-radius);
}

.visual-image img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: none;
  transform-origin: center;
  transition: opacity 260ms ease;
}

.visual-image .case-cover-default {
  opacity: 1;
}

.visual-image .case-cover-hover {
  opacity: 0;
}

.case-last-visual img {
  transform: translateX(-3%) scale(1.16);
}

.case:hover .case-cover-hover {
  opacity: 1;
}

.visual-mobile-cover {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  background: linear-gradient(145deg, #d7dbdf, #f1f2f2);
}

.visual-image.visual-blue {
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.45), transparent 38%),
    linear-gradient(145deg, var(--blue), #dce8ff);
}

.visual-image.visual-neutral {
  background:
    linear-gradient(145deg, #d7d6d0, #efeee8);
}

.mock-window {
  width: min(430px, 82%);
  min-height: 260px;
  padding: 26px;
  background: rgba(255, 255, 255, 0.72);
  border-radius: var(--radius);
}

.mock-window span,
.dashboard-placeholder span,
.flow-placeholder span {
  display: block;
  height: 38px;
  margin-bottom: 16px;
  border-radius: 6px;
  background: rgba(34, 34, 32, 0.12);
}

.component-grid {
  position: absolute;
  right: 40px;
  bottom: 40px;
  display: grid;
  grid-template-columns: repeat(3, 58px);
  gap: 10px;
}

.component-grid i {
  display: block;
  aspect-ratio: 1;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.5);
}

.phone-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 36px;
  background: linear-gradient(145deg, #d7dbdf, #f1f2f2);
}

.phone {
  width: 28%;
  max-width: 104px;
  aspect-ratio: 9 / 18;
  border-radius: 20px;
  background:
    linear-gradient(#ffffff 0 16%, transparent 17%),
    linear-gradient(145deg, #c9c8ff, #f2f1f7);
}

.dashboard-placeholder {
  width: min(360px, 86%);
  padding: 24px;
  background: rgba(255, 255, 255, 0.76);
  border-radius: var(--radius);
}

.dashboard-placeholder b {
  display: block;
  width: 48%;
  height: 54px;
  margin-bottom: 20px;
  border-radius: 8px;
  background: rgba(66, 87, 255, 0.18);
}

.flow-placeholder {
  width: min(360px, 90%);
}

.flow-placeholder span {
  height: 74px;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-content: center;
  justify-items: center;
  gap: clamp(34px, 5vw, 60px);
  min-height: calc(100vh - var(--case-top-offset) - 24px);
  padding: calc(clamp(54px, 6vw, 84px) + 100px) 0;
  overflow: visible;
}

.about-center {
  justify-self: center;
  width: min(980px, 100%);
  max-width: 980px;
  margin: 0 auto;
  text-align: center;
  transform: translateX(calc((var(--page-gutter-right) - var(--page-gutter-left)) / 2));
}

.about-center h2 {
  margin: 0 0 calc(clamp(24px, 3vw, 36px) - 12px);
  color: rgba(34, 34, 32, 0.62);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: 0;
}

.about-text {
  max-width: 680px;
  margin: 0 auto;
  color: #5f636b;
  font-size: 20px;
  font-weight: 500;
  line-height: 1.14;
}

.about-marquee {
  justify-self: start;
  width: 100vw;
  margin-left: calc(var(--page-gutter-left) * -1);
  padding: clamp(48px, 4vw, 72px) 0;
  overflow: hidden;
}

.photo-track {
  display: flex;
  align-items: center;
  width: max-content;
  gap: 8px;
}

.photo-track.is-js-marquee {
  animation: none;
  will-change: transform;
}

.about-photo {
  --photo-size: clamp(148px, 13vw, 208px);
  position: relative;
  flex: 0 0 var(--photo-size);
  height: var(--photo-size);
  border-radius: 14px;
  background-color: #d9d9d6;
  background-blend-mode: multiply;
  filter: none;
  overflow: hidden;
  transform: scale(1);
  transform-origin: center;
  transition:
    margin 980ms cubic-bezier(0.16, 1, 0.3, 1),
    transform 980ms cubic-bezier(0.16, 1, 0.3, 1),
    filter 420ms ease;
  will-change: margin, transform, filter;
}

.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    url("data:image/svg+xml,%3Csvg%20xmlns='http://www.w3.org/2000/svg'%20width='160'%20height='160'%3E%3Cfilter%20id='noise'%3E%3CfeTurbulence%20type='fractalNoise'%20baseFrequency='.78'%20numOctaves='3'%20stitchTiles='stitch'/%3E%3CfeColorMatrix%20type='saturate'%20values='0'/%3E%3CfeComponentTransfer%3E%3CfeFuncA%20type='table'%20tableValues='0%20.2'/%3E%3C/feComponentTransfer%3E%3C/filter%3E%3Crect%20width='100%25'%20height='100%25'%20filter='url(%23noise)'/%3E%3C/svg%3E") 0 0 / 160px 160px repeat,
    rgba(0, 0, 0, 0.15);
  pointer-events: none;
}

.about-photo img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--crop-x, 50%) var(--crop-y, 50%);
}

/* Individual crop tweaks: x moves left/right, y moves up/down. */
.about-photo.crop-top { --crop-y: 0%; }
.about-photo.crop-bottom { --crop-y: 100%; }
.about-photo.crop-higher { --crop-y: 38%; }
.about-photo.crop-lower { --crop-y: 78%; }
.about-photo.crop-slight-lower { --crop-y: 66%; }

@media (hover: hover) and (pointer: fine) {
  .about-photo:hover {
    margin: 0 calc(var(--photo-size) * 0.28);
    filter: grayscale(0);
    transform: scale(1.56);
  }
}

.photo-01 {
  background:
    radial-gradient(circle at 46% 42%, rgba(255, 255, 255, 0.85) 0 8%, transparent 9%),
    radial-gradient(circle at 52% 62%, #797976 0 17%, transparent 18%),
    linear-gradient(140deg, #c9c9c4, #efeee8);
}

.photo-02 {
  background:
    repeating-linear-gradient(0deg, rgba(34, 34, 32, 0.2) 0 2px, transparent 2px 22px),
    linear-gradient(135deg, #bdbdb8, #e8e7e1);
}

.photo-03 {
  background:
    linear-gradient(88deg, transparent 0 42%, rgba(34, 34, 32, 0.55) 43% 48%, transparent 49%),
    linear-gradient(76deg, transparent 0 62%, rgba(34, 34, 32, 0.45) 63% 68%, transparent 69%),
    linear-gradient(160deg, #babbb8, #eeeeea);
}

.photo-04 {
  background:
    radial-gradient(ellipse at 42% 88%, rgba(34, 34, 32, 0.75) 0 18%, transparent 19%),
    linear-gradient(120deg, transparent 0 62%, rgba(34, 34, 32, 0.24) 63% 66%, transparent 67%),
    linear-gradient(145deg, #d5d5cf, #f2f1ec);
}

.photo-05 {
  background:
    repeating-radial-gradient(circle at 120% 10%, rgba(34, 34, 32, 0.26) 0 3px, transparent 4px 16px),
    linear-gradient(130deg, #b9b9b4, #e2e1dc);
}

.photo-06 {
  background:
    radial-gradient(circle at 42% 66%, rgba(34, 34, 32, 0.35) 0 17%, transparent 18%),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(34, 34, 32, 0.12) 31px 34px),
    linear-gradient(150deg, #deddd8, #f4f3ee);
}

.photo-07 {
  background:
    radial-gradient(circle at 48% 48%, rgba(34, 34, 32, 0.25) 0 16%, transparent 17%),
    radial-gradient(circle at 56% 58%, rgba(34, 34, 32, 0.35) 0 14%, transparent 15%),
    linear-gradient(135deg, #b9b9b5, #e6e5df);
}

.photo-08 {
  background:
    radial-gradient(ellipse at 52% 75%, rgba(34, 34, 32, 0.72) 0 18%, transparent 19%),
    linear-gradient(90deg, transparent 0 45%, rgba(34, 34, 32, 0.28) 46% 48%, transparent 49%),
    linear-gradient(155deg, #c7c7c2, #efeee9);
}

.photo-09 {
  background:
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.55) 0 22px, rgba(34, 34, 32, 0.36) 23px 44px),
    linear-gradient(135deg, #8c8c89, #cecdc8);
}

.photo-10 {
  background:
    radial-gradient(circle at 48% 40%, rgba(34, 34, 32, 0.36) 0 20%, transparent 21%),
    linear-gradient(90deg, transparent 0 45%, rgba(34, 34, 32, 0.18) 46% 48%, transparent 49%),
    linear-gradient(145deg, #c5c5c0, #ecebe6);
}

.photo-11 {
  background:
    radial-gradient(circle at 62% 70%, rgba(34, 34, 32, 0.32) 0 10%, transparent 11%),
    linear-gradient(90deg, transparent 0 55%, rgba(34, 34, 32, 0.24) 56% 58%, transparent 59%),
    linear-gradient(150deg, #aaa9a4, #e1e0db);
}

.photo-12 {
  background:
    linear-gradient(115deg, transparent 0 42%, rgba(34, 34, 32, 0.35) 43% 45%, transparent 46%),
    repeating-linear-gradient(90deg, transparent 0 30px, rgba(34, 34, 32, 0.18) 31px 33px),
    linear-gradient(135deg, #b8b7b2, #e9e8e2);
}

.contact-section {
  position: relative;
  width: auto;
  min-height: clamp(470px, 36vw, 600px);
  margin: clamp(28px, 2.35vw, 40px) var(--page-gutter-right) 36px var(--page-gutter-left);
  padding: clamp(46px, 4vw, 68px) clamp(38px, 3.7vw, 64px) clamp(40px, 3.8vw, 64px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: #282828;
  color: #ffffff;
  border-radius: 36px;
}

.contact-title {
  align-self: flex-start;
  max-width: min(900px, 62vw);
  margin: 0;
  color: #ffffff;
  font-size: clamp(40px, 4.35vw, 60px);
  font-weight: 800;
  line-height: 1.12;
  text-align: left;
}

.contact-actions {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(20px, 1.6vw, 28px);
  width: 100%;
}

.contact-copy {
  position: relative;
  display: flex;
  min-width: 0;
}

.contact-button {
  width: 100%;
  min-height: clamp(60px, 4.7vw, 76px);
  padding: 0 clamp(22px, 2.2vw, 34px);
  appearance: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.92);
  border-radius: 999px;
  background: transparent;
  color: #ffffff;
  font-size: clamp(17px, 1.25vw, 20px);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  font-family: inherit;
  cursor: pointer;
  transition:
    background-color 220ms ease,
    border-color 220ms ease,
    color 220ms ease;
}

.contact-button svg {
  flex: 0 0 auto;
  width: clamp(22px, 1.7vw, 28px);
  height: clamp(22px, 1.7vw, 28px);
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
}

.contact-button .contact-icon-mail {
  width: clamp(25px, 1.95vw, 32px);
  height: clamp(25px, 1.95vw, 32px);
  stroke-width: 1.7px;
}

.contact-button-primary {
  background: #ffffff;
  border-color: #ffffff;
  color: #4b4b4b;
}

.contact-button:hover,
.contact-button:focus-visible {
  background: #ffffff;
  border-color: #ffffff;
  color: #4b4b4b;
}

.contact-button-primary:hover,
.contact-button-primary:focus-visible {
  background: rgba(255, 255, 255, 0.88);
  border-color: rgba(255, 255, 255, 0.88);
}

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

.contact-copy-status {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  z-index: 1;
  color: rgba(255, 255, 255, 0.64);
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transform: translate(-50%, 6px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.contact-copy-status.is-visible {
  opacity: 1;
  transform: translate(-50%, 0);
}

.legal-links {
  width: auto;
  margin: 0 var(--page-gutter-right) 40px var(--page-gutter-left);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 20px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.2;
}

.legal-links a:nth-child(2) {
  margin-left: auto;
}

.legal-links a,
.legal-links a:visited {
  color: var(--muted);
  text-decoration: none;
}

.legal-links a:nth-child(2),
.legal-links a:nth-child(2):visited {
  color: var(--muted);
}

.legal-links a:focus-visible {
  outline: 2px solid rgba(34, 34, 32, 0.2);
  outline-offset: 4px;
  border-radius: 4px;
}

body.legal-modal-open {
  overflow: hidden;
}

.legal-modal[hidden] {
  display: none;
}

.legal-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
}

.legal-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 18, 18, 0.52);
  backdrop-filter: blur(7px);
}

.legal-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  max-height: calc(100dvh - 48px);
  overflow-y: auto;
  padding: clamp(32px, 4.5vw, 56px);
  border-radius: 30px;
  background: #ffffff;
  box-shadow: 0 28px 80px rgba(12, 12, 12, 0.24);
  outline: none;
}

.legal-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: #4a4a48;
  cursor: pointer;
}

.legal-modal-close span {
  display: block;
  width: 24px;
  height: 24px;
  background:
    linear-gradient(var(--ink), var(--ink)) center / 24px 2px no-repeat,
    linear-gradient(var(--ink), var(--ink)) center / 2px 24px no-repeat;
  font-size: 0;
  transform: rotate(45deg);
  transition: opacity 180ms ease;
}

.legal-modal-close:hover span {
  opacity: 0.65;
}

.legal-modal-close:focus-visible {
  outline: 2px solid rgba(66, 87, 255, 0.42);
  outline-offset: 3px;
}

.legal-modal-copy {
  padding-right: 18px;
}

.legal-modal-copy h2 {
  max-width: 580px;
  margin: 0 0 30px;
  color: #3d3d3d;
  font-size: clamp(24px, 2.6vw, 32px);
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.legal-modal-copy p {
  margin: 0;
  color: #606269;
  font-size: 16px;
  line-height: 1.7;
}

.legal-modal-copy p + p {
  margin-top: 20px;
}

.back-to-top-row {
  position: absolute;
  right: -96px;
  bottom: 0;
  width: auto;
  margin: 0;
  display: flex;
  justify-content: flex-end;
}

.back-to-top {
  display: flex;
  width: 62px;
  height: 62px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(34, 34, 32, 0.08);
}

.back-to-top svg {
  width: 29px;
  height: 29px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2px;
  transform: rotate(-90deg);
}

.back-to-top svg path {
  vector-effect: non-scaling-stroke;
}

.back-to-top:hover,
.back-to-top:focus-visible {
  color: var(--ink);
}

.back-to-top:focus-visible {
  outline: 2px solid rgba(34, 34, 32, 0.18);
  outline-offset: 4px;
}

@media (max-width: 1120px) {
  :root {
    --page-gutter-left: 72px;
    --page-gutter-right: 48px;
    --case-image-width: clamp(420px, 48vw, 520px);
  }

  .case-text .case-feature-title {
    font-size: clamp(18px, 2vw, 24px);
  }
}

@media (max-width: 860px) {
  .case,
  .case-wide-visual {
    grid-template-columns: 1fr;
  }

  .case {
    height: auto;
    min-height: 0;
  }

  .case-text {
    min-height: auto;
    padding-right: 0;
  }

  .case-text-feature {
    max-width: none;
    min-height: 260px;
    padding-right: 0;
  }

  .case-feature-copy,
  .case-text .case-feature-description {
    max-width: 620px;
  }

  .case-text .case-feature-title {
    font-size: clamp(18px, 2.2vw, 24px);
  }

  .visual-image {
    justify-self: stretch;
    width: auto;
    height: auto;
    min-height: 0;
    aspect-ratio: 16 / 9;
    margin: var(--case-image-inset) calc(var(--case-image-inset) - var(--case-padding)) calc(var(--case-image-inset) - var(--case-padding));
  }
}

@media (max-width: 940px) {
  :root {
    --page-gutter-left: 48px;
    --page-gutter-right: 32px;
    --case-image-width: clamp(420px, 48vw, 520px);
  }

  .hero,
  .about-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: calc(100vh - var(--case-top-offset) + 12px);
    padding-top: 0;
  }

  .case-text {
    min-height: auto;
    padding-right: 0;
  }

  .case-text-feature {
    max-width: none;
    min-height: 260px;
    padding-right: 0;
  }

  .case-text .case-feature-title {
    font-size: clamp(18px, 2.2vw, 24px);
  }

  .case-text .case-feature-description {
    font-size: clamp(15px, 1.8vw, 18px);
  }

  .case-text .case-feature-status {
    font-size: 26px;
  }

  .work-section {
    width: auto;
  }

  .visual:not(.visual-image),
  .phone-row {
    min-height: 42vh;
  }

  .contact-section {
    min-height: 540px;
    padding: 44px 32px 36px;
  }

  .contact-title {
    max-width: 720px;
    font-size: clamp(34px, 5.8vw, 48px);
  }

  .contact-actions {
    gap: 14px;
  }

  .contact-button {
    min-height: 56px;
    font-size: 15px;
  }
}

@media (max-width: 640px) {
  :root {
    --case-top-offset: 124px;
    --page-gutter-left: 48px;
    --page-gutter-right: 32px;
  }

  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    width: 100%;
    justify-content: space-between;
  }

  .section,
  .contact-section {
    width: auto;
  }

  .work-section {
    width: auto;
    padding-top: 0;
  }

  .hero {
    gap: 32px;
    padding-top: 0;
    padding-bottom: 0;
  }

  .portrait-photo {
    width: 88px;
    height: 88px;
  }

  h1 {
    margin-bottom: 28px;
    font-size: 20px;
  }

  .hero-main-text {
    max-width: 360px;
    margin-bottom: 28px;
    font-size: 32px;
    line-height: 1.08;
    white-space: normal;
  }

  .lead {
    max-width: 340px;
    margin-bottom: 44px;
    font-size: 20px;
    line-height: 1.16;
  }

  .hero-main-text br,
  .lead br {
    display: none;
  }

  .hero-links {
    height: 54px;
    margin-top: 16px;
  }

  .hero-action {
    max-width: 54px;
    height: 54px;
    font-size: 21px;
  }

  .hero-action-tg {
    right: calc(50% + 6px);
  }

  .hero-action-cv {
    left: calc(50% + 6px);
  }

  .hero-action:hover,
  .hero-action:focus-visible {
    max-width: calc(100vw - 48px);
  }

  .action-full {
    gap: 8px;
    padding: 0 24px;
    font-size: 20px;
  }

  .action-full svg {
    width: 24px;
    height: 24px;
  }

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

  .case {
    gap: 16px;
    --case-radius: 28px;
    --case-padding: 18px;
    padding: var(--case-padding);
    min-height: auto;
    border-radius: var(--case-radius);
  }

  .case-text p {
    font-size: 14px;
  }

  .case-text-feature {
    min-height: clamp(220px, 54vw, 300px);
  }

  .case-text .case-feature-title {
    margin-bottom: 24px;
    font-size: clamp(20px, 5.8vw, 24px);
    line-height: 1.08;
  }

  .case-text .case-feature-description {
    font-size: clamp(15px, 4.4vw, 18px);
    line-height: 1.12;
  }

  .visual-image {
    aspect-ratio: 16 / 9;
  }

  .case-text .case-feature-status {
    font-size: 26px;
  }

  .case-action {
    width: max-content;
    max-width: 48px;
    height: 48px;
    margin-top: 0;
    padding: 0;
    font-size: 16px;
  }

  .case-action-hover {
    padding: 0 16px 0 24px;
  }

  .case-action-hover::after {
    width: 24px;
    height: 24px;
  }

  .case:hover .case-action,
  .case:focus-within .case-action,
  .case-action:hover,
  .case-action:focus-visible {
    max-width: 198px;
  }

  .case-action svg {
    width: 26px;
    height: 26px;
  }

  .case-action::before {
    width: 19px;
  }

  .case-action::after {
    width: 7px;
    height: 7px;
    transform: translate(calc(-50% + 4px), -50%) rotate(45deg) scale(1);
  }

  .case-meta {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
    margin-top: 16px;
  }

  .case-meta div {
    padding-top: 4px;
  }

  dt {
    font-size: 11px;
  }

  dd {
    font-size: 13px;
  }

  .visual:not(.visual-image),
  .phone-row {
    min-height: 180px;
    height: 180px;
    border-radius: var(--case-cover-radius);
  }

  .about-section {
    min-height: calc(100vh - var(--case-top-offset));
    padding: 44px 0;
  }

  .about-text {
    font-size: 19px;
  }

  .photo-track {
    gap: 12px;
  }

  .about-photo {
    --photo-size: 118px;
    border-radius: 12px;
  }

  .component-grid {
    right: 22px;
    bottom: 22px;
    grid-template-columns: repeat(3, 42px);
  }

  .contact-section {
    min-height: auto;
    margin: 24px var(--page-gutter-right) 32px var(--page-gutter-left);
    padding: 32px 20px 24px;
    gap: 112px;
    border-radius: 28px;
  }

  .contact-title {
    align-self: stretch;
    max-width: none;
    font-size: 28px;
    line-height: 1.08;
    text-align: left;
  }

  .contact-title br {
    display: none;
  }

  .contact-actions {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .contact-button {
    min-height: 52px;
    padding: 0 18px;
    font-size: 14px;
  }

  .legal-links {
    margin: 0 var(--page-gutter-right) 28px var(--page-gutter-left);
    padding-right: 64px;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
  }

  .legal-links a:nth-child(2) {
    margin-left: 0;
  }

  .legal-modal {
    align-items: end;
    padding: 12px;
  }

  .legal-modal-dialog {
    width: 100%;
    max-height: calc(100dvh - 24px);
    padding: 32px 24px 28px;
    border-radius: 24px;
  }

  .legal-modal-close {
    top: 12px;
    right: 12px;
    width: 38px;
    height: 38px;
  }

  .legal-modal-close span {
    width: 20px;
    height: 20px;
    background:
      linear-gradient(var(--ink), var(--ink)) center / 20px 2px no-repeat,
      linear-gradient(var(--ink), var(--ink)) center / 2px 20px no-repeat;
  }

  .legal-modal-copy {
    padding-right: 8px;
  }

  .legal-modal-copy h2 {
    max-width: calc(100% - 34px);
    margin-bottom: 24px;
    font-size: 24px;
  }

  .legal-modal-copy p {
    font-size: 15px;
    line-height: 1.62;
  }

  .back-to-top-row {
    right: 0;
    bottom: -70px;
    margin: 0;
  }

  .back-to-top {
    width: 54px;
    height: 54px;
  }

  .back-to-top svg {
    width: 25px;
    height: 25px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .photo-track {
    animation: none;
  }

  .reveal-ready .reveal-on-scroll {
    opacity: 1;
    transition: none;
    will-change: auto;
  }

  .reveal-ready .hero .hero-media,
  .reveal-ready .hero h1,
  .reveal-ready .hero .hero-main-text,
  .reveal-ready .hero .hero-links {
    opacity: 1;
    animation: none;
  }

  .reveal-ready .hero .is-letterized .hero-letter {
    opacity: 1;
    animation: none;
  }
}
