:root {
  --ink: #121212;
  --paper: #f6f3ed;
  --white: #fffefb;
  --soft: #e9e5de;
  --muted: #706e69;
  --red: #ed3d32;
  --red-dark: #c72920;
  --line: rgba(18, 18, 18, 0.18);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Arial, Helvetica, sans-serif;
  --pad: clamp(20px, 4vw, 64px);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.45;
  -webkit-font-smoothing: antialiased;
}

button,
a {
  color: inherit;
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

a {
  text-decoration: none;
}

button {
  border: 0;
}

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

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

:focus-visible {
  outline: 3px solid rgba(237, 61, 50, 0.46);
  outline-offset: 4px;
}

.section {
  padding: clamp(86px, 10vw, 150px) var(--pad);
  border-bottom: 1px solid var(--line);
}

.site-header {
  position: sticky;
  z-index: 80;
  top: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 72px;
  align-items: center;
  padding-inline: var(--pad);
  gap: 40px;
  border-bottom: 1px solid var(--line);
  background: rgba(246, 243, 237, 0.93);
  backdrop-filter: blur(16px);
}

.wordmark {
  display: inline-flex;
  align-items: center;
  font-family: var(--serif);
  font-size: 1.55rem;
  line-height: 1;
  white-space: nowrap;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(22px, 3vw, 48px);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-cta {
  transition: color 160ms ease;
}

.desktop-nav a:hover,
.header-cta:hover {
  color: var(--red);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 18px;
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.menu-toggle,
.mobile-nav {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(520px, 1.08fr);
  min-height: calc(100vh - 72px);
  border-bottom: 1px solid var(--line);
}

.hero__copy {
  display: flex;
  min-height: 720px;
  justify-content: center;
  flex-direction: column;
  padding: 72px var(--pad) 58px;
  border-right: 1px solid var(--line);
}

.issue-label,
.kicker,
.section-index {
  margin-bottom: 25px;
  color: var(--red);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.hero h1,
.manifesto h2,
.faces h2,
.roles h2,
.income h2,
.online h2,
.faq h2,
.apply h2 {
  margin-bottom: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero h1 {
  font-size: clamp(4.1rem, 7.5vw, 8.6rem);
  line-height: 0.82;
}

.hero h1 em,
.manifesto h2 em,
.apply h2 em {
  color: var(--red);
  font-weight: 400;
}

.hero__lead {
  max-width: 650px;
  margin: 38px 0 34px;
  color: var(--muted);
  font-size: clamp(0.95rem, 1.2vw, 1.1rem);
  line-height: 1.68;
}

.hero__actions {
  display: flex;
  align-items: center;
  gap: 29px;
}

.button {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  padding: 0 26px;
  gap: 32px;
  border: 1px solid transparent;
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

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

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

.button--red:hover {
  background: var(--red-dark);
}

.underlink {
  display: inline-flex;
  padding-block: 9px;
  gap: 13px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.hero__facts {
  display: flex;
  margin: 43px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__facts li {
  padding-inline: 16px;
  border-right: 1px solid var(--line);
}

.hero__facts li:first-child {
  padding-left: 0;
}

.hero__facts li:last-child {
  border-right: 0;
}

.hero__visual {
  position: relative;
  min-height: 720px;
  overflow: hidden;
  background: #dfdbd3;
}

.hero__portrait {
  position: absolute;
  inset: 0;
  margin: 0;
}

.hero__portrait::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 61%, rgba(0, 0, 0, 0.24));
}

.hero__portrait img {
  height: 100%;
  object-fit: cover;
  object-position: 50% 34%;
  filter: saturate(0.87) contrast(1.03);
}

.hero__detail {
  position: absolute;
  z-index: 3;
  right: var(--pad);
  bottom: 42px;
  width: min(28%, 220px);
  margin: 0;
  padding: 7px 7px 10px;
  background: var(--paper);
  box-shadow: 0 18px 55px rgba(18, 18, 18, 0.16);
  transform: rotate(2.5deg);
}

.hero__detail img {
  height: 230px;
  object-fit: cover;
  object-position: 50% 28%;
}

.hero__detail figcaption {
  margin-top: 8px;
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__stamp {
  position: absolute;
  z-index: 4;
  top: 44px;
  left: -24px;
  display: grid;
  width: 144px;
  min-height: 144px;
  place-content: center;
  color: #fff;
  border-radius: 50%;
  background: var(--red);
  text-align: center;
  transform: rotate(-11deg);
}

.hero__stamp span {
  font-size: 0.62rem;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero__stamp b {
  font-family: var(--serif);
  font-size: 3.7rem;
  font-weight: 400;
  line-height: 0.9;
}

.hero__vertical {
  position: absolute;
  z-index: 2;
  top: 41px;
  right: 14px;
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.55rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.running-line {
  overflow: hidden;
  color: #fff;
  background: var(--red);
}

.running-line__track {
  display: flex;
  width: max-content;
  min-height: 61px;
  align-items: center;
  gap: 28px;
  animation: line-scroll 28s linear infinite;
  font-size: 0.69rem;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.running-line i {
  color: rgba(255, 255, 255, 0.64);
  font-style: normal;
}

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

.manifesto {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1.7fr);
  gap: clamp(40px, 7vw, 110px);
  background: var(--white);
}

.section-index {
  color: var(--muted);
}

.manifesto h2,
.roles h2,
.income h2,
.online h2,
.faq h2,
.apply h2 {
  font-size: clamp(3.5rem, 7.2vw, 8rem);
  line-height: 0.91;
}

.manifesto__body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  max-width: 920px;
  margin-top: 55px;
  gap: 54px;
  color: var(--muted);
}

.manifesto__body p {
  margin-bottom: 0;
  line-height: 1.75;
}

.faces {
  padding-inline: 0;
  background: var(--paper);
}

.faces__heading,
.roles__heading {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1.7fr);
  margin: 0 var(--pad) 64px;
  gap: clamp(40px, 7vw, 110px);
}

.faces h2 {
  font-size: clamp(3.2rem, 6.5vw, 7rem);
  line-height: 0.94;
}

.faces__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.72fr 0.88fr;
  height: min(62vw, 760px);
  min-height: 520px;
  align-items: end;
}

.face-card {
  position: relative;
  height: 80%;
  overflow: hidden;
  margin: 0;
  border-right: 6px solid var(--paper);
}

.face-card--landscape {
  height: 100%;
}

.face-card--portrait {
  height: 88%;
}

.face-card img {
  height: 100%;
  object-fit: cover;
  filter: saturate(0.88);
  transition: transform 500ms ease;
}

.face-card:hover img {
  transform: scale(1.025);
}

.face-card--landscape img {
  object-position: 50% center;
}

.face-card--portrait img {
  object-position: 50% 29%;
}

.face-card--square img {
  object-position: 50% 25%;
}

.face-card figcaption {
  position: absolute;
  inset: auto 0 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  color: #fff;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.78));
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.face-card figcaption b {
  color: var(--red);
}

.content-note {
  display: grid;
  grid-template-columns: 0.36fr 1fr auto;
  align-items: center;
  margin: 28px var(--pad) 0;
  padding-top: 25px;
  gap: 28px;
  border-top: 1px solid var(--line);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.content-note span {
  color: var(--red);
  font-weight: 800;
}

.content-note p {
  margin: 0;
  color: var(--muted);
}

.content-note strong {
  white-space: nowrap;
}

.roles {
  padding-inline: 0;
  background: var(--white);
}

.roles h2 {
  max-width: 1100px;
}

.roles h2 em {
  color: var(--red);
  font-weight: 400;
}

.roles__stage {
  display: grid;
  grid-template-columns: minmax(260px, 0.34fr) 64px minmax(0, 1fr);
  align-items: stretch;
  margin-inline: var(--pad);
  gap: 0;
}

.model-input,
.team-engine {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.model-input {
  display: flex;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ink);
  background: var(--paper);
}

.model-input__head,
.team-engine__head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
}

.model-input__head > div,
.team-engine__head > div {
  display: grid;
  gap: 4px;
}

.model-input__head span,
.team-engine__head span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.model-input__head strong {
  font-family: var(--serif);
  font-size: 2.35rem;
  font-weight: 400;
}

.model-input__head > b,
.team-engine__head > b {
  color: rgba(18, 18, 18, 0.14);
  font-family: var(--serif);
  font-size: 4rem;
  font-weight: 400;
  line-height: 0.86;
}

.model-input__steps {
  display: grid;
  margin-top: 34px;
  border-top: 1px solid var(--line);
}

.model-input__steps > div {
  display: grid;
  grid-template-columns: 37px 1fr;
  align-items: center;
  padding: 15px 0;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.model-input__steps > div > span {
  color: var(--red);
  font-size: 0.62rem;
  font-weight: 900;
}

.model-input__steps p {
  display: grid;
  margin: 0;
  gap: 3px;
}

.model-input__steps b {
  font-size: 0.78rem;
}

.model-input__steps small {
  color: var(--muted);
  font-size: 0.64rem;
}

.model-input__visual {
  position: relative;
  min-height: 285px;
  overflow: hidden;
  margin: 28px 0 0;
  background: #ded9d1;
}

.model-input__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 25%;
  filter: saturate(0.86);
}

.model-input__visual figcaption {
  position: absolute;
  right: 9px;
  bottom: 9px;
  left: 9px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 11px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(18, 18, 18, 0.58);
  backdrop-filter: blur(10px);
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.model-input__visual figcaption b {
  color: #a9efbd;
}

.model-input__note {
  margin: auto 0 0;
  padding-top: 23px;
  color: var(--muted);
  border-top: 1px solid var(--line);
  font-size: 0.67rem;
  font-weight: 700;
  line-height: 1.55;
  text-transform: uppercase;
}

.roles__transfer {
  position: relative;
  z-index: 4;
  display: grid;
  align-content: center;
  justify-items: center;
  margin-inline: -1px;
  color: var(--red);
}

.roles__transfer::before {
  position: absolute;
  z-index: -1;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 1px;
  content: "";
  background: repeating-linear-gradient(to bottom, var(--red) 0 5px, transparent 5px 11px);
}

.roles__transfer span {
  padding: 8px 5px;
  background: var(--white);
  font-size: 0.53rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  writing-mode: vertical-rl;
}

.roles__transfer b {
  display: grid;
  width: 54px;
  height: 54px;
  place-items: center;
  margin-top: 16px;
  color: #fff;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  font-size: 1.45rem;
}

.team-engine {
  padding: clamp(30px, 4vw, 56px);
  color: #fff;
  background:
    radial-gradient(circle at 76% 28%, rgba(255, 255, 255, 0.12), transparent 25%),
    linear-gradient(135deg, var(--red), #d92e25);
}

.team-engine::before {
  position: absolute;
  inset: 0;
  content: "";
  opacity: 0.16;
  background:
    linear-gradient(rgba(255, 255, 255, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.15) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(135deg, transparent 5%, #000 45%, #000 100%);
}

.team-engine__head span {
  color: rgba(255, 255, 255, 0.66);
}

.team-engine__head h3 {
  max-width: 760px;
  margin: 8px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.35rem, 4vw, 4.8rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.team-engine__head > b {
  color: rgba(255, 255, 255, 0.18);
}

.team-engine__stats {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 34px;
  gap: 8px;
}

.team-engine__stats > div {
  display: flex;
  min-height: 84px;
  align-items: center;
  padding: 15px;
  gap: 12px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
}

.team-engine__stats strong {
  font-family: var(--serif);
  font-size: 2.25rem;
  font-weight: 400;
  line-height: 1;
}

.team-engine__stats span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.58rem;
  font-weight: 800;
  line-height: 1.45;
  text-transform: uppercase;
}

.value-map {
  position: relative;
  z-index: 2;
  height: 345px;
  margin-top: 24px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.24);
  background: rgba(108, 8, 2, 0.13);
}

.value-map::before,
.value-map::after {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  height: 300px;
  content: "";
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.value-map::after {
  width: 225px;
  height: 225px;
  border-style: dashed;
  animation: value-orbit 24s linear infinite;
}

@keyframes value-orbit {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

.value-map__lines {
  position: absolute;
  inset: 0;
}

.value-map__lines i {
  position: absolute;
  z-index: 0;
  top: 50%;
  left: 50%;
  width: 38%;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0.72), rgba(255, 255, 255, 0.08));
  transform-origin: left;
}

.value-map__lines i:nth-child(1) { transform: rotate(205deg); }
.value-map__lines i:nth-child(2) { transform: rotate(322deg); }
.value-map__lines i:nth-child(3) { transform: rotate(4deg); }
.value-map__lines i:nth-child(4) { transform: rotate(36deg); }
.value-map__lines i:nth-child(5) { transform: rotate(145deg); }

.value-core,
.value-node {
  position: absolute;
  z-index: 2;
  display: grid;
  place-content: center;
  text-align: center;
}

.value-core {
  top: 50%;
  left: 50%;
  width: 176px;
  height: 176px;
  padding: 20px;
  color: var(--ink);
  border: 8px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  background: var(--white);
  background-clip: padding-box;
  box-shadow: 0 20px 60px rgba(90, 10, 4, 0.27);
  transform: translate(-50%, -50%);
}

.value-core span,
.value-core small {
  color: var(--red);
  font-size: 0.5rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.value-core strong {
  margin: 7px 0;
  font-family: var(--serif);
  font-size: 2.45rem;
  font-weight: 400;
  line-height: 0.82;
}

.value-core small {
  color: var(--muted);
  font-size: 0.43rem;
}

.value-node {
  width: 122px;
  min-height: 72px;
  padding: 10px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: 0 13px 35px rgba(90, 10, 4, 0.14);
  backdrop-filter: blur(9px);
}

.value-node b {
  font-size: 0.68rem;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.value-node span {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.52rem;
  line-height: 1.35;
}

.value-node--strategy { top: 24px; left: 34px; }
.value-node--smm { top: 24px; right: 34px; }
.value-node--ads { top: 50%; right: 24px; transform: translateY(-50%); }
.value-node--sales { right: 66px; bottom: 24px; }
.value-node--brands { bottom: 24px; left: 66px; }

.growth-chain {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1.05fr;
  min-height: 62px;
  align-items: center;
  margin-top: 8px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(255, 255, 255, 0.1);
}

.growth-chain span {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 12px;
  gap: 8px;
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.growth-chain span b {
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.5rem;
}

.growth-chain i {
  color: rgba(255, 255, 255, 0.54);
  font-style: normal;
}

.growth-chain__result {
  align-self: stretch;
  color: var(--red);
  background: var(--white);
}

.growth-chain__result b {
  color: var(--red) !important;
  opacity: 0.55;
}

.team-engine__caption {
  position: relative;
  z-index: 2;
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.57rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-align: right;
  text-transform: uppercase;
}

.production {
  display: grid;
  grid-template-columns: minmax(250px, 0.72fr) minmax(420px, 1.2fr) minmax(220px, 0.64fr);
  margin-inline: var(--pad);
  border: 1px solid var(--ink);
  background: var(--white);
}

.production__frame,
.production__team,
.production__result {
  position: relative;
  min-height: 690px;
}

.production__frame {
  overflow: hidden;
  margin: 0;
  background: #d9d5ce;
}

.production__frame::after,
.production__team::after {
  position: absolute;
  z-index: 8;
  top: 50%;
  right: -23px;
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  content: "→";
  color: #fff;
  border: 6px solid var(--white);
  border-radius: 50%;
  background: var(--red);
  font-size: 1.2rem;
  transform: translateY(-50%);
}

.production__frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 28%;
  filter: saturate(0.84) contrast(1.02);
}

.production__frame::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(18, 18, 18, 0.36), transparent 25%, transparent 62%, rgba(18, 18, 18, 0.75));
}

.production__frame-top,
.production__result-head {
  position: absolute;
  z-index: 3;
  top: 0;
  right: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px;
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.production__frame-top {
  color: #fff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
}

.production__frame-top b,
.production__result-head b {
  font-family: var(--serif);
  font-size: 0.95rem;
  font-style: italic;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.production__frame figcaption {
  position: absolute;
  z-index: 3;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 14px 12px;
  gap: 8px;
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.38);
  background: rgba(18, 18, 18, 0.43);
  backdrop-filter: blur(10px);
  font-size: 0.56rem;
  font-weight: 900;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.production__frame figcaption i {
  color: var(--red);
  font-style: normal;
}

.production__team {
  display: flex;
  flex-direction: column;
  padding: clamp(32px, 4vw, 55px);
  border-right: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  background: #efebe4;
}

.production__team::before {
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 7px;
  content: "";
  background: var(--red);
}

.production__team::after {
  border-color: #efebe4;
}

.production__team-head {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding-bottom: 26px;
  border-bottom: 1px solid var(--ink);
}

.production__team-head > div > span,
.production__result-head span {
  color: var(--red);
  font-size: 0.59rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.production__team-head h3 {
  max-width: 660px;
  margin: 12px 0 0;
  font-family: var(--serif);
  font-size: clamp(2.15rem, 3.5vw, 4.15rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.production__team-head > b {
  color: rgba(18, 18, 18, 0.1);
  font-family: var(--serif);
  font-size: clamp(3rem, 5vw, 5.6rem);
  font-weight: 400;
  letter-spacing: -0.06em;
  line-height: 0.8;
}

.production__credits {
  display: grid;
  margin-top: 22px;
}

.production__credits > div {
  display: grid;
  grid-template-columns: 36px minmax(155px, 0.75fr) minmax(190px, 1.25fr);
  align-items: center;
  min-height: 72px;
  gap: 12px;
  border-bottom: 1px solid var(--line);
}

.production__credits > div > span {
  color: var(--red);
  font-size: 0.58rem;
  font-weight: 900;
}

.production__credits b {
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 400;
}

.production__credits p {
  margin: 0;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.5;
}

.production__team-note {
  margin: auto 0 0;
  padding-top: 20px;
  color: var(--red);
  font-size: 0.61rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  line-height: 1.55;
  text-transform: uppercase;
}

.production__result {
  padding-top: 74px;
  background: var(--white);
}

.production__result-head {
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
}

.production__result-list {
  display: grid;
  height: 100%;
  grid-template-rows: repeat(4, 1fr);
}

.production__result-list > div {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 24px;
  border-bottom: 1px solid var(--ink);
}

.production__result-list > div:last-child {
  border-bottom: 0;
}

.production__result-list span {
  color: var(--red);
  font-size: 0.55rem;
  font-weight: 900;
}

.production__result-list strong {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.7vw, 4rem);
  font-weight: 400;
  letter-spacing: -0.05em;
  line-height: 0.9;
}

.production__result-money {
  color: #fff;
  background: var(--red);
}

.production__result-money span {
  color: rgba(255, 255, 255, 0.66);
}

.production__statement {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 0.8fr 1fr 1.25fr;
  min-height: 150px;
  align-items: center;
  padding: 28px 35px;
  gap: 35px;
  border-top: 1px solid var(--ink);
}

.production__statement p,
.production__statement strong {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(1.7rem, 3vw, 3.2rem);
  font-weight: 400;
  letter-spacing: -0.045em;
  line-height: 0.95;
}

.production__statement strong {
  color: var(--red);
  font-style: italic;
}

.production__statement > span {
  max-width: 470px;
  margin-left: auto;
  color: var(--muted);
  font-size: 0.74rem;
  line-height: 1.65;
}

.income {
  background: var(--paper);
}

.income__intro {
  display: grid;
  grid-template-columns: minmax(120px, 0.3fr) minmax(0, 1.7fr);
  gap: clamp(40px, 7vw, 110px);
}

.income__intro > div:last-child > p:last-child {
  max-width: 620px;
  margin: 39px 0 0;
  color: var(--muted);
  line-height: 1.7;
}

.income__steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: 530px;
  align-items: end;
  margin-top: 76px;
  border-bottom: 1px solid var(--ink);
}

.income-step {
  display: flex;
  justify-content: flex-end;
  flex-direction: column;
  padding: 28px;
  border: 1px solid var(--ink);
  border-bottom: 0;
  border-left: 0;
  background: var(--white);
}

.income-step:first-child {
  border-left: 1px solid var(--ink);
}

.income-step--one {
  min-height: 250px;
}

.income-step--two {
  min-height: 330px;
}

.income-step--three {
  min-height: 420px;
}

.income-step--four {
  min-height: 510px;
  color: #fff;
  background: var(--red);
}

.income-step span {
  margin-bottom: auto;
  color: var(--red);
  font-size: 0.64rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.income-step--four span {
  color: rgba(255, 255, 255, 0.72);
}

.income-step strong {
  font-family: var(--serif);
  font-size: clamp(2.5rem, 5vw, 5.5rem);
  font-weight: 400;
  line-height: 1;
}

.income-step p {
  max-width: 190px;
  margin: 17px 0 0;
  color: var(--muted);
  font-size: 0.75rem;
}

.income-step--four p {
  color: rgba(255, 255, 255, 0.78);
}

.income__fineprint {
  max-width: 620px;
  margin: 24px 0 0 auto;
  color: var(--muted);
  font-size: 0.68rem;
  line-height: 1.55;
  text-align: right;
}

.online {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(55px, 9vw, 140px);
  background: var(--white);
}

.online__photo {
  position: relative;
  height: min(62vw, 720px);
  min-height: 520px;
}

.online__photo::after {
  position: absolute;
  z-index: 1;
  right: -28px;
  bottom: -28px;
  width: 45%;
  height: 42%;
  content: "";
  border: 2px solid var(--red);
}

.online__photo img {
  position: relative;
  z-index: 2;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  filter: saturate(0.86);
}

.online__photo span {
  position: absolute;
  z-index: 3;
  top: 0;
  right: -1px;
  padding: 12px 18px;
  color: #fff;
  background: var(--red);
  font-size: 0.67rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.online h2 {
  font-size: clamp(3.3rem, 6.4vw, 7rem);
}

.online__copy > p:not(.kicker) {
  max-width: 650px;
  margin: 40px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.online__marks {
  display: flex;
  flex-wrap: wrap;
  margin-top: 36px;
  gap: 9px;
}

.online__marks span {
  padding: 9px 13px;
  border: 1px solid var(--ink);
  font-size: 0.65rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: clamp(60px, 9vw, 140px);
  background: var(--paper);
}

.faq h2 {
  font-size: clamp(3.2rem, 5.6vw, 6rem);
}

.faq__list {
  border-top: 1px solid var(--ink);
}

.faq-item {
  border-bottom: 1px solid var(--ink);
}

.faq-item button {
  display: flex;
  width: 100%;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  cursor: pointer;
  font-weight: 800;
  text-align: left;
}

.faq-item button b {
  color: var(--red);
  font-family: var(--serif);
  font-size: 2rem;
  font-weight: 400;
}

.faq-answer {
  max-width: 720px;
  padding: 0 60px 28px 0;
  color: var(--muted);
}

.faq-answer p {
  margin: 0;
  line-height: 1.65;
}

.faq-answer[hidden] {
  display: none;
}

.apply {
  position: relative;
  min-height: 760px;
  overflow: hidden;
}

.apply > img {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: 50% 36%;
}

.apply__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(246, 243, 237, 0.98) 0%, rgba(246, 243, 237, 0.92) 42%, rgba(246, 243, 237, 0.04) 76%);
}

.apply__content {
  position: relative;
  z-index: 2;
  width: min(850px, 64%);
  padding: clamp(80px, 9vw, 140px) var(--pad);
}

.apply h2 {
  font-size: clamp(4rem, 7.6vw, 8.2rem);
}

.apply__content > p:not(.kicker) {
  max-width: 510px;
  margin: 32px 0;
  color: var(--muted);
}

.footer {
  display: grid;
  grid-template-columns: 1fr auto auto;
  min-height: 180px;
  align-items: center;
  padding: 38px var(--pad);
  gap: 45px;
  color: #fff;
  background: var(--ink);
}

.footer > p {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer__contacts {
  display: flex;
  gap: 9px;
}

.footer__contacts span {
  padding: 8px 11px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  font-size: 0.67rem;
}

.footer small {
  grid-column: 2 / 4;
  margin-top: -50px;
  color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 1100px) {
  .desktop-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero__copy {
    min-height: 670px;
  }

  .hero__visual {
    min-height: 670px;
  }

  .hero__stamp {
    left: -10px;
    width: 118px;
    min-height: 118px;
  }

  .hero__detail {
    width: 170px;
  }

  .roles__stage {
    grid-template-columns: minmax(230px, 0.4fr) 48px minmax(0, 1fr);
  }

  .model-input {
    padding: 22px;
  }

  .team-engine {
    padding: 34px;
  }

  .team-engine__stats > div {
    padding: 12px;
  }

  .team-engine__stats strong {
    font-size: 1.8rem;
  }

  .value-node {
    width: 106px;
  }

  .value-node--strategy { left: 20px; }
  .value-node--smm { right: 20px; }
  .value-node--ads { right: 15px; }
  .value-node--sales { right: 36px; }
  .value-node--brands { left: 36px; }

  .production {
    grid-template-columns: minmax(220px, 0.64fr) minmax(390px, 1.25fr) minmax(190px, 0.58fr);
  }

  .production__team {
    padding: 34px 28px;
  }

  .production__credits > div {
    grid-template-columns: 32px 1fr;
    min-height: 88px;
  }

  .production__credits p {
    grid-column: 2;
    margin-top: -8px;
  }

  .production__result-list > div {
    padding: 18px;
  }

  .production__result-list strong {
    font-size: clamp(1.8rem, 3.2vw, 3.1rem);
  }

  .income-step {
    padding: 22px;
  }
}

@media (max-width: 820px) {
  .site-header {
    display: flex;
    min-height: 66px;
  }

  .wordmark {
    margin-right: auto;
  }

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

  .menu-toggle {
    display: grid;
    width: 42px;
    height: 42px;
    place-content: center;
    gap: 7px;
    background: transparent;
    cursor: pointer;
  }

  .menu-toggle span {
    width: 22px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(4px) rotate(45deg);
  }

  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }

  .mobile-nav {
    position: absolute;
    inset: 66px 0 auto;
    flex-direction: column;
    padding: 12px var(--pad) 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(246, 243, 237, 0.98);
  }

  .mobile-nav.is-open {
    display: flex;
  }

  .mobile-nav a {
    padding: 13px 0;
    border-bottom: 1px solid var(--line);
    font-size: 0.79rem;
    font-weight: 800;
    text-transform: uppercase;
  }

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

  .hero__copy {
    min-height: auto;
    padding-block: 68px 62px;
    border-right: 0;
  }

  .hero h1 {
    font-size: clamp(4rem, 17vw, 7rem);
  }

  .hero__visual {
    min-height: 680px;
  }

  .manifesto,
  .faces__heading,
  .roles__heading,
  .income__intro,
  .faq {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .manifesto__body {
    gap: 28px;
  }

  .faces__grid {
    grid-template-columns: 1fr 1fr;
    height: auto;
    min-height: 0;
  }

  .face-card,
  .face-card--portrait,
  .face-card--square,
  .face-card--landscape {
    height: 440px;
  }

  .face-card--landscape {
    grid-column: 1 / -1;
    height: 530px;
  }

  .content-note {
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .online {
    grid-template-columns: 1fr;
  }

  .roles__stage {
    grid-template-columns: 1fr;
  }

  .model-input,
  .team-engine {
    min-height: auto;
  }

  .model-input {
    min-height: 700px;
  }

  .roles__transfer {
    min-height: 82px;
    align-content: center;
    grid-template-columns: auto auto;
    gap: 12px;
  }

  .roles__transfer::before {
    inset: 50% 0 auto;
    width: auto;
    height: 1px;
    background: repeating-linear-gradient(to right, var(--red) 0 5px, transparent 5px 11px);
  }

  .roles__transfer span {
    z-index: 1;
    padding: 5px 9px;
    writing-mode: horizontal-tb;
  }

  .roles__transfer b {
    z-index: 1;
    margin-top: 0;
    transform: rotate(90deg);
  }

  .team-engine {
    min-height: 780px;
  }

  .value-map {
    height: 375px;
  }

  .production {
    grid-template-columns: 1fr;
  }

  .production__frame {
    min-height: 620px;
  }

  .production__team,
  .production__result {
    min-height: auto;
  }

  .production__frame::after,
  .production__team::after {
    top: auto;
    right: 50%;
    bottom: -23px;
    transform: translateX(50%) rotate(90deg);
  }

  .production__frame::after {
    border-color: #efebe4;
  }

  .production__team {
    padding: 52px 40px 44px;
    border: 0;
    border-top: 1px solid var(--ink);
    border-bottom: 1px solid var(--ink);
  }

  .production__team::after {
    border-color: var(--white);
  }

  .production__credits > div {
    grid-template-columns: 38px minmax(175px, 0.8fr) 1.2fr;
    min-height: 76px;
  }

  .production__credits p {
    grid-column: auto;
    margin-top: 0;
  }

  .production__result {
    padding-top: 74px;
  }

  .production__result-list {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: auto;
  }

  .production__result-list > div {
    min-height: 170px;
    border-right: 1px solid var(--ink);
  }

  .production__result-list > div:nth-child(even) {
    border-right: 0;
  }

  .production__result-list strong {
    font-size: clamp(2.4rem, 8vw, 4.2rem);
  }

  .production__statement {
    grid-template-columns: 1fr 1fr;
  }

  .production__statement > span {
    grid-column: 1 / -1;
    max-width: none;
    margin-left: 0;
  }

  .income__steps {
    grid-template-columns: 1fr 1fr;
    min-height: 0;
    align-items: stretch;
  }

  .income-step,
  .income-step--one,
  .income-step--two,
  .income-step--three,
  .income-step--four {
    min-height: 280px;
    border: 1px solid var(--ink);
  }

  .online__photo {
    height: 650px;
  }

  .faq__heading {
    margin-bottom: 40px;
  }

  .apply__content {
    width: 78%;
  }

  .footer {
    grid-template-columns: 1fr auto;
  }

  .footer > p {
    display: none;
  }

  .footer small {
    grid-column: 1 / -1;
    margin-top: -20px;
  }
}

@media (max-width: 560px) {
  .section {
    padding-block: 74px;
  }

  .hero h1 {
    font-size: clamp(3.55rem, 18vw, 5.2rem);
  }

  .hero__actions {
    align-items: stretch;
    flex-direction: column;
  }

  .underlink {
    justify-content: center;
  }

  .hero__facts {
    flex-wrap: wrap;
    row-gap: 10px;
  }

  .hero__facts li {
    padding-inline: 10px;
  }

  .hero__visual {
    min-height: 560px;
  }

  .hero__detail {
    right: 16px;
    bottom: 24px;
    width: 130px;
  }

  .hero__detail img {
    height: 170px;
  }

  .hero__stamp {
    top: 25px;
    width: 95px;
    min-height: 95px;
  }

  .hero__stamp b {
    font-size: 2.8rem;
  }

  .manifesto h2,
  .roles h2,
  .income h2,
  .online h2,
  .faq h2,
  .apply h2 {
    font-size: clamp(3.1rem, 15vw, 4.7rem);
  }

  .manifesto__body {
    grid-template-columns: 1fr;
  }

  .faces__grid {
    display: block;
  }

  .face-card,
  .face-card--portrait,
  .face-card--square,
  .face-card--landscape {
    height: 470px;
    margin-bottom: 6px;
    border-right: 0;
  }

  .roles__stage {
    margin-inline: 14px;
  }

  .model-input,
  .team-engine {
    padding: 22px;
  }

  .model-input {
    min-height: 0;
  }

  .model-input__visual {
    min-height: 340px;
  }

  .team-engine {
    min-height: 0;
  }

  .team-engine__head h3 {
    font-size: clamp(2.5rem, 11vw, 3.7rem);
  }

  .team-engine__stats {
    grid-template-columns: 1fr;
  }

  .team-engine__stats > div {
    min-height: 68px;
  }

  .value-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    height: auto;
    padding: 10px;
    gap: 8px;
  }

  .value-map::before,
  .value-map::after,
  .value-map__lines {
    display: none;
  }

  .value-core,
  .value-node,
  .value-node--strategy,
  .value-node--smm,
  .value-node--ads,
  .value-node--sales,
  .value-node--brands {
    position: static;
    width: auto;
    height: auto;
    min-height: 88px;
    transform: none;
  }

  .value-core {
    grid-column: 1 / -1;
    min-height: 150px;
    border-radius: 0;
  }

  .value-core strong {
    font-size: 2.8rem;
  }

  .value-node--brands {
    grid-column: 1 / -1;
  }

  .growth-chain {
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    border: 0;
    background: rgba(255, 255, 255, 0.26);
  }

  .growth-chain span {
    min-height: 58px;
    background: rgba(255, 255, 255, 0.1);
  }

  .growth-chain i {
    display: none;
  }

  .growth-chain__result {
    background: var(--white) !important;
  }

  .team-engine__caption {
    text-align: left;
  }

  .production {
    margin-inline: 14px;
  }

  .production__frame {
    min-height: 530px;
  }

  .production__frame figcaption {
    flex-wrap: wrap;
  }

  .production__team {
    padding: 48px 22px 38px;
  }

  .production__team-head > b {
    display: none;
  }

  .production__team-head h3 {
    font-size: clamp(2.35rem, 11vw, 3.6rem);
  }

  .production__credits > div {
    grid-template-columns: 31px 1fr;
    min-height: 95px;
    padding-block: 12px;
  }

  .production__credits p {
    grid-column: 2;
    margin-top: -4px;
  }

  .production__result-list > div {
    min-height: 145px;
    padding: 16px;
  }

  .production__result-list strong {
    font-size: clamp(2rem, 9vw, 3.2rem);
  }

  .production__statement {
    grid-template-columns: 1fr;
    padding: 28px 22px;
    gap: 18px;
  }

  .production__statement > span {
    grid-column: 1;
  }

  .income__steps {
    grid-template-columns: 1fr;
  }

  .income-step,
  .income-step--one,
  .income-step--two,
  .income-step--three,
  .income-step--four {
    min-height: 235px;
  }

  .income__fineprint {
    text-align: left;
  }

  .online__photo {
    height: 520px;
    min-height: 0;
  }

  .online__photo::after {
    right: -10px;
    bottom: -15px;
  }

  .apply {
    min-height: 690px;
  }

  .apply__overlay {
    background: linear-gradient(90deg, rgba(246, 243, 237, 0.98) 0%, rgba(246, 243, 237, 0.88) 70%, rgba(246, 243, 237, 0.32) 100%);
  }

  .apply__content {
    width: 100%;
  }

  .footer {
    grid-template-columns: 1fr;
  }

  .footer__contacts {
    flex-wrap: wrap;
  }

  .footer small {
    margin-top: 0;
  }
}

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

  .running-line__track {
    animation: none;
  }

  .value-map::after {
    animation: none;
  }

  .button,
  .face-card img {
    transition: none;
  }
}
