:root {
  --brand: #483bfa;
  --brand-soft: #efeefe;
  --brand-third: #d0cdfd;
  --ink: #313131;
  --muted: #b6b6b8;
  --page: #ffffff;
  --panel: #ffffff;
  --card: #f5f5f5;
  --line: rgba(49, 49, 49, 0.08);
  --line-strong: rgba(49, 49, 49, 0.13);
  --shadow: 0 22px 70px rgba(27, 24, 53, 0.09);
  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --ease: cubic-bezier(.22, .82, .24, 1);
  --font-logo: Acrom, Inter, Arial, sans-serif;
  --fz-primary: 28px;
  --fw-light: 300;
  --fw-regular: 400;
  --fw-medium: 500;
  --fw-bold: 700;
  --color-accent: var(--brand);
  --color-text-primary: var(--ink);
  --hub-width: 900px;
}

* {
  box-sizing: border-box;
}

html {
  min-width: 320px;
  background: #fff;
}

body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

button {
  color: inherit;
}

a {
  color: inherit;
}

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

button:focus-visible,
a:focus-visible {
  outline: 3px solid rgba(72, 59, 250, 0.25);
  outline-offset: 4px;
}

.page-shell {
  min-height: 100dvh;
  padding: 0;
}

.stage {
  position: relative;
  isolation: isolate;
  min-height: 100dvh;
  overflow: hidden;
  border-radius: 0;
  background: #fff;
}

/* ---------------------------------------------
   Topbar / logo / language
---------------------------------------------- */
.topbar {
  position: absolute;
  z-index: 20;
  top: 24px;
  left: 50%;
  width: min(var(--hub-width), calc(100% - 48px));
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  justify-content: space-between;
  pointer-events: none;
}

.topbar > * {
  pointer-events: auto;
}

.logo {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  color: var(--color-text-primary);
  text-decoration: none;
}

.logo__mark {
  width: 28px;
  height: 28px;
  flex: 0 0 28px;
  color: var(--color-accent);
}

.logo__mark svg {
  width: 100%;
  height: 100%;
  display: block;
  fill: currentColor;
}

.logo__text-wrap {
  min-width: 0;
  overflow: hidden;
}

.logo__text {
  display: inline-flex;
  align-items: baseline;
  gap: 0;
  font-family: var(--font-logo);
  font-size: var(--fz-primary);
  line-height: 1;
  white-space: nowrap;
  color: var(--color-text-primary);
  transform: scale(.9, .94);
  transform-origin: left center;
}

.logo__lead {
  font-weight: var(--fw-bold);
}

.logo__med {
  font-weight: var(--fw-regular);
}

.logo--home {
  gap: 10px;
  transition: transform .25s var(--ease), opacity .25s ease;
}

.logo--home:hover {
  transform: translateY(-1px);
}

.language-switcher {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.language-switcher__button {
  min-width: 48px;
  height: 34px;
  padding: 0 12px;
  border: 0;
  border-radius: 999px;
  background: var(--brand-soft);
  color: var(--ink);
  cursor: pointer;
  font-size: 13px;
  line-height: 1;
  font-weight: 650;
  letter-spacing: -.02em;
  appearance: none;
  transition: background .22s ease, color .22s ease, transform .22s var(--ease);
}

.language-switcher__button:hover {
  transform: translateY(-1px);
}

.language-switcher__button.is-active {
  background: var(--brand);
  color: #fff;
}

.home {
  position: relative;
  z-index: 10;
  min-height: 100dvh;
  padding: clamp(136px, 16vh, 205px) 24px 44px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-copy {
  width: min(840px, 100%);
  text-align: center;
}

.hero-copy h1 {
  margin: 0;
  font-size: 56px;
  line-height: .98;
  letter-spacing: -0.052em;
  font-weight: 720;
}

.hero-copy h1 > span {
  display: block;
}

.hub {
  width: min(var(--hub-width), 100%);
  margin-top: clamp(40px, 5.5vh, 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hub-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.hub-card {
  position: relative;
  height: 245px;
  padding: 16px 16px 20px;
  border: 1px solid var(--line);
  border-radius: 23px;
  background: #f6f6f6;
  box-shadow: 0 1px 0 rgba(49, 49, 49, .035);
  cursor: pointer;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  appearance: none;
  transition:
    transform .38s var(--ease),
    background .35s ease,
    border-color .35s ease,
    box-shadow .4s var(--ease);
}

.hub-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 31%, rgba(72, 59, 250, .075), transparent 45%);
  opacity: 0;
  transition: opacity .35s ease;
}

.hub-card:hover,
.hub-card:focus-visible {
  z-index: 4;
  transform: translateY(-5px);
  border-color: rgba(72, 59, 250, .13);
  background: #f8f8f8;
  box-shadow: 0 18px 50px rgba(49, 49, 49, .085);
}

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

.hub-label {
  position: relative;
  z-index: 3;
  font-size: 20px;
  line-height: 1;
  font-weight: 680;
  letter-spacing: -0.035em;
}

.card-art {
  position: absolute;
  z-index: 2;
  top: 31px;
  left: 50%;
  width: 140px;
  height: 130px;
  transform: translateX(-50%);
}

/* work card */
.work-sheet {
  position: absolute;
  width: 92px;
  height: 112px;
  border: 3px solid #fff;
  border-radius: 13px;
  background: #fff;
  box-shadow: 0 8px 22px rgba(49, 49, 49, .09);
  padding: 12px 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  transition: transform .42s var(--ease);
}

.work-sheet small,
.plan-sheet small {
  color: #8c8c8e;
  font-size: 9px;
  line-height: 1;
}

.work-sheet b,
.plan-sheet b {
  margin-top: 4px;
  font-size: 16px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.work-sheet--back {
  top: 7px;
  left: 11px;
  transform: rotate(-12deg);
  background: var(--brand-soft);
}

.work-sheet--mid {
  top: 3px;
  right: 7px;
  transform: rotate(10deg);
  background: #ececec;
}

.work-sheet--front {
  top: 14px;
  left: 30px;
  transform: rotate(-1deg);
}

.hub-card:hover .work-sheet--back {
  transform: translate(-8px, -4px) rotate(-16deg);
}

.hub-card:hover .work-sheet--mid {
  transform: translate(10px, -4px) rotate(14deg);
}

.hub-card:hover .work-sheet--front {
  transform: translateY(-6px) rotate(-1deg);
}

/* services card */
.service-sheet {
  position: absolute;
  top: 22px;
  width: 78px;
  height: 92px;
  border: 3px solid #fff;
  border-radius: 12px;
  padding: 10px;
  box-shadow: 0 7px 22px rgba(49, 49, 49, .07);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: transform .4s var(--ease);
}

.service-sheet i {
  width: 13px;
  height: 13px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-size: 6px;
  line-height: 1;
  font-style: normal;
}

.service-sheet b {
  font-size: 13px;
  line-height: 1;
  letter-spacing: -0.03em;
}

.service-sheet--one {
  left: 0;
  transform: rotate(-4deg);
  background: #ededed;
}

.service-sheet--two {
  left: 30px;
  z-index: 2;
  transform: translateY(-3px) rotate(1deg);
  background: #f5e8d8;
}

.service-sheet--three {
  right: 0;
  z-index: 3;
  transform: rotate(2deg);
  background: #dcd9ff;
}

.hub-card:hover .service-sheet--one {
  transform: translateX(-9px) rotate(-7deg);
}

.hub-card:hover .service-sheet--two {
  transform: translateY(-9px) rotate(0deg);
}

.hub-card:hover .service-sheet--three {
  transform: translateX(9px) rotate(6deg);
}

/* about card */
.card-art--about {
  width: 148px;
}

.mini-person {
  position: absolute;
  top: 17px;
  width: 84px;
  height: 104px;
  object-fit: cover;
  object-position: center top;
  border: 3px solid white;
  border-radius: 13px;
  box-shadow: 0 8px 22px rgba(49, 49, 49, .075);
  filter: saturate(.92);
  transition: transform .4s var(--ease), filter .3s ease;
}

.mini-person--one {
  left: 0;
  transform: rotate(-8deg);
}

.mini-person--two {
  left: 32px;
  z-index: 2;
  transform: translateY(-5px) rotate(0deg);
}

.mini-person--three {
  right: 0;
  z-index: 3;
  transform: rotate(9deg);
}

.hub-card:hover .mini-person {
  filter: saturate(1);
}

.hub-card:hover .mini-person--one {
  transform: translate(-8px, -3px) rotate(-12deg);
}

.hub-card:hover .mini-person--two {
  transform: translateY(-11px) rotate(0deg);
}

.hub-card:hover .mini-person--three {
  transform: translate(8px, -3px) rotate(13deg);
}

/* plans card */
.plan-sheet {
  position: absolute;
  top: 24px;
  width: 91px;
  height: 105px;
  border: 3px solid #fff;
  border-radius: 12px;
  padding: 11px 9px;
  box-shadow: 0 7px 22px rgba(49, 49, 49, .07);
  display: flex;
  flex-direction: column;
  justify-content: center;
  transition: transform .4s var(--ease);
}

.plan-sheet--one {
  left: 4px;
  transform: rotate(-7deg);
  background: #ededed;
}

.plan-sheet--two {
  left: 28px;
  z-index: 2;
  transform: translateY(-4px) rotate(2deg);
  background: #efeefe;
}

.plan-sheet--three {
  right: 2px;
  z-index: 3;
  transform: rotate(8deg);
  background: #fff;
}

.hub-card:hover .plan-sheet--one {
  transform: translate(-9px, -3px) rotate(-10deg);
}

.hub-card:hover .plan-sheet--two {
  transform: translateY(-10px) rotate(0deg);
}

.hub-card:hover .plan-sheet--three {
  transform: translate(9px, -3px) rotate(11deg);
}

.contact-actions {
  margin-top: clamp(40px, 6.2vh, 72px);
  display: flex;
  align-items: center;
  gap: 10px;
}

.contact-actions a {
  min-width: 132px;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--brand);
  color: #fff;
  text-decoration: none;
  font-weight: 660;
  letter-spacing: -0.02em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: 0 10px 28px rgba(72, 59, 250, .16);
  transition: transform .25s var(--ease), box-shadow .25s ease, background .25s ease;
}

.contact-actions a.second {
  background: var(--brand-soft);
  color: var(--brand);
}

.contact-actions a:hover {
  transform: translateY(-2px);
  background: #3f32ed;
  box-shadow: 0 14px 34px rgba(72, 59, 250, .22);
}

.contact-actions a.second:hover {
  background: #ebeafe;
}


.contact-actions a span {
  font-size: 14px;
}

/* ---------------------------------------------
   Hover preview layer
---------------------------------------------- */
.preview-layer {
  position: absolute;
  z-index: 4;
  inset: 0;
  pointer-events: none;
}

.preview-group {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity .28s ease, visibility 0s linear .3s;
}

.stage[data-preview="work"] [data-preview-group="work"],
.stage[data-preview="services"] [data-preview-group="services"],
.stage[data-preview="about"] [data-preview-group="about"],
.stage[data-preview="plans"] [data-preview-group="plans"] {
  opacity: 1;
  visibility: visible;
  transition-delay: 0s;
}

.float-card,
.float-service,
.float-person,
.float-note,
.price-pill {
  position: absolute;
  opacity: 0;
  transform: translateY(18px) scale(.965);
  filter: blur(2px);
  transition:
    opacity .42s ease,
    transform .58s var(--ease),
    filter .45s ease;
}

.stage[data-preview="work"] [data-preview-group="work"] > *,
.stage[data-preview="services"] [data-preview-group="services"] > *,
.stage[data-preview="about"] [data-preview-group="about"] > *,
.stage[data-preview="plans"] [data-preview-group="plans"] > * {
  opacity: 1;
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.stage[data-preview] .hub-card:not(:hover):not(:focus-visible) {
  transition-duration: .3s;
}

.float-card {
  width: clamp(210px, 15vw, 286px);
  min-height: 146px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(248, 248, 248, .96);
  box-shadow: 0 18px 52px rgba(49, 49, 49, .055);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.float-card::before,
.float-service::before {
  content: "";
  width: 9px;
  height: 9px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--brand);
}

.float-card strong {
  font-size: clamp(29px, 2.2vw, 42px);
  line-height: .95;
  letter-spacing: -0.055em;
  color: var(--brand);
}

.float-card > span:last-child {
  margin-top: 8px;
  max-width: 180px;
  color: #737376;
  font-size: 13px;
  line-height: 1.3;
}

.float-eyebrow {
  margin-bottom: 12px;
  color: #7b7b7d;
  font-size: 10px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: .085em;
}

.case-float--one {
  top: 11%;
  left: 6.5%;
  transform: translateY(18px) rotate(-5deg) scale(.965);
}

.case-float--two {
  top: 13%;
  right: 6.5%;
  transform: translateY(18px) rotate(4deg) scale(.965);
}

.case-float--three {
  left: 7.7%;
  bottom: 6.5%;
  transform: translateY(18px) rotate(3.5deg) scale(.965);
}

.case-float--four {
  right: 7%;
  bottom: 7.5%;
  transform: translateY(18px) rotate(-4deg) scale(.965);
}

.stage[data-preview="work"] .case-float--one {
  transform: rotate(-5deg) scale(1);
}

.stage[data-preview="work"] .case-float--two {
  transform: rotate(4deg) scale(1);
}

.stage[data-preview="work"] .case-float--three {
  transform: rotate(3.5deg) scale(1);
}

.stage[data-preview="work"] .case-float--four {
  transform: rotate(-4deg) scale(1);
}

.float-service {
  width: clamp(230px, 18vw, 325px);
  min-height: 185px;
  padding: 25px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(247, 247, 247, .96);
  box-shadow: 0 18px 55px rgba(49, 49, 49, .05);
}

.float-service > span {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--brand);
  font-size: 11px;
  font-weight: 720;
}

.float-service h3 {
  margin: 0 0 10px;
  font-size: clamp(22px, 1.8vw, 30px);
  line-height: 1;
  letter-spacing: -0.05em;
}

.float-service p {
  margin: 0;
  color: #77777a;
  font-size: 13px;
  line-height: 1.45;
}

.float-service--one {
  left: 3.3%;
  bottom: 45%;
  transform: translateY(18px) rotate(-3deg) scale(.965);
}

.float-service--two {
  top: 16%;
  right: 5%;
  transform: translateY(18px) rotate(3deg) scale(.965);
}

.float-service--three {
  right: 4%;
  bottom: 10%;
  transform: translateY(18px) rotate(-2deg) scale(.965);
}

.stage[data-preview="services"] .float-service--one {
  transform: rotate(-3deg) scale(1);
}

.stage[data-preview="services"] .float-service--two {
  transform: rotate(10deg) scale(1);
}

.stage[data-preview="services"] .float-service--three {
  transform: rotate(15deg) scale(1);
}

.float-person {
  width: clamp(155px, 12vw, 225px);
  margin: 0;
  padding: 9px 9px 13px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(248, 248, 248, .97);
  box-shadow: 0 18px 48px rgba(49, 49, 49, .055);
}

.float-person img {
  width: 100%;
  aspect-ratio: 1.18 / 1;
  border-radius: 12px;
  object-fit: cover;
  object-position: center top;
}

.float-person figcaption {
  padding: 12px 4px 0;
  font-size: 13px;
  line-height: 1.25;
  font-weight: 670;
  letter-spacing: -0.02em;
}

.float-person figcaption span {
  color: #8b8b8e;
  font-size: 11px;
  font-weight: 500;
}

.float-person--pavel {
  left: 6.8%;
  bottom: 7.5%;
  transform: translateY(18px) rotate(-5deg) scale(.965);
}

.float-person--teya {
  top: 10%;
  right: 7%;
  transform: translateY(18px) rotate(4deg) scale(.965);
}

.float-person--nikita {
  right: 8%;
  bottom: 8%;
  transform: translateY(18px) rotate(-3deg) scale(.965);
}

.stage[data-preview="about"] .float-person--pavel {
  transform: rotate(-5deg) scale(1);
}

.stage[data-preview="about"] .float-person--teya {
  transform: rotate(4deg) scale(1);
}

.stage[data-preview="about"] .float-person--nikita {
  transform: rotate(-3deg) scale(1);
}

.stage[data-preview="about"] .float-note--about {
  transform: rotate(-3deg) scale(1);
}

.float-note {
  width: clamp(230px, 18vw, 330px);
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: rgba(239, 238, 254, .96);
  box-shadow: 0 20px 55px rgba(49, 49, 49, .045);
  display: flex;
  flex-direction: column;
  gap: 9px;
}

.float-note strong {
  font-size: clamp(27px, 2.15vw, 40px);
  line-height: .95;
  letter-spacing: -0.055em;
  color: var(--brand);
}

.float-note span:last-child {
  color: #6f6f73;
  font-size: 13px;
  line-height: 1.35;
}

.float-note--about {
  top: 12%;
  left: 6%;
}

.price-pill {
  min-width: clamp(230px, 18vw, 325px);
  min-height: 75px;
  padding: 17px 20px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: #f0f0f0;
  box-shadow: 0 16px 42px rgba(49, 49, 49, .045);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.price-pill span {
  color: #767679;
  font-size: 11px;
}

.price-pill strong {
  margin-top: 4px;
  font-size: 18px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.price-pill--one {
  top: 16%;
  right: 4%;
  transform: translateY(18px) rotate(2deg) scale(.965);
}

.price-pill--two {
  top: 23%;
  right: 4.5%;
  z-index: 2;
  background: #f2e2cf;
  transform: translateY(18px) rotate(-1deg) scale(.965);
}

.price-pill--three {
  top: 31%;
  right: 4.4%;
  z-index: 3;
  background: #ddd9ff;
  transform: translateY(18px) rotate(3deg) scale(.965);
}

.stage[data-preview="plans"] .price-pill--one {
  transform: rotate(8deg) scale(1);
}

.stage[data-preview="plans"] .price-pill--two {
  transform: rotate(-1deg) scale(1);
}

.stage[data-preview="plans"] .price-pill--three {
  transform: rotate(-6deg) scale(1);
}

.stage[data-preview="plans"] .float-note--plans {
  transform: rotate(-3deg) scale(.965);
}

.float-note--plans {
  left: 5%;
  bottom: 45%;
  background: rgba(248, 248, 248, .97);
}

.float-note--plans .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.float-note--plans strong {
  color: var(--ink);
  font-size: 25px;
}

/* ---------------------------------------------
   Modal
---------------------------------------------- */
body.modal-open {
  overflow: hidden;
}

.modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity .32s ease, visibility 0s linear .34s;
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transition-delay: 0s;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(29, 28, 36, .18);
  backdrop-filter: blur(9px);
  -webkit-backdrop-filter: blur(9px);
  cursor: default;
}

.modal-sheet {
  position: relative;
  width: min(1480px, calc(100vw - 200px));
  height: min(930px, calc(100dvh - 36px));
  overflow: hidden;
  border: 1px solid rgba(49, 49, 49, .075);
  border-radius: 29px;
  background: #fff;
  box-shadow: 0 42px 110px rgba(20, 18, 47, .18);
  transform: translateY(24px) scale(.982);
  transition: transform .45s var(--ease);
}

.modal.is-open .modal-sheet {
  transform: translateY(0) scale(1);
}

.modal-bar {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  height: 82px;
  padding: 22px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(to bottom, rgba(255,255,255,.98) 70%, rgba(255,255,255,0));
  pointer-events: none;
}

.modal-bar > * {
  pointer-events: auto;
}

.modal-bar .logo {
  flex: 0 0 auto;
  gap: 10px;
}

.modal-bar .logo__mark {
  width: 28px;
  height: 28px;
  flex-basis: 28px;
}

.modal-bar .logo__text {
  font-size: 24px;
}

.modal-close {
  min-height: 42px;
  padding: 0 13px 0 17px;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  background: rgba(247,247,247,.9);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: background .2s ease, transform .2s var(--ease);
}

.modal-close:hover {
  background: var(--brand-soft);
  transform: translateY(-1px);
}

.modal-close span {
  font-size: 13px;
  font-weight: 650;
}

.modal-close b {
  font-size: 21px;
  line-height: 1;
  font-weight: 430;
}

.modal-scroll {
  height: 100%;
  overflow-y: auto;
  overscroll-behavior: contain;
  padding: 118px clamp(28px, 5vw, 80px) 80px;
  scrollbar-width: thin;
  scrollbar-color: rgba(72,59,250,.35) transparent;
}

.modal-scroll::-webkit-scrollbar {
  width: 8px;
}

.modal-scroll::-webkit-scrollbar-thumb {
  background: rgba(72,59,250,.32);
  border-radius: 99px;
}

.modal-view {
  display: none;
  max-width: 1260px;
  margin: 0 auto;
  animation: viewIn .38s var(--ease) both;
}

.modal-view.is-active {
  display: block;
}

@keyframes viewIn {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}

.modal-heading {
  max-width: 880px;
  margin-bottom: 58px;
}

.modal-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 22px;
  color: var(--brand);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .12em;
}

.modal-kicker::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--brand);
}

.modal-heading h2 {
  margin: 0;
  font-size: clamp(44px, 5.4vw, 82px);
  line-height: .92;
  letter-spacing: -0.062em;
  font-weight: 710;
}

.modal-heading p {
  max-width: 650px;
  margin: 24px 0 0;
  color: #747477;
  font-size: clamp(16px, 1.4vw, 20px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.proof-grid {
  margin-bottom: 84px;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.proof-grid > div {
  min-height: 160px;
  padding: 29px 26px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.proof-grid > div + div {
  border-left: 1px solid var(--line-strong);
}

.proof-grid strong {
  color: var(--brand);
  font-size: clamp(28px, 3vw, 44px);
  line-height: .95;
  letter-spacing: -0.055em;
  font-weight: 630;
}

.proof-grid span {
  margin-top: 10px;
  color: #737376;
  font-size: 12px;
  line-height: 1.35;
}

.case-section,
.services-block,
.about-principles {
  padding-top: 40px;
  margin-top: 34px;
  border-top: 1px solid var(--line-strong);
}

.case-section + .case-section,
.services-block + .services-block {
  margin-top: 80px;
}

.section-intro {
  margin-bottom: 32px;
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 28px;
}

.section-intro > span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.section-intro h3 {
  margin: 0;
  font-size: clamp(28px, 3vw, 43px);
  line-height: 1;
  letter-spacing: -0.05em;
  font-weight: 650;
}

.section-intro p {
  max-width: 620px;
  margin: 10px 0 0;
  color: #77777a;
  font-size: 14px;
  line-height: 1.45;
}

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

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

.case-card {
  min-height: 285px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
}

.case-card.accent-card {
  background: var(--brand-soft);
}

.case-channel {
  color: #838386;
  font-size: 10px;
  line-height: 1.2;
  font-weight: 650;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.case-card h4 {
  margin: 12px 0 24px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.metric-pair {
  display: flex;
  align-items: baseline;
  gap: 9px;
  padding: 10px 0;
  border-top: 1px solid var(--line);
}

.metric-pair b {
  color: var(--brand);
  font-size: 23px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.metric-pair small {
  color: #7f7f82;
  font-size: 11px;
}

.case-card > p {
  margin: auto 0 0;
  padding-top: 21px;
  color: #737376;
  font-size: 12px;
  line-height: 1.45;
}

.case-card--wide {
  min-height: 250px;
}

.wide-metrics {
  margin-top: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 11px;
}

.wide-metrics > div {
  padding: 14px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.wide-metrics b {
  color: var(--brand);
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.035em;
}

.wide-metrics small {
  color: #7d7d80;
  font-size: 10px;
}

.services-list {
  margin-bottom: 78px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: 44px;
}

.services-list > div {
  min-height: 68px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-strong);
  display: grid;
  grid-template-columns: 48px 1fr;
  align-items: center;
}

.services-list span {
  color: var(--brand);
  font-size: 12px;
  font-weight: 720;
}

.services-list strong {
  font-size: clamp(18px, 1.5vw, 24px);
  line-height: 1.05;
  letter-spacing: -0.035em;
  font-weight: 610;
}

.channel-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.channel-grid article {
  min-height: 200px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 19px;
  background: #f7f7f7;
}

.channel-grid article:nth-child(2) {
  background: var(--brand-soft);
}

.channel-grid b {
  display: block;
  font-size: 18px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.channel-grid p {
  margin: 55px 0 0;
  color: #77777a;
  font-size: 12px;
  line-height: 1.45;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.process-grid article {
  min-height: 240px;
  padding: 23px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f7f7f7;
}

.process-grid article:first-child {
  background: var(--brand);
  color: #fff;
}

.process-grid > article > span {
  display: inline-flex;
  width: 30px;
  height: 30px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(72, 59, 250, .1);
  color: var(--brand);
  font-size: 10px;
  font-weight: 740;
}

.process-grid article:first-child > span {
  background: rgba(255,255,255,.15);
  color: #fff;
}

.process-grid h4 {
  margin: 66px 0 8px;
  font-size: 21px;
  line-height: 1;
  letter-spacing: -0.04em;
}

.process-grid p {
  margin: 0;
  color: #78787b;
  font-size: 12px;
  line-height: 1.45;
}

.process-grid article:first-child p {
  color: rgba(255,255,255,.74);
}

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

.team-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 21px;
  background: #f7f7f7;
}

.team-card img {
  width: 100%;
  aspect-ratio: 1.35 / 1;
  object-fit: cover;
  object-position: center top;
  filter: saturate(.95);
}

.team-copy {
  padding: 22px 22px 26px;
}

.team-copy > span {
  color: var(--brand);
  font-size: 10px;
  font-weight: 740;
  text-transform: uppercase;
  letter-spacing: .09em;
}

.team-copy h3 {
  margin: 7px 0 18px;
  font-size: 25px;
  line-height: 1;
  letter-spacing: -0.045em;
}

.team-copy ul,
.plan-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

.team-copy li,
.plan-card li {
  position: relative;
  padding: 12px 0 12px 17px;
  border-top: 1px solid var(--line);
  color: #717174;
  font-size: 12px;
  line-height: 1.45;
}

.team-copy li::before,
.plan-card li::before {
  content: "";
  position: absolute;
  top: 17px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--brand);
}

.about-principles {
  margin-top: 84px;
}

.principles-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.principles-grid article {
  min-height: 240px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #f7f7f7;
}

.principles-grid article:nth-child(4) {
  background: var(--brand-soft);
}

.principles-grid span {
  color: var(--brand);
  font-size: 11px;
  font-weight: 740;
}

.principles-grid h4 {
  margin: 70px 0 9px;
  font-size: 20px;
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.principles-grid p {
  margin: 0;
  color: #737376;
  font-size: 12px;
  line-height: 1.45;
}

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

.plan-card {
  min-height: 580px;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: #f7f7f7;
  display: flex;
  flex-direction: column;
}

.plan-card--accent {
  background: var(--brand);
  color: #fff;
}

.plan-head > span {
  color: var(--brand);
  font-size: 11px;
  line-height: 1;
  font-weight: 760;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.plan-card--accent .plan-head > span {
  color: rgba(255,255,255,.72);
}

.plan-head strong {
  display: block;
  margin-top: 16px;
  font-size: clamp(31px, 3vw, 45px);
  line-height: .95;
  letter-spacing: -0.055em;
  font-weight: 630;
}

.plan-head p {
  min-height: 58px;
  margin: 16px 0 24px;
  color: #77777a;
  font-size: 13px;
  line-height: 1.4;
}

.plan-card--accent .plan-head p {
  color: rgba(255,255,255,.72);
}

.plan-card--accent li {
  border-color: rgba(255,255,255,.18);
  color: rgba(255,255,255,.78);
}

.plan-card--accent li::before {
  background: #fff;
}

.plan-result {
  margin-top: auto;
  padding-top: 26px;
}

.plan-result small {
  display: block;
  margin-bottom: 8px;
  color: #858588;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .1em;
}

.plan-card--accent .plan-result small {
  color: rgba(255,255,255,.6);
}

.plan-result b {
  display: block;
  font-size: 18px;
  line-height: 1.25;
  letter-spacing: -0.025em;
}

/* ---------------------------------------------
   Responsive
---------------------------------------------- */
@media (max-width: 1320px) {
  :root {
    --hub-width: 820px;
  }

  .preview-group > * {
    opacity: 0 !important;
    visibility: hidden !important;
  }

  .home {
    padding-top: clamp(128px, 15vh, 175px);
  }

  .hub-card {
    height: 232px;
  }

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

  .proof-grid > div:nth-child(4) {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .proof-grid > div:nth-child(5) {
    border-top: 1px solid var(--line-strong);
  }

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

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

@media (max-width: 900px) {
  :root {
    --hub-width: 520px;
  }

  .page-shell {
    padding: 0;
  }

  .modal {
    padding: 10px;
  }

  .stage {
    min-height: 100dvh;
    border-radius: 0;
  }

  .topbar {
    top: 21px;
    width: min(var(--hub-width), calc(100% - 36px));
  }

  .logo__mark {
    width: 26px;
    height: 26px;
    flex-basis: 26px;
  }

  .logo__text {
    font-size: 22px;
  }

  .language-switcher__button {
    min-width: 44px;
    height: 32px;
    padding: 0 10px;
    font-size: 12px;
  }

  .home {
    min-height: 100dvh;
    padding: 110px 18px 35px;
  }

  .hero-copy {
    width: min(600px, 100%);
  }

  .hero-copy h1 {
    font-size: clamp(32px, 7vw, 50px);
  }

  .hub {
    margin-top: 38px;
  }

  .hub-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 520px;
  }

  .hub-card {
    height: 220px;
  }

  .contact-actions {
    margin-top: 34px;
  }

  .modal-sheet {
    width: calc(100vw - 20px);
    height: calc(100dvh - 20px);
    border-radius: 22px;
  }

  .modal-scroll {
    padding: 102px 20px 55px;
  }

  .modal-bar {
    height: 74px;
    padding: 18px 20px;
  }

  .modal-heading {
    margin-bottom: 40px;
  }

  .modal-heading h2 {
    font-size: clamp(40px, 10vw, 68px);
  }

  .proof-grid,
  .team-grid,
  .plans-grid,
  .principles-grid,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .proof-grid > div:nth-child(3) {
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .proof-grid > div:nth-child(4) {
    border-left: 1px solid var(--line-strong);
  }

  .proof-grid > div:nth-child(5) {
    border-left: 0;
  }

  .services-list {
    grid-template-columns: 1fr;
    column-gap: 0;
  }

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

  .section-intro {
    grid-template-columns: 86px 1fr;
  }

  .plan-card {
    min-height: 520px;
  }
}

@media (max-width: 620px) {
  .topbar {
    width: calc(100% - 32px);
  }

  .logo__mark {
    width: 24px;
    height: 24px;
    flex-basis: 24px;
  }

  .logo__text {
    font-size: 21px;
  }

  .language-switcher {
    gap: 3px;
  }

  .language-switcher__button {
    min-width: 42px;
    height: 30px;
    padding: 0 9px;
    font-size: 11px;
  }

  .home {
    justify-content: flex-start;
    padding-top: 100px;
  }

  .hero-copy h1 {
    font-size: 31px;
    line-height: 1;
  }

  .hub-grid {
    gap: 9px;
  }

  .hub-card {
    height: 190px;
    padding: 13px 12px 18px;
    border-radius: 19px;
  }

  .hub-label {
    font-size: 17px;
  }

  .card-art {
    top: 20px;
    transform: translateX(-50%) scale(.83);
    transform-origin: 50% 20%;
  }

  .contact-actions {
    width: 100%;
    max-width: 420px;
    gap: 8px;
  }

  .contact-actions a {
    min-width: 0;
    width: 50%;
    min-height: 48px;
    padding: 0 14px;
    font-size: 14px;
  }

  .modal-close span {
    display: none;
  }

  .modal-close {
    width: 42px;
    height: 42px;
    min-height: 42px;
    padding: 0;
    justify-content: center;
  }

  .modal-heading h2 {
    font-size: 43px;
  }

  .modal-heading p {
    font-size: 15px;
  }

  .proof-grid,
  .case-grid,
  .case-grid--four,
  .team-grid,
  .plans-grid,
  .principles-grid,
  .process-grid,
  .channel-grid {
    grid-template-columns: 1fr;
  }

  .proof-grid > div,
  .proof-grid > div:nth-child(n) {
    min-height: 125px;
    border-left: 0;
    border-top: 1px solid var(--line-strong);
  }

  .proof-grid > div:first-child {
    border-top: 0;
  }

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

  .case-card,
  .case-card--wide {
    min-height: 245px;
  }

  .wide-metrics {
    grid-template-columns: 1fr 1fr;
  }

  .services-list > div {
    grid-template-columns: 42px 1fr;
  }

  .channel-grid article,
  .process-grid article,
  .principles-grid article {
    min-height: 190px;
  }

  .channel-grid p,
  .process-grid h4,
  .principles-grid h4 {
    margin-top: 40px;
  }

  .team-card img {
    aspect-ratio: 1.4 / 1;
  }

  .plan-card {
    min-height: 0;
  }
}

@media (max-width: 390px) {
  .hub-card {
    height: 176px;
  }

  .card-art {
    top: 14px;
    transform: translateX(-50%) scale(.75);
  }

  .contact-actions a {
    font-size: 13px;
  }
}

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