@font-face {
  font-family: "Unbounded";
  src: url("assets/fonts/Unbounded-VariableFont_wght.ttf") format("truetype");
  font-weight: 300 900;
  font-display: swap;
}

:root {
  --black: #1f1f1f;
  --black-2: #111111;
  --red: #e93f3f;
  --white: #ededed;
  --paper: #f7f7f4;
  --pure-white: #ffffff;
  --muted: rgba(237, 237, 237, 0.68);
  --ink-muted: rgba(31, 31, 31, 0.58);
  --line-dark: rgba(237, 237, 237, 0.16);
  --line-light: rgba(31, 31, 31, 0.12);
  --radius: 8px;
  --gap: 24px;
  --display: "Unbounded", ui-sans-serif, system-ui, sans-serif;
  --body: "Noto Sans", ui-sans-serif, system-ui, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--black);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.45;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-loading {
  overflow: hidden;
}

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

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

mark {
  display: inline-block;
  padding: 0 0.1em;
  background: var(--red);
  color: var(--white);
}

::selection {
  background: var(--red);
  color: var(--white);
}

.mono {
  font-family: var(--display);
  font-size: 0.82rem;
  line-height: 1.45;
  text-transform: uppercase;
  letter-spacing: 0;
}

.section-pad {
  padding: 118px 28px;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 28px;
  background: var(--black-2);
  color: var(--white);
  transition: transform 0.85s cubic-bezier(0.76, 0, 0.24, 1), opacity 0.5s ease;
}

.loader.is-hidden {
  transform: translateY(-100%);
  opacity: 0;
  pointer-events: none;
}

.loader__inner {
  display: grid;
  place-items: center;
  gap: 18px;
}

.loader__mascot {
  width: min(380px, 58vw);
  height: auto;
}

.loader__count {
  font-family: var(--display);
  font-size: clamp(4.6rem, 9vw, 7.6rem);
  font-weight: 900;
  line-height: 0.86;
  color: var(--red);
}

.cursor {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 90;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 0;
  background: url("assets/brand/cursor.png") center / contain no-repeat;
  opacity: 0;
  pointer-events: none;
  translate: 10px 12px;
  scale: 0.78;
  transform: translate3d(0, 0, 0);
  transform-origin: 10px 10px;
  transition:
    opacity 0.24s ease,
    scale 0.46s cubic-bezier(0.16, 1, 0.3, 1),
    translate 0.46s cubic-bezier(0.16, 1, 0.3, 1);
  will-change: transform, opacity, scale, translate;
}

.cursor.is-active {
  opacity: 1;
  translate: 0 0;
  scale: 1;
}

@media (hover: hover) and (pointer: fine) {
  a:hover,
  button:hover,
  .magnetic:hover,
  [data-tilt]:hover {
    cursor: none;
  }
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 80;
  width: 100%;
  height: 3px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left center;
}

.site-header {
  position: fixed;
  top: 24px;
  left: 50%;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: calc(100% - 96px);
  max-width: 1720px;
  min-height: 70px;
  padding: 0 24px;
  background: rgba(255, 255, 255, 0.94);
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 16px;
  box-shadow: 0 18px 48px rgba(31, 31, 31, 0.08);
  transform: translateX(-50%);
  transition: transform 0.35s ease, opacity 0.25s ease, box-shadow 0.3s ease;
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.site-header.is-hidden {
  opacity: 0;
  pointer-events: none;
  transform: translateX(-50%) translateY(-140%);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: 152px;
}

.brand,
.header-contacts,
.menu-toggle {
  position: relative;
  z-index: 92;
}

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

.desktop-nav {
  display: inline-flex;
  align-items: center;
  justify-self: center;
  gap: 30px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 400;
  text-transform: uppercase;
}

.header-contacts {
  justify-self: end;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 700;
  text-transform: none;
}

.header-telegram {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: rgba(31, 31, 31, 0.72);
}

.header-telegram svg {
  width: 14px;
  height: 14px;
  fill: #229ed9;
}

.header-telegram[target="_blank"]::after {
  content: "↗";
  font-size: 0.65rem;
  line-height: 1;
}

.desktop-nav sup {
  display: inline-grid;
  place-items: center;
  min-width: 16px;
  height: 16px;
  margin-left: 2px;
  border-radius: 50%;
  background: var(--black);
  color: var(--white);
  font-size: 0.58rem;
  line-height: 1;
}

.footer a {
  position: relative;
}

.footer a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -5px;
  left: auto;
  width: 0;
  height: 1px;
  background: currentColor;
  transition: width 0.28s ease;
}

.footer a:hover::after {
  right: auto;
  left: 0;
  width: 100%;
}

.nav-cta {
  justify-self: end;
  font-family: var(--display);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: none;
}

.menu-toggle {
  display: none;
  position: relative;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--black);
  cursor: pointer;
  outline: none;
  box-shadow: none;
  -webkit-tap-highlight-color: transparent;
}

.menu-toggle:focus,
.menu-toggle:focus-visible {
  outline: none;
  box-shadow: none;
}

.menu-toggle span {
  position: absolute;
  left: 11px;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  transition:
    top 0.28s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.28s cubic-bezier(0.22, 1, 0.36, 1);
}

.menu-toggle span:first-child {
  top: 15px;
}

.menu-toggle span:last-child {
  top: 24px;
}

.site-header.is-menu-open .menu-toggle span:first-child {
  top: 20px;
  transform: rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:last-child {
  top: 20px;
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: none;
  align-content: start;
  gap: 18px;
  padding: 112px 22px 24px;
  border: 0;
  border-radius: 0;
  background: #ffffff;
  box-shadow: none;
  opacity: 0;
  transform: translateY(-18px);
  pointer-events: none;
  transition: opacity 0.32s ease, transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  backdrop-filter: blur(18px) saturate(1.15);
  -webkit-backdrop-filter: blur(18px) saturate(1.15);
}

.mobile-menu__primary,
.mobile-menu__secondary {
  display: grid;
  gap: 0;
}

.mobile-menu__group,
.mobile-menu__planerka {
  position: relative;
  margin-top: 6px;
}

.mobile-menu__group::before,
.mobile-menu__planerka::before {
  content: "";
  position: absolute;
  top: -12px;
  left: 0;
  width: 100%;
  height: 2px;
  border-radius: 999px;
  background: var(--red);
}

.mobile-menu a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  min-height: 46px;
  padding: 10px 12px;
  border-radius: 0;
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 700;
  text-transform: uppercase;
}

.mobile-menu__primary a {
  font-family: var(--display);
  font-size: clamp(0.95rem, 4.8vw, 1.68rem);
  line-height: 1;
}

.mobile-menu__secondary a {
  color: rgba(31, 31, 31, 0.72);
  font-family: var(--display);
  font-size: clamp(0.95rem, 4.8vw, 1.68rem);
  line-height: 1;
  text-transform: none;
}

.mobile-menu a[target="_blank"]::after {
  content: "";
  display: inline-grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(31, 31, 31, 0.22);
  border-radius: 8px;
  background-color: #ffffff;
  font-family: var(--display);
  font-size: 0.72rem;
  flex: 0 0 auto;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' fill='none' stroke='%231F1F1F' stroke-width='2.2' stroke-linecap='round' stroke-linejoin='round' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M7 17 17 7'/%3E%3Cpath d='M9 7h8v8'/%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 15px 15px;
}

.mobile-menu a:hover,
.mobile-menu button:hover {
  background: var(--red);
  color: var(--white);
}

.mobile-menu button {
  width: 100%;
  min-height: 50px;
  margin-top: 6px;
  padding: 12px;
  border: 0;
  border-bottom: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 0;
  background: #ffffff;
  color: var(--black);
  cursor: pointer;
  font-family: var(--display);
  font-size: clamp(0.95rem, 4.8vw, 1.68rem);
  font-weight: 700;
  text-align: left;
  text-transform: uppercase;
}

.mobile-menu__icon-link {
  justify-content: flex-start;
}

.mobile-menu__icon-link::before {
  content: "";
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  background: currentColor;
}

.mobile-menu__icon-link--telegram::before {
  background: #229ed9;
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 4.3 18.5 19c-.2 1-.8 1.2-1.6.8l-4.8-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.3-4.9 8.9-8c.4-.3-.1-.5-.6-.2l-11 6.9-4.7-1.5c-1-.3-1-1 .2-1.5L20.3 2.7c.8-.3 1.6.2 1.4 1.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M21.7 4.3 18.5 19c-.2 1-.8 1.2-1.6.8l-4.8-3.5-2.3 2.2c-.3.3-.5.5-1 .5l.3-4.9 8.9-8c.4-.3-.1-.5-.6-.2l-11 6.9-4.7-1.5c-1-.3-1-1 .2-1.5L20.3 2.7c.8-.3 1.6.2 1.4 1.6Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

.mobile-menu__icon-link--phone::before {
  -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}

body.is-menu-open {
  overflow: hidden;
}

body.is-menu-open::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 66;
  background: #ffffff;
}

.hero {
  position: relative;
  --hero-menu-edge: max(48px, calc((100vw - 1720px) / 2 + 48px));
  --hero-decor-edge: clamp(-72px, calc(var(--hero-menu-edge) - 260px), 12px);
  width: 100%;
  margin: 0;
  min-height: 100svh;
  padding-top: 108px;
  padding-bottom: 24px;
  overflow: hidden;
  background: var(--pure-white);
}

.hero-grid {
  position: absolute;
  inset: 54px 0 0;
  z-index: 0;
  opacity: 0.34;
  background:
    linear-gradient(rgba(31, 31, 31, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 31, 31, 0.035) 1px, transparent 1px);
  background-size: 70px 70px;
  mask-image: linear-gradient(to bottom, black 0 78%, transparent 100%);
}

.hero-scroll-word {
  position: absolute;
  left: var(--hero-menu-edge);
  right: var(--hero-menu-edge);
  bottom: -5vh;
  z-index: 2;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(6rem, 16vw, 19rem);
  font-weight: 900;
  line-height: 0.78;
  opacity: 0;
  pointer-events: none;
  text-align: center;
  text-transform: uppercase;
  transform: translate3d(0, 120px, 0);
  transform-origin: left bottom;
  will-change: opacity, transform;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 3;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 74%, #ffffff 100%);
}

.hero-portrait {
  position: absolute;
  left: auto;
  right: var(--hero-menu-edge);
  bottom: -76px;
  z-index: 1;
  width: min(828px, 43.7vw);
  transform: none;
  opacity: 0.98;
}

.hero-portrait::before {
  content: none;
}

.hero-portrait img {
  width: 100%;
  height: auto;
  mix-blend-mode: normal;
  filter: contrast(1.04) saturate(0.95);
  mask-image: linear-gradient(to bottom, black 0 78%, transparent 99%);
}

.hero__meta {
  position: absolute;
  left: var(--hero-decor-edge);
  top: 18vh;
  z-index: 2;
  display: grid;
  gap: 18vh;
  max-width: 116px;
  color: rgba(31, 31, 31, 0.34);
  font-size: 0.52rem;
}

.hero__meta span {
  position: relative;
  padding-left: 38px;
}

.hero__meta span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.7em;
  width: 26px;
  height: 1px;
  background: rgba(31, 31, 31, 0.34);
}

.hero__identity {
  position: absolute;
  top: 17vh;
  left: var(--hero-menu-edge);
  z-index: 4;
  max-width: 520px;
}

.hero__statement {
  margin: 0;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(1rem, 1.45vw, 1.55rem);
  font-weight: 800;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__substatement {
  display: block;
  margin-top: 10px;
  color: rgba(31, 31, 31, 0.5);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 500;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero__metric {
  position: absolute;
  right: var(--hero-menu-edge);
  bottom: 6.2vh;
  z-index: 4;
  display: grid;
  justify-items: center;
  gap: 8px;
  text-align: center;
}

.hero__metric strong {
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(3rem, 4.2vw, 5rem);
  line-height: 0.9;
}

.hero__metric span {
  color: rgba(31, 31, 31, 0.72);
  font-family: var(--display);
  font-size: clamp(0.64rem, 0.78vw, 0.86rem);
  font-weight: 700;
  line-height: 1.25;
  text-transform: uppercase;
}

.hero__time {
  display: grid;
  gap: 2px;
  margin: 0 0 24px;
  color: rgba(31, 31, 31, 0.38);
  font-size: 9px;
}

.hero__time strong {
  color: rgba(31, 31, 31, 0.58);
  font-family: var(--display);
  font-size: 9px;
  font-weight: 800;
}

.hero__headline {
  position: absolute;
  left: var(--hero-menu-edge);
  right: var(--hero-menu-edge);
  top: 38vh;
  z-index: 4;
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  text-transform: none;
  letter-spacing: 0;
}

.headline-line {
  display: block;
  overflow: hidden;
  font-size: clamp(4rem, 7.5vw, 9.2rem);
  line-height: 0.88;
  color: var(--red);
}

.headline-line--indent {
  color: var(--black);
}

.char {
  display: inline-block;
  transform: translateY(110%);
}

body.is-ready .char {
  animation: charRise 1.35s cubic-bezier(0.16, 1, 0.3, 1) forwards;
  animation-delay: calc(var(--char-index) * 0.035s + 0.18s);
}

.name-scramble-bounce .char {
  animation: scrambleBounce 0.42s cubic-bezier(0.34, 1.56, 0.64, 1) both;
  animation-delay: calc(var(--char-index) * 0.018s);
}

.hero__bottom {
  position: absolute;
  left: var(--hero-menu-edge);
  bottom: 4.8vh;
  z-index: 4;
  max-width: 560px;
}

.hero__bottom p {
  margin: 0 0 22px;
  font-family: var(--body);
  font-size: 0.9rem;
  font-weight: 400;
  line-height: 1.52;
  text-transform: none;
  color: #606060;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-teaser {
  position: absolute;
  right: 7vw;
  bottom: 14vh;
  z-index: 4;
  max-width: 330px;
  margin: 0;
  color: rgba(31, 31, 31, 0.48);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 56px;
  padding: 0 18px;
  border-radius: var(--radius);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  transition: color 0.3s ease, background 0.3s ease, transform 0.3s ease;
}

.button--red {
  background: var(--red);
  color: var(--white);
}

.button--light {
  background: #ffffff;
  color: var(--black);
  border: 1px solid rgba(31, 31, 31, 0.1);
}

.button:hover {
  transform: translateY(-2px);
}

.hero-reel {
  position: absolute;
  right: 7vw;
  bottom: 8.5vh;
  z-index: 4;
  width: min(390px, 22vw);
  margin: 0;
  color: var(--black);
}

.hero-reel__top {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}

.hero-reel__top::after {
  content: "";
  height: 1px;
  background: rgba(31, 31, 31, 0.28);
}

.mini-board {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: var(--radius);
  background: rgba(31, 31, 31, 0.12);
}

.mini-board span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px;
  background: #ffffff;
  color: var(--black);
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
  text-align: center;
  text-transform: uppercase;
}

.mini-board span:first-child,
.mini-board span:last-child {
  background: var(--black);
  color: var(--white);
}

.mini-board span:nth-child(2) {
  color: var(--red);
}

.hero-reel p {
  margin-top: 10px;
  color: rgba(31, 31, 31, 0.54);
}

.manifesto {
  position: relative;
  min-height: 112svh;
  overflow: hidden;
  background: var(--black-2);
  color: var(--white);
}

.manifesto::before,
.manifesto::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  z-index: 2;
  width: min(24vw, 320px);
  pointer-events: none;
}

.manifesto::before {
  left: 0;
  background: linear-gradient(90deg, #111111 0%, rgba(17, 17, 17, 0.82) 44%, transparent 100%);
}

.manifesto::after {
  right: 0;
  background: linear-gradient(270deg, #111111 0%, rgba(17, 17, 17, 0.82) 44%, transparent 100%);
}

.manifesto.section-pad {
  padding-block: 0;
}

.bubble-field {
  display: none;
}

.bubble-field::before,
.bubble-field::after {
  display: none;
}

.manifesto__inner {
  position: sticky;
  top: 0;
  z-index: 1;
  width: 100%;
  min-height: 100svh;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.manifesto__inner .mono {
  position: absolute;
  top: 11vh;
  left: 50%;
  display: inline-flex;
  margin: 0;
  color: rgba(237, 237, 237, 0.48);
  transform: translateX(-50%);
}

.manifesto h2 {
  width: min(1320px, 96vw);
  min-height: auto;
  display: grid;
  justify-items: center;
  gap: clamp(8px, 1.4vw, 18px);
  margin: 0;
  font-family: var(--display);
  font-weight: 800;
  letter-spacing: 0;
}

.manifesto-line {
  position: relative;
  display: block;
  width: min(1040px, 94vw);
  line-height: 0.94;
  opacity: 0;
  transform: none;
  transform-origin: center;
  transition: opacity 0.95s ease-out;
  white-space: nowrap;
  will-change: opacity;
}

.manifesto-line--listen {
  font-size: clamp(3rem, 5.7vw, 6.9rem);
}

.manifesto-line--imagine {
  font-size: clamp(2.8rem, 5.45vw, 6.55rem);
}

.manifesto-line--create {
  color: var(--red);
  font-size: clamp(3.8rem, 7.9vw, 9.4rem);
  font-weight: 900;
  line-height: 0.9;
}

.ticker {
  position: relative;
  z-index: 1;
  width: 100vw;
  margin-top: clamp(54px, 10vh, 104px);
  overflow: hidden;
  background: var(--black-2);
  color: var(--white);
  border-block: 0;
  mask-image: linear-gradient(90deg, transparent 0, black 18%, black 82%, transparent 100%);
}

.ticker__track {
  display: flex;
  width: max-content;
  animation: tickerMove 24s linear infinite;
}

.ticker span {
  flex: 0 0 auto;
  padding: 0 76px;
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.45vw, 6.55rem);
  line-height: 0.94;
  text-transform: none;
}

.ticker span:nth-child(even) {
  color: rgba(237, 237, 237, 0.72);
}

.intro,
.projects,
.services,
.platforms {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: var(--gap);
}

.intro {
  background: var(--white);
  color: var(--black);
  border-bottom: 1px solid var(--line-light);
}

.section-label {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
  color: currentColor;
  opacity: 0.58;
}

.intro__copy {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.75fr);
  gap: 48px;
}

.big-copy {
  margin: 0;
  max-width: 980px;
  font-family: var(--display);
  font-size: clamp(3rem, 4vw, 4.65rem);
  line-height: 1;
  font-weight: 800;
  text-transform: uppercase;
}

.intro__notes {
  display: grid;
  align-content: end;
  gap: 18px;
  color: rgba(31, 31, 31, 0.78);
  font-size: 1.02rem;
}

.intro__notes p {
  margin: 0;
}

.intro__cta {
  justify-self: start;
  margin-top: 8px;
}

.projects {
  background: var(--paper);
  color: var(--black);
}

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

.project-card {
  display: grid;
  align-content: start;
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line-light);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--black);
  transition: transform 0.35s ease, border-color 0.35s ease, background 0.35s ease;
}

.project-card:hover {
  transform: translateY(-6px);
  border-color: rgba(233, 63, 63, 0.7);
  background: #fff;
}

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

.project-card__visual {
  position: relative;
  min-height: 260px;
  display: grid;
  align-items: end;
  padding: 22px;
  overflow: hidden;
  background:
    linear-gradient(rgba(31, 31, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 31, 31, 0.05) 1px, transparent 1px),
    #ededed;
  background-size: 42px 42px;
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(2.8rem, 6vw, 6.8rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: uppercase;
}

.project-card__visual--image {
  background-color: #ededed;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: cover;
  color: transparent;
}

.project-card__visual--image::before,
.project-card__visual--image::after {
  content: none;
}

.project-card__visual::after {
  content: "";
  position: absolute;
  right: -36px;
  bottom: -36px;
  width: 150px;
  height: 150px;
  border: 1px dashed rgba(233, 63, 63, 0.5);
  border-radius: 50%;
}

.project-card--large .project-card__visual {
  min-height: 420px;
  background:
    radial-gradient(circle at 82% 24%, rgba(233, 63, 63, 0.22), transparent 22%),
    linear-gradient(rgba(31, 31, 31, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 31, 31, 0.05) 1px, transparent 1px),
    #ededed;
  background-size: auto, 50px 50px, 50px 50px, auto;
}

.project-card--large .project-card__visual--image {
  background-size: cover;
}

.project-card__visual--ai,
.project-card__visual--shop {
  background:
    radial-gradient(circle at 72% 34%, rgba(233, 63, 63, 0.24), transparent 28%),
    var(--black);
  color: var(--white);
}

.project-card__visual--music,
.project-card__visual--social {
  color: var(--red);
}

.project-card .mono,
.project-card strong,
.project-card p {
  margin-inline: 20px;
}

.project-card .mono {
  margin-top: 18px;
  color: var(--red);
}

.project-card strong {
  margin-top: 10px;
  font-family: var(--display);
  font-size: clamp(1.45rem, 2vw, 2.1rem);
  line-height: 1;
  text-transform: uppercase;
}

.project-card p {
  margin-top: 14px;
  margin-bottom: 22px;
  color: rgba(31, 31, 31, 0.62);
}

.project-card__links,
.project-card__groups {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0 20px 22px;
}

.project-card__links a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 8px 10px;
  border: 1px solid rgba(31, 31, 31, 0.14);
  border-radius: var(--radius);
  color: var(--black);
  font-family: var(--body);
  font-size: 0.86rem;
  font-weight: 700;
  line-height: 1.1;
  background: rgba(255, 255, 255, 0.7);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.project-card__links a:hover {
  background: var(--red);
  border-color: var(--red);
  color: var(--white);
}

.project-card__groups {
  display: grid;
  gap: 14px;
}

.project-card__group {
  display: grid;
  gap: 8px;
}

.project-card__group > span {
  color: rgba(31, 31, 31, 0.56);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.project-card__group .project-card__links {
  margin: 0;
}

.project-card--compact-links .project-card__links a {
  min-height: 30px;
  font-size: 0.8rem;
}

.services {
  background: var(--white);
  color: var(--black);
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service {
  position: relative;
  display: grid;
  grid-template-columns: 78px minmax(300px, 0.48fr) minmax(360px, 0.52fr);
  align-items: center;
  min-height: 142px;
  gap: clamp(28px, 4vw, 72px);
  border-bottom: 1px solid var(--line-light);
  overflow: hidden;
  transition: padding 0.36s cubic-bezier(0.22, 1, 0.36, 1), color 0.36s ease, border-color 0.36s ease;
}

.service::before {
  content: "";
  position: absolute;
  inset: 8px 0;
  z-index: 0;
  border-radius: var(--radius);
  background: var(--red);
  opacity: 0;
  transform: scaleX(0.965);
  transition: opacity 0.34s ease, transform 0.44s cubic-bezier(0.22, 1, 0.36, 1);
}

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

.service:hover {
  padding-inline: 22px;
  color: var(--white);
}

.service:hover::before {
  opacity: 1;
  transform: scaleX(1);
}

.service__number,
.service__text {
  opacity: 0.64;
}

.service__title {
  font-family: var(--display);
  font-size: clamp(1.35rem, 1.85vw, 1.95rem);
  line-height: 1.08;
  font-weight: 800;
  text-transform: uppercase;
  max-width: 520px;
  overflow-wrap: normal;
}

.service__text {
  max-width: 620px;
  line-height: 1.5;
}

.platforms {
  background: var(--paper);
  color: var(--black);
  border-top: 1px solid var(--line-light);
}

.platforms__content {
  display: grid;
  grid-template-columns: minmax(420px, 44%) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
}

.platforms__intro {
  position: relative;
  display: grid;
  align-content: center;
  min-height: 340px;
  padding: 0;
  overflow: visible;
  border-radius: var(--radius);
  background: transparent;
  color: var(--black);
}

.platforms h2 {
  position: relative;
  max-width: 100%;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 6.8vw, 7.9rem);
  font-weight: 900;
  line-height: 0.86;
  letter-spacing: 0;
  text-transform: uppercase;
  white-space: normal;
  word-break: normal;
  overflow: visible;
}

.platforms h2 span {
  display: block;
}

.platforms h2 span + span {
  color: var(--red);
}

.platforms p {
  position: relative;
  max-width: 500px;
  margin: 24px 0 0;
  color: rgba(31, 31, 31, 0.62);
  font-size: 1rem;
  line-height: 1.35;
}

.platform-list {
  display: grid;
  border-top: 1px solid var(--line-light);
}

.platform-list a {
  display: grid;
  grid-template-columns: minmax(180px, 0.4fr) minmax(0, 1fr) 38px;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line-light);
  transition: color 0.28s ease, padding 0.28s ease;
}

.platform-list a::after {
  content: "↗";
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-family: var(--display);
  font-size: 0.86rem;
  line-height: 1;
}

.platform-list a:hover {
  padding-left: 14px;
  color: var(--red);
}

.platform-list strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.55vw, 1.45rem);
  font-weight: 800;
  text-transform: uppercase;
}

.platform-list span {
  color: rgba(31, 31, 31, 0.58);
}

.contact {
  min-height: 100svh;
  display: grid;
  align-items: end;
  background: var(--red);
  color: var(--white);
  overflow: hidden;
}

.contact__content {
  display: grid;
  gap: 28px;
  min-width: 0;
}

.contact h2 {
  max-width: 1180px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.2rem, 9.5vw, 11rem);
  line-height: 0.82;
  font-weight: 900;
  text-transform: uppercase;
}

.contact p {
  max-width: 660px;
  margin: 0;
  font-size: 1.08rem;
}

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  background: transparent;
}

.contact__grid a {
  min-height: 92px;
  display: grid;
  align-content: center;
  gap: 6px;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--black);
  color: var(--white);
  min-width: 0;
  overflow-wrap: anywhere;
  transition: background 0.25s ease, color 0.25s ease;
}

.contact__grid strong {
  font-family: var(--display);
  font-size: 1rem;
  font-weight: 800;
}

.contact__grid span {
  color: rgba(237, 237, 237, 0.66);
  font-size: 0.9rem;
}

.contact__grid a:hover {
  background: var(--white);
  color: var(--black);
}

.contact__grid a:hover span {
  color: rgba(31, 31, 31, 0.58);
}

.contact__consultation {
  display: flex;
  justify-content: flex-start;
  margin-top: 4px;
}

.contact__consultation button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  max-width: 320px;
  padding: 18px 22px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  border-radius: var(--radius);
  background: #ffffff;
  color: var(--black);
  cursor: pointer;
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 700;
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.contact__consultation button:hover {
  transform: translateY(-2px);
  border-color: rgba(31, 31, 31, 0.22);
  box-shadow: 0 14px 32px rgba(31, 31, 31, 0.14);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 28px;
  border-top: 1px solid var(--line-dark);
  background: var(--black-2);
  color: var(--muted);
  font-family: var(--body);
  font-size: 0.82rem;
  font-weight: 400;
  text-transform: lowercase;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1), transform 1.05s cubic-bezier(0.22, 1, 0.36, 1);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes charRise {
  to {
    transform: translateY(0);
  }
}

@keyframes scrambleBounce {
  0% {
    transform: translateY(0);
  }

  45% {
    transform: translateY(-0.08em);
  }

  100% {
    transform: translateY(0);
  }
}

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

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

  .char,
  .reveal {
    opacity: 1;
    transform: none;
  }

  .cursor {
    display: none;
  }
}

@media (max-width: 1200px) {
  .hero__headline {
    left: 8vw;
    right: 8vw;
  }

  .hero__statement {
    left: 16vw;
  }

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

  .service {
    grid-template-columns: 64px minmax(0, 1fr);
    gap: 14px 28px;
    align-items: start;
    padding-block: 24px;
  }

  .service__title,
  .service__text {
    grid-column: 2 / 3;
  }
}

@media (max-width: 920px) {
  .section-pad {
    padding: 92px 18px;
  }

  .site-header {
    top: 12px;
    left: 12px;
    width: calc(100% - 24px);
    border-radius: 14px;
    padding: 0 18px;
    grid-template-columns: auto 1fr auto;
    column-gap: 12px;
    transform: none;
  }

  .site-header.is-hidden {
    transform: translateY(-140%);
  }

  .site-header.is-menu-open {
    background: #ffffff;
    opacity: 1;
    pointer-events: auto;
    transform: none;
  }

  .brand {
    width: 132px;
  }

  .desktop-nav {
    display: none;
  }

  .header-contacts {
    justify-self: end;
    gap: 8px;
    font-size: 0;
  }

  .header-telegram span,
  .nav-cta {
    display: none;
  }

  .header-telegram,
  .nav-cta {
    width: 38px;
    height: 38px;
    display: inline-grid;
    place-items: center;
    border: 1px solid rgba(31, 31, 31, 0.1);
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
    line-height: 0;
  }

  .header-telegram[target="_blank"]::after {
    display: none;
  }

  .nav-cta {
    font-size: 0;
    color: transparent;
    text-indent: -999px;
    white-space: nowrap;
    position: relative;
  }

  .nav-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    margin: auto;
    width: 16px;
    height: 16px;
    background: var(--black);
    text-indent: 0;
    -webkit-mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg viewBox='0 0 24 24' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6.62 10.79c1.44 2.83 3.76 5.14 6.59 6.59l2.2-2.2c.27-.27.67-.36 1.02-.24 1.12.37 2.33.57 3.57.57.55 0 1 .45 1 1V20c0 .55-.45 1-1 1C10.61 21 3 13.39 3 4c0-.55.45-1 1-1h3.5c.55 0 1 .45 1 1 0 1.24.2 2.45.57 3.57.11.35.03.74-.25 1.02l-2.2 2.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  }

  .menu-toggle {
    display: block;
    flex: 0 0 42px;
    background: #ffffff;
  }

  .site-header.is-menu-open .mobile-menu {
    display: grid;
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .hero {
    width: 100%;
    min-height: 100svh;
    padding-top: 84px;
  }

  .hero-portrait {
    width: 100vw;
    right: 0;
    bottom: 7vh;
  }

  .hero__meta {
    left: 8px;
    top: 100px;
    display: grid;
    gap: 15vh;
    max-width: 118px;
    font-size: 0.5rem;
  }

  .hero__meta span {
    padding-left: 26px;
  }

  .hero__meta span::before {
    width: 18px;
  }

  .hero__statement {
    top: 128px;
    left: 18px;
    right: 18px;
    max-width: none;
    font-size: 1.08rem;
  }

  .hero__metric {
    right: 18px;
    bottom: 138px;
    justify-items: end;
    text-align: right;
  }

  .hero__metric strong {
    font-size: 3rem;
  }

  .hero__headline {
    left: 18px;
    right: 18px;
    top: auto;
    bottom: 248px;
    width: calc(100vw - 36px);
    overflow: hidden;
  }

  .headline-line {
    display: block;
    font-size: clamp(2.25rem, 9.7vw, 4.2rem);
  }

  .hero__bottom {
    left: 18px;
    right: 18px;
    bottom: 28px;
    max-width: 460px;
  }

  .hero__bottom p {
    max-width: 92%;
    font-size: 16px;
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.5;
  }

  .hero__time,
  .hero__time strong {
    font-size: 9px;
    line-height: 1.2;
  }

  .hero-reel {
    display: none;
  }

  .hero-teaser {
    display: none;
  }

  .intro,
  .projects,
  .services,
  .platforms {
    grid-template-columns: 1fr;
  }

  .intro__copy,
  .platforms__content {
    grid-template-columns: 1fr;
  }

  .intro__copy {
    gap: 28px;
  }

  .big-copy {
    max-width: 100%;
    font-size: clamp(1.85rem, 6.25vw, 3.05rem);
    line-height: 1;
    overflow-wrap: break-word;
  }

  .platforms__intro {
    min-height: 0;
  }

  .platforms h2 {
    font-size: clamp(3rem, 14vw, 4.75rem);
  }

  .platform-list a {
    grid-template-columns: minmax(0, 1fr) 34px;
    gap: 8px;
  }

  .platform-list span {
    grid-column: 1 / 2;
  }

  .project-map,
  .contact__grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .contact h2 {
    max-width: 100%;
    font-size: clamp(2.75rem, 9.8vw, 5.2rem);
    line-height: 0.9;
    overflow-wrap: break-word;
  }

  .contact p {
    max-width: 100%;
  }

  .contact__consultation {
    width: 100%;
    margin-top: 24px;
  }

  .contact__consultation button {
    width: 100%;
    max-width: none;
    min-height: 92px;
    justify-content: flex-start;
    padding: 18px;
  }

  .project-card--large {
    grid-column: auto;
  }

  .project-card,
  .project-card--large {
    min-height: 0;
  }

  .project-card__visual,
  .project-card--large .project-card__visual {
    min-height: 320px;
  }

  .service {
    min-height: 0;
  }
}

@media (max-width: 560px) {
  .loader__inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .loader__count {
    font-size: clamp(4rem, 18vw, 5.8rem);
  }

  .site-header {
    min-height: 70px;
  }

  .brand {
    width: 134px;
  }

  .header-contacts {
    gap: 8px;
  }

  .hero {
    padding-bottom: 18px;
  }

  .hero-portrait {
    width: 100vw;
    right: 0;
    bottom: 16vh;
  }

  .hero__statement {
    top: 112px;
    font-size: 1rem;
  }

  .hero__metric {
    display: none;
  }

  .hero__headline {
    top: auto;
    bottom: 238px;
  }

  .headline-line {
    font-size: clamp(2.15rem, 10.4vw, 2.95rem);
  }

  .hero__bottom {
    bottom: 20px;
  }

  .hero__bottom p {
    font-size: 13px;
    max-width: 92%;
    font-family: var(--body);
    font-weight: 400;
    line-height: 1.48;
  }

  .button {
    min-height: 48px;
    padding-inline: 14px;
    font-size: 0.9rem;
  }

  .manifesto h2 {
    gap: 8px;
  }

  .manifesto-line--listen {
    font-size: clamp(1.95rem, 9vw, 2.5rem);
  }

  .manifesto-line--imagine {
    font-size: clamp(1.62rem, 7.2vw, 2rem);
  }

  .manifesto-line--create {
    font-size: clamp(2.5rem, 12vw, 3.4rem);
  }

  .ticker span {
    padding-inline: 22px;
    font-size: 2.45rem;
  }

  .project-card__visual,
  .project-card--large .project-card__visual {
    min-height: 240px;
  }

  .service {
    grid-template-columns: 1fr;
    gap: 12px;
    padding-block: 24px;
  }

  .service__number,
  .service__title,
  .service__text {
    grid-column: 1 / 2;
  }

  .big-copy {
    font-size: clamp(1.42rem, 6.05vw, 1.9rem);
    line-height: 1.05;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .contact h2 {
    font-size: clamp(2.1rem, 9.4vw, 2.95rem);
    line-height: 0.96;
  }

  .contact p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .contact__grid {
    width: 100%;
    min-width: 0;
    grid-template-columns: 1fr;
  }

  .contact__grid a {
    width: 100%;
    min-height: 92px;
    padding: 18px;
  }

  .contact__grid strong {
    font-size: clamp(0.9rem, 4.2vw, 1.12rem);
    line-height: 1.15;
  }

  .contact__grid span {
    font-size: 0.82rem;
  }

  .contact__consultation {
    margin-top: 24px;
  }

  .contact__consultation button {
    width: 100%;
    min-height: 92px;
    padding: 18px;
    font-size: clamp(0.9rem, 4vw, 1rem);
    justify-content: flex-start;
  }

  .planerka-widget button {
    max-width: none;
  }

  .footer {
    flex-direction: column;
  }
}
