

:root,
html[data-theme='free'] {
  /* Свободен — зелёно-чёрный */
  --surface: #060B08;
  --surface-2: #0C1610;
  --ink: #EAF6EE;
  --muted: #8AA896;
  --hairline: rgba(110, 240, 160, 0.16);
  --accent: #6EF0A0;
  --accent-rgb: 110, 240, 160;
  --on-accent: #06140C;
  --warn: #FF8B5C;
  --warn-rgb: 255, 139, 92;
  --green: #6EF0A0;
  --glow: rgba(110, 240, 160, 0.16);
  --theme-wash: rgba(36, 110, 70, 0.28);
  --theme-deep: #040806;

  --font-display: 'Unbounded', 'Inter', sans-serif;
  --font-text: 'Inter', -apple-system, sans-serif;
  --font-mono: 'JetBrains Mono', ui-monospace, monospace;

  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --pad: clamp(1.25rem, 4vw, 4rem);
  --content-max: 1680px;
  --inline: max(var(--pad), calc((100vw - var(--content-max)) / 2));

  --z-nav: 100;
  --z-progress: 150;
  --z-preloader: 9600;
  --z-cursor: 10000;
}

html[data-theme='busy'] {
  /* Занят — красно-чёрный */
  --surface: #0C0606;
  --surface-2: #1A0B0B;
  --ink: #F8ECEC;
  --muted: #B08989;
  --hairline: rgba(255, 80, 80, 0.2);
  --accent: #FF4D4D;
  --accent-rgb: 255, 77, 77;
  --on-accent: #1A0606;
  --glow: rgba(255, 77, 77, 0.18);
  --theme-wash: rgba(140, 28, 28, 0.32);
  --theme-deep: #080303;
}

html[data-theme='closed'],
html[data-theme='sleep'] {
  /* Сплю — сине-чёрный */
  --surface: #060912;
  --surface-2: #0C1220;
  --ink: #E8EEF8;
  --muted: #8F9BB0;
  --hairline: rgba(90, 150, 255, 0.2);
  --accent: #5B9DFF;
  --accent-rgb: 91, 157, 255;
  --on-accent: #061018;
  --glow: rgba(91, 157, 255, 0.18);
  --theme-wash: rgba(30, 70, 150, 0.3);
  --theme-deep: #03060E;
}


*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: auto; }

html, body { height: 100%; }

html {
  color-scheme: dark;
  background: var(--surface);
  transition: background-color 0.7s var(--ease-out);
}

body {
  font-family: var(--font-text);
  font-size: 1rem;
  line-height: 1.55;
  color: var(--ink);
  background:
    radial-gradient(1200px 700px at 90% -8%, rgba(var(--accent-rgb), 0.2), transparent 55%),
    radial-gradient(900px 520px at -5% 35%, var(--theme-wash), transparent 52%),
    var(--surface);
  background-attachment: fixed;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  transition: color 0.55s var(--ease-out), background 0.75s var(--ease-out);
}

body.is-loading { overflow: hidden; }

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }

::selection { background: var(--accent); color: var(--on-accent); }

::-webkit-scrollbar { width: 10px; }
::-webkit-scrollbar-track { background: var(--surface); }
::-webkit-scrollbar-thumb { background: #1F1F1F; }
::-webkit-scrollbar-thumb:hover { background: #2C2C2C; }

:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; }

html.has-cursor,
html.has-cursor a,
html.has-cursor button { cursor: none; }


.container {
  width: min(100% - (var(--pad) * 2), var(--content-max));
  margin-inline: auto;
}

.kicker {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
  display: flex;
  align-items: center;
  gap: 0.7em;
}

.kicker::before {
  content: '';
  width: 7px;
  height: 7px;
  background: var(--accent);
  transform: rotate(45deg);
  flex: 0 0 auto;
}

.section-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 5vw, 4.5rem);
  line-height: 1.05;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 1.2rem;
}

.u-link {
  position: relative;
  display: inline-block;
}

.u-link::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -3px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.u-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}


.u-parallax {
  position: relative;
  overflow: hidden;
}

.u-parallax > img {
  position: absolute;
  inset: 0;
  top: -10%;
  width: 100%;
  height: 120%;
  object-fit: cover;
}


.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  padding: 1rem 1.6rem;
  transition: background-color 0.3s, color 0.3s, border-color 0.3s;
}

.btn--solid {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--solid:hover {
  background: var(--ink);
  color: var(--on-accent);
}

.btn--ghost {
  border: 1px solid var(--hairline);
  color: var(--ink);
}

.btn--ghost:hover {
  border-color: var(--accent);
  color: var(--accent);
}


.cursor { display: none; }

html.has-cursor .cursor {
  display: block;
  position: fixed;
  inset: 0;
  z-index: var(--z-cursor);
  pointer-events: none;
}

.cursor__dot {
  position: absolute;
  top: 0;
  left: 0;
  width: 8px;
  height: 8px;
  background: var(--accent);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.cursor__ring {
  position: absolute;
  top: 0;
  left: 0;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: width 0.3s var(--ease-out), height 0.3s var(--ease-out),
              background-color 0.3s var(--ease-out), border-color 0.3s var(--ease-out);
}

.cursor__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--on-accent);
  opacity: 0;
  transition: opacity 0.2s;
  white-space: nowrap;
}

.cursor.is-hover .cursor__ring {
  width: 60px;
  height: 60px;
  border-color: var(--accent);
}

.cursor.is-view .cursor__ring {
  width: 92px;
  height: 92px;
  background: var(--accent);
  border-color: var(--accent);
}

.cursor.is-view .cursor__label { opacity: 1; }
.cursor.is-view .cursor__dot { opacity: 0; }


.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  z-index: var(--z-progress);
  pointer-events: none;
}

.scroll-progress__fill {
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}


.preloader {
  position: fixed;
  inset: 0;
  z-index: var(--z-preloader);
  background: var(--surface-2);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.preloader__kicker {
  position: absolute;
  top: var(--pad);
  left: var(--pad);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.preloader__word {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, calc(-50% - clamp(3.2rem, 10vw, 8.5rem)));
  font-family: var(--font-mono);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--accent);
  white-space: nowrap;
}

.preloader__count {
  font-family: var(--font-display);
  font-weight: 200;
  font-size: clamp(5rem, 18vw, 16rem);
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--ink);
  font-variant-numeric: tabular-nums;
}

.preloader__hint {
  position: absolute;
  bottom: var(--pad);
  right: var(--pad);
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--muted);
}

.preloader__bar {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.08);
}

.preloader__bar-fill {
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}


.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: var(--z-nav);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem var(--inline);
  transition: transform 0.5s var(--ease-out), background-color 0.4s, border-color 0.4s;
  border-bottom: 1px solid transparent;
}

.nav--scrolled {
  background: rgba(10, 7, 18, 0.92);
  border-bottom-color: var(--hairline);
  backdrop-filter: blur(10px);
}

.nav--hidden { transform: translateY(-110%); }

.nav__logo {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}

.nav__logo-sup {
  font-size: 0.55em;
  color: var(--accent);
  vertical-align: super;
  margin-left: 3px;
}

.nav__links {
  display: flex;
  gap: 2.2rem;
}

.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  position: relative;
  transition: color 0.25s;
}

.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 1px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s var(--ease-out);
}

.nav__links a:hover { color: var(--ink); }
.nav__links a:hover::after { transform: scaleX(1); transform-origin: left; }

.nav__end {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.lang {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  border: 1px solid var(--hairline);
  padding: 0.15rem;
}

.lang__btn {
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  padding: 0.4rem 0.55rem;
  transition: color 0.25s, background-color 0.25s;
}

.lang__btn:hover { color: var(--ink); }

.lang__btn.is-active {
  color: var(--on-accent);
  background: var(--ink);
}

.nav__cta {
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--on-accent);
  background: var(--ink);
  padding: 0.65rem 1.3rem;
  transition: background-color 0.25s, color 0.25s;
  display: inline-block;
}

.nav__cta:hover { background: var(--accent); }


.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding-inline: var(--inline);
  padding-bottom: clamp(2rem, 5vh, 4rem);
}

.hero__canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.6;
}

.hero__bg-word {
  position: absolute;
  top: 12%;
  right: -2%;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 16vw;
  line-height: 1;
  letter-spacing: -0.02em;
  color: transparent;
  -webkit-text-stroke: 1px rgba(255, 255, 255, 0.13);
  user-select: none;
  pointer-events: none;
  white-space: nowrap;
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: var(--content-max);
  margin-inline: 0;
}

.hero__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(3rem, 11.5vw, 11.5rem);
  line-height: 0.94;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin: 1.4rem 0 0;
}

.hero__line { display: block; }

.hero__line--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--ink);
}

.hero__word--accent-last .ch:last-child .ch__in { color: var(--accent); }

@supports not (-webkit-text-stroke: 1px black) {
  .hero__line--outline { color: var(--muted); }
}

.hero__bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 3rem;
  margin-top: clamp(2rem, 4vh, 3.5rem);
  padding-top: 1.6rem;
  border-top: 1px solid var(--hairline);
}

.hero__col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1.8rem;
}

.hero__sub {
  max-width: 38ch;
  font-size: clamp(1rem, 1.4vw, 1.2rem);
  line-height: 1.5;
  color: var(--muted);
}

.hero__actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero__meta {
  display: flex;
  align-items: center;
  gap: 2.2rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
  white-space: nowrap;
}

.hero__status {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--ink);
}

.hero__status i {
  display: block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(var(--accent-rgb), 0.55);
  flex: 0 0 auto;
  transition: background 0.45s var(--ease-out), box-shadow 0.45s var(--ease-out);
}

.hero__scroll-hint {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  color: var(--ink);
}

.hero__scroll-line {
  position: relative;
  width: 1px;
  height: 46px;
  background: var(--hairline);
  overflow: hidden;
}

.hero__scroll-line::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 40%;
  background: var(--accent);
  animation: scrollHint 1.8s var(--ease-out) infinite;
}

@keyframes scrollHint {
  0% { transform: translateY(-110%); }
  60%, 100% { transform: translateY(280%); }
}


.hero__badge {
  position: absolute;
  top: 15%;
  right: var(--inline);
  width: clamp(110px, 11vw, 165px);
  height: clamp(110px, 11vw, 165px);
  z-index: 3;
}

.hero__badge svg {
  width: 100%;
  height: 100%;
  overflow: visible;
  animation: spin 14s linear infinite;
}

.hero__badge text {
  font-family: var(--font-mono);
  font-size: 15px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  fill: var(--muted);
}

.hero__badge-arrow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: var(--accent);
  font-size: 1.4rem;
  animation: bob 2.2s var(--ease-out) infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

@keyframes bob {
  0%, 100% { transform: translate(-50%, -50%); }
  50% { transform: translate(-50%, -32%); }
}


.ch {
  display: inline-block;
  overflow: hidden;
  vertical-align: top;
}

.ch__in {
  display: inline-block;
  will-change: transform, opacity;
  transition: opacity 0.35s var(--ease-out), transform 0.45s var(--ease-out);
}


.roll {
  display: inline-block;
  overflow: hidden;
  height: 1.35em;
  vertical-align: top;
}

.roll > span {
  display: block;
  transition: transform 0.4s var(--ease-out);
}

.roll > span:last-child { color: var(--accent); }

a:hover .roll > span,
button:hover .roll > span { transform: translateY(-100%); }


.marquee {
  border-top: 1px solid var(--hairline);
  border-bottom: 1px solid var(--hairline);
  padding: 1.3rem 0;
  overflow: hidden;
}

.marquee__inner {
  display: flex;
  width: max-content;
  animation: marquee 28s linear infinite;
}

.marquee__group {
  display: flex;
  align-items: center;
  gap: 3rem;
  padding-right: 3rem;
  flex: 0 0 auto;
}

.marquee__group span {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.marquee__group b {
  color: var(--accent);
  font-size: 0.9rem;
  font-weight: 400;
}

@keyframes marquee {
  to { transform: translateX(-50%); }
}

.marquee--accent {
  background: var(--accent);
  border-color: var(--accent);
}

.marquee--accent .marquee__group span { color: var(--on-accent); }

.marquee--accent .marquee__group b { color: rgba(0, 0, 0, 0.45); }


.manifesto {
  padding: clamp(7rem, 14vh, 12rem) 0 clamp(5rem, 10vh, 9rem);
}

.manifesto__text {
  margin-top: 2.5rem;
  max-width: 27ch;
  font-size: clamp(1.55rem, 3.4vw, 3rem);
  font-weight: 500;
  line-height: 1.28;
  letter-spacing: -0.015em;
}

.mword { opacity: 0.13; }

.manifesto__grid {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: clamp(2.5rem, 6vw, 7rem);
  margin-top: clamp(4rem, 9vh, 8rem);
  align-items: start;
}

.manifesto__media-frame {
  aspect-ratio: 4 / 5;
  background: var(--surface-2);
}

.manifesto__media figcaption {
  margin-top: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.manifesto__bio { padding-top: clamp(1rem, 6vh, 5rem); }

.manifesto__lead {
  font-size: clamp(1.15rem, 1.7vw, 1.5rem);
  font-weight: 500;
  line-height: 1.45;
  letter-spacing: -0.01em;
}

.manifesto__bio > p + p {
  margin-top: 1.4rem;
  color: var(--muted);
  max-width: 46ch;
}

.manifesto__facts-title {
  margin-top: 3rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--muted);
}

.manifesto__facts { margin-top: 1.2rem; }

.manifesto__facts li {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--hairline);
  font-size: 0.95rem;
}

.manifesto__facts li:last-child { border-bottom: 1px solid var(--hairline); }

.manifesto__facts span {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  flex: 0 0 auto;
}


.takeover {
  position: relative;
  border-top: 1px solid var(--hairline);
}

.takeover__stage {
  position: relative;
  height: 82vh;
  overflow: hidden;
}

.takeover__media {
  position: absolute;
  inset: 0;
}

.takeover__media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.35);
}

.takeover__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) contrast(1.08) brightness(0.85);
}

.takeover__caption {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 var(--pad);
}

.takeover__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2rem, 6.2vw, 6rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
  text-transform: uppercase;
}

.takeover__sub {
  margin-top: 1.4rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--ink);
}


.works {
  border-top: 1px solid var(--hairline);
  background: var(--surface);
}

.works__viewport { padding: clamp(3rem, 8vh, 6rem) 0; }

.works__track { display: flex; flex-direction: column; gap: 5rem; padding: 0 var(--pad); }

.works__intro { max-width: 560px; }

.works__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(2.2rem, 4.2vw, 4rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin-top: 1.2rem;
}

.works__lead {
  margin-top: 1.2rem;
  color: var(--muted);
  font-size: 1rem;
}

.works__progress {
  height: 2px;
  background: var(--hairline);
  margin-top: 2.6rem;
  overflow: hidden;
}

.works__progress-fill {
  height: 100%;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: left;
}

.works__hint {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.work-card { position: relative; }

.work-card__link { display: block; }

.work-card__media {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--hairline);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(var(--accent-rgb), 0.14), transparent 55%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--theme-deep) 100%);
  transition: border-color 0.45s var(--ease-out), background 0.45s;
}

.work-card__glyph {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(4.5rem, 12vw, 10rem);
  line-height: 1;
  letter-spacing: -0.04em;
  color: transparent;
  -webkit-text-stroke: 1.5px rgba(255, 255, 255, 0.2);
  transition:
    -webkit-text-stroke-color 0.45s var(--ease-out),
    color 0.45s var(--ease-out),
    transform 0.55s var(--ease-out);
  user-select: none;
  will-change: transform;
}

.work-card__link:not(.work-card__link--static):hover .work-card__media,
.work-card__link:not(.work-card__link--static):focus-visible .work-card__media {
  border-color: rgba(var(--accent-rgb), 0.4);
  background:
    radial-gradient(ellipse 90% 70% at 100% 0%, rgba(var(--accent-rgb), 0.22), transparent 55%),
    linear-gradient(165deg, var(--surface-2) 0%, var(--theme-deep) 100%);
}

.work-card__link:not(.work-card__link--static):hover .work-card__glyph,
.work-card__link:not(.work-card__link--static):focus-visible .work-card__glyph {
  color: rgba(var(--accent-rgb), 0.16);
  -webkit-text-stroke-color: var(--accent);
  transform: scale(1.04);
}

.work-card__link--static .work-card__glyph {
  -webkit-text-stroke-color: rgba(255, 255, 255, 0.12);
  opacity: 0.55;
}

.work-card__info {
  display: flex;
  align-items: baseline;
  gap: 1.4rem;
  margin-top: 1.2rem;
}

.work-card__index {
  font-family: var(--font-mono);
  font-size: 0.75rem;
  color: var(--accent);
  flex: 0 0 auto;
}

.work-card__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.25rem, 1.8vw, 1.7rem);
  text-transform: uppercase;
  letter-spacing: 0.01em;
  line-height: 1.1;
  transition: color 0.3s;
}

.work-card__link:not(.work-card__link--static):hover .work-card__title { color: var(--accent); }

.work-card__tags {
  margin-top: 0.45rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.work-card__desc {
  margin-top: 0.7rem;
  font-size: 0.88rem;
  line-height: 1.5;
  color: var(--muted);
  max-width: 36ch;
}

.work-card__status {
  display: inline-block;
  margin-top: 0.8rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--warn);
  border: 1px solid rgba(var(--warn-rgb), 0.4);
  padding: 0.3rem 0.7rem;
}

.works__outro {
  display: flex;
  align-items: center;
  justify-content: center;
}

.works__more {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 200px;
  height: 200px;
  border: 1px solid var(--hairline);
  border-radius: 50%;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.05rem;
  text-transform: uppercase;
  text-align: center;
  line-height: 1.3;
  transition: background-color 0.35s, color 0.35s, border-color 0.35s;
}

.works__more:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

@media (min-width: 769px) {
  .takeover__stage { height: 100vh; }

  .works__viewport {
    height: 100vh;
    padding: 0;
    display: flex;
    align-items: center;
    overflow: hidden;
  }

  .works__track {
    flex-direction: row;
    align-items: center;
    gap: clamp(3rem, 5vw, 6rem);
    padding: 0 var(--pad);
    will-change: transform;
  }

  .works__intro {
    flex: 0 0 auto;
    width: min(26vw, 420px);
  }

  .work-card { flex: 0 0 auto; }

  .work-card__media {
    height: min(54vh, 600px);
    aspect-ratio: 4 / 5;
  }

  .work-card--offset { margin-top: 5rem; }

  .works__outro {
    flex: 0 0 auto;
    padding-right: var(--pad);
  }
}


.scope {
  padding: clamp(5rem, 12vh, 9rem) 0;
  border-top: 1px solid var(--hairline);
}

.scope__lead {
  margin-top: 1.2rem;
  color: var(--muted);
  max-width: 46ch;
  font-size: 1.05rem;
}

.scope__grid {
  margin-top: clamp(2.5rem, 5vh, 4rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 5vw, 4rem);
}

.scope__heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin-bottom: 1.4rem;
}

.scope__heading--yes { color: var(--green); }
.scope__heading--no { color: var(--warn); }

.scope__list {
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid var(--hairline);
}

.scope__list li {
  display: flex;
  align-items: flex-start;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--hairline);
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.45;
}

.scope__list i {
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  flex: 0 0 auto;
  background: currentColor;
  transform: rotate(45deg);
  opacity: 0.7;
}

.scope__heading--yes + .scope__list li i { color: var(--green); }
.scope__heading--no + .scope__list li i { color: var(--warn); }


.process {
  padding: clamp(6rem, 14vh, 11rem) 0;
  border-top: 1px solid var(--hairline);
}

.process__sub {
  margin-top: 1.4rem;
  color: var(--muted);
  max-width: 46ch;
  font-size: 1.05rem;
}

.process__stack {
  margin-top: clamp(2.5rem, 5vh, 4rem);
  display: flex;
  flex-direction: column;
  gap: clamp(1.5rem, 3vh, 2.5rem);
}

.p-card {
  position: sticky;
  top: calc(92px + var(--i) * 16px);
  min-height: 52vh;
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  padding: clamp(1.8rem, 4vw, 3.5rem);
  display: grid;
  grid-template-columns: 1fr auto;
  grid-template-rows: auto 1fr auto;
  grid-template-areas:
    'title num'
    'text text'
    'tag tag';
  gap: 1.5rem;
}

.p-card__title {
  grid-area: title;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 4vw, 3.2rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  text-transform: uppercase;
}

.p-card__num {
  grid-area: num;
  justify-self: end;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  color: var(--accent);
}

.p-card__text {
  grid-area: text;
  align-self: end;
  max-width: 52ch;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
}

.p-card__tag {
  grid-area: tag;
  border-top: 1px solid var(--hairline);
  padding-top: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}


.services {
  position: relative;
  padding: clamp(6rem, 14vh, 11rem) 0;
  border-top: 1px solid var(--hairline);
}

.services__list { margin-top: clamp(1.6rem, 3vh, 2.4rem); }

.service {
  display: grid;
  grid-template-columns: 4rem 1.2fr 1fr auto 2.5rem;
  align-items: center;
  gap: clamp(1rem, 3vw, 3rem);
  padding: clamp(1.6rem, 3.5vh, 2.6rem) 0;
  border-top: 1px solid var(--hairline);
  transition: background-color 0.45s, background 0.45s;
  color: inherit;
  text-decoration: none;
  width: 100%;
}

.services__list > li:last-child .service,
.services__list > .service:last-child { border-bottom: 1px solid var(--hairline); }

.service:hover { background: rgba(255, 255, 255, 0.03); }

.service__index {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  color: var(--muted);
  transition: color 0.3s;
}

.service:hover .service__index { color: var(--accent); }

.service__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.6vw, 2.2rem);
  text-transform: uppercase;
  letter-spacing: 0.005em;
  line-height: 1.08;
  transition: color 0.3s;
}

.service:hover .service__title { color: var(--accent); }

.service__desc {
  color: var(--muted);
  font-size: 0.95rem;
  max-width: 38ch;
  justify-self: end;
}

.service__price {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(1rem, 1.5vw, 1.4rem);
  white-space: nowrap;
  transition: color 0.3s;
}

.service:hover .service__price { color: var(--accent); }

.service__arrow {
  font-size: 1.5rem;
  justify-self: end;
  color: var(--muted);
  transition: transform 0.4s var(--ease-out), color 0.3s;
}

.service:hover .service__arrow {
  transform: translate(4px, -4px);
  color: var(--accent);
}

.prices__note {
  margin-top: 1.8rem;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}


.faq {
  padding: clamp(6rem, 14vh, 11rem) 0;
  border-top: 1px solid var(--hairline);
}

.faq__list { margin-top: clamp(2.5rem, 5vh, 4rem); }

.faq__item { border-top: 1px solid var(--hairline); }

.faq__item:last-child { border-bottom: 1px solid var(--hairline); }

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding: clamp(1.3rem, 3vh, 1.9rem) 0;
  text-align: left;
  font-weight: 500;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
  letter-spacing: -0.01em;
  transition: color 0.3s;
}

.faq__q:hover { color: var(--accent); }

.faq__icon {
  font-family: var(--font-mono);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--accent);
  flex: 0 0 auto;
  transition: transform 0.45s var(--ease-out);
}

.faq__item.is-open .faq__icon { transform: rotate(45deg); }

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.5s var(--ease-out);
}

.faq__a-in {
  overflow: hidden;
  min-height: 0;
}

.faq__a-in p {
  color: var(--muted);
  max-width: 62ch;
  padding-bottom: 1.6rem;
}

.faq__item.is-open .faq__a { grid-template-rows: 1fr; }


.contact {
  position: relative;
  padding: clamp(7rem, 16vh, 13rem) 0 clamp(5rem, 10vh, 8rem);
  border-top: 1px solid var(--hairline);
  overflow: hidden;
}

.contact__container { position: relative; }

.contact__title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.7rem, 9vw, 9rem);
  line-height: 0.96;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  margin-top: 2rem;
}

.contact__line { display: block; }

.contact__line--outline {
  color: transparent;
  -webkit-text-stroke: 2px var(--accent);
}

@supports not (-webkit-text-stroke: 1px black) {
  .contact__line--outline { color: var(--accent); }
}

.contact__cta {
  position: absolute;
  right: clamp(0rem, 4vw, 4rem);
  top: 1.2rem;
  width: clamp(150px, 15vw, 210px);
  height: clamp(150px, 15vw, 210px);
  border-radius: 50%;
  background: var(--accent);
  color: var(--on-accent);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(0.95rem, 1.2vw, 1.15rem);
  text-transform: uppercase;
  line-height: 1.35;
  z-index: 2;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 6vw, 6rem);
  margin-top: clamp(3.5rem, 9vh, 6rem);
  padding-top: 2rem;
  border-top: 1px solid var(--hairline);
  align-items: start;
}

.contact__text {
  color: var(--muted);
  max-width: 44ch;
  font-size: 1.05rem;
  line-height: 1.6;
}

.contact__mail {
  display: inline-block;
  margin-top: 1.8rem;
  font-size: clamp(1.6rem, 3.4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: -0.015em;
  position: relative;
}

.contact__mail::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -4px;
  width: 100%;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.45s var(--ease-out);
}

.contact__mail:hover::after { transform: scaleX(1); transform-origin: left; }

.contact__socials {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 2.4rem;
}

.contact__socials a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
  transition: color 0.25s;
}

.contact__socials a:hover { color: var(--ink); }


.order {
  background: var(--surface-2);
  border: 1px solid var(--hairline);
  padding: clamp(1.6rem, 3vw, 2.6rem);
}

.order__chips {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
  margin-bottom: 1.6rem;
}

.order__chip {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  padding: 0.55rem 1rem;
  border: 1px solid var(--hairline);
  color: var(--muted);
  transition: background-color 0.25s, color 0.25s, border-color 0.25s;
}

.order__chip:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.order__chip.is-active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--on-accent);
}

.order__field {
  display: block;
  margin-bottom: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.order__field input,
.order__field textarea {
  display: block;
  width: 100%;
  margin-top: 0.6rem;
  background: var(--surface);
  border: 1px solid var(--hairline);
  color: var(--ink);
  font-family: var(--font-text);
  font-size: 1rem;
  padding: 0.9rem 1rem;
  transition: border-color 0.25s;
  resize: vertical;
}

.order__field input:focus,
.order__field textarea:focus {
  border-color: var(--accent);
  outline: none;
}

.order__submit {
  width: 100%;
  justify-content: center;
}

.order__note {
  margin-top: 1rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.order__note.is-ok { color: var(--green); }
.order__note.is-err { color: var(--warn); }


.footer {
  border-top: 1px solid var(--hairline);
  padding: 1.4rem 0;
}

.footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  flex-wrap: wrap;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--muted);
}

.footer__clock { color: var(--ink); font-variant-numeric: tabular-nums; }

.footer__links {
  display: flex;
  gap: 1.6rem;
  flex-wrap: wrap;
}

.footer__links a {
  color: var(--muted);
  transition: color 0.25s;
}

.footer__links a:hover { color: var(--ink); }

.footer__top {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--ink);
  transition: color 0.25s;
}

.footer__top:hover { color: var(--accent); }


.side-ind {
  position: fixed;
  left: var(--pad);
  bottom: 1.5rem;
  z-index: 90;
  display: flex;
  align-items: center;
  gap: 0.9rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #FFFFFF;
  pointer-events: none;
}

.side-ind__line {
  width: 42px;
  height: 1px;
  background: #FFFFFF;
  opacity: 0.5;
}


@media (max-width: 1024px) {
  .side-ind { display: none; }

  .service {
    grid-template-columns: 3rem 1fr 2.5rem;
    grid-template-areas:
      'index title arrow'
      'index price arrow'
      'index desc arrow';
    row-gap: 0.5rem;
  }

  .service__index { grid-area: index; }
  .service__title { grid-area: title; }
  .service__desc { grid-area: desc; justify-self: start; max-width: 52ch; }
  .service__price { grid-area: price; }
  .service__arrow { grid-area: arrow; }
}

@media (max-width: 768px) {
  .nav__links { display: none; }

  .hero__bg-word { font-size: 24vw; top: 8%; }

  .hero__badge { display: none; }

  .hero__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.8rem;
  }

  .hero__meta { gap: 1.4rem; flex-wrap: wrap; white-space: normal; }

  .hero__scroll-line { height: 34px; }

  .manifesto__grid { grid-template-columns: 1fr; }

  .manifesto__bio { padding-top: 0; }

  .scope__grid { grid-template-columns: 1fr; }

  .work-card--offset { margin-top: 0; }

  .works__outro { justify-content: flex-start; }

  .p-card { min-height: 46vh; }

  .contact__cta {
    position: static;
    margin-top: 2.5rem;
  }

  .contact__grid { grid-template-columns: 1fr; }
}


@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .marquee__inner { animation: none; }
  .cursor, .scroll-progress { display: none !important; }
  .ch__in { transform: none; }
  .mword { opacity: 1; }
  .preloader { display: none; }
  .hero__canvas { display: none; }
  .hero__badge svg, .hero__badge-arrow { animation: none; }
  .faq__a { grid-template-rows: 1fr; }
}


