@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;
  --red: #e93f3f;
  --white: #ededed;
  --paper: #f7f7f4;
  --line: rgba(31, 31, 31, 0.1);
  --muted: rgba(31, 31, 31, 0.56);
  --display: "Unbounded", ui-sans-serif, system-ui, sans-serif;
  --body: "Noto Sans", ui-sans-serif, system-ui, sans-serif;
  --radius: 8px;
  --container: min(1720px, calc(100vw - 96px));
}

* {
  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;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

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

mark {
  display: inline-block;
  padding: 0 0.08em;
  background: var(--red);
  color: #fff;
}

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

.mono {
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 650;
  line-height: 1.25;
  text-transform: uppercase;
}

.loader {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  background: #fff;
  transition: opacity 0.55s ease, visibility 0.55s ease;
}

.loader img {
  width: clamp(96px, 12vw, 180px);
  filter: drop-shadow(0 18px 34px rgba(31, 31, 31, 0.1));
  animation: loaderPulse 1.8s ease-in-out infinite;
}

.loader span {
  position: fixed;
  left: 32px;
  bottom: 28px;
  font-family: var(--display);
  font-size: clamp(3rem, 8vw, 9rem);
  font-weight: 900;
  color: var(--red);
  animation: loaderCountIn .6s cubic-bezier(.16,1,.3,1) both;
}

body.is-ready .loader {
  opacity: 0;
  visibility: hidden;
}

@keyframes loaderPulse {
  0%, 100% { transform: scale(.92); filter: drop-shadow(0 18px 34px rgba(31, 31, 31, .08)); }
  50% { transform: scale(1); filter: drop-shadow(0 24px 42px rgba(233, 63, 63, .14)); }
}

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

.progress {
  position: fixed;
  z-index: 190;
  top: 0;
  left: 0;
  width: 0;
  height: 3px;
  background: var(--red);
}

.site-header {
  position: fixed;
  z-index: 120;
  top: 24px;
  left: 50%;
  width: var(--container);
  min-height: 70px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 220px 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 20px 70px rgba(31, 31, 31, 0.08);
  backdrop-filter: none;
}

.brand img {
  width: 150px;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 52px);
  font-family: var(--display);
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.desktop-nav a,
.header-links a {
  transition: color 0.3s ease, opacity 0.3s ease;
}

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

.header-links {
  display: flex;
  align-items: center;
  gap: 16px;
  font-family: var(--display);
  font-size: 0.74rem;
  font-weight: 750;
}

.telegram {
  display: inline-flex;
  align-items: center;
  gap: 7px;
}

.telegram svg {
  width: 16px;
  fill: #229ed9;
}

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

.section-pad {
  padding: clamp(92px, 9vw, 168px) max(24px, calc((100vw - var(--container)) / 2));
}

.grid-bg,
.hero::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.grid-bg {
  background-image:
    linear-gradient(rgba(31, 31, 31, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 31, 31, 0.035) 1px, transparent 1px);
  background-size: 64px 64px;
}

.hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
  background: #fff;
}

.hero::before {
  content: "";
  background: radial-gradient(circle at 62% 52%, rgba(233, 63, 63, 0.055), transparent 32%);
}

.hero__portrait {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

.loader,
.progress {
  display: none !important;
}

.hero__portrait {
  position: absolute;
  right: max(48px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  z-index: 2;
  width: min(760px, 42vw);
  opacity: 0;
  transform: translateY(40px);
}

body.is-ready .hero__portrait {
  animation: rise 1.1s cubic-bezier(0.16, 1, 0.3, 1) 0.18s forwards;
}

.hero__portrait img {
  width: 100%;
  filter: saturate(0.92) contrast(1.02);
}

.hero__coords {
  position: absolute;
  left: clamp(18px, calc((100vw - var(--container)) / 2 - 108px), 76px);
  top: 19vh;
  z-index: 4;
  display: grid;
  gap: 18vh;
  color: rgba(31, 31, 31, 0.34);
}

.hero__coords span {
  position: relative;
  padding-left: 62px;
}

.hero__coords span::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 38px;
  height: 1px;
  background: currentColor;
}

.hero__intro {
  position: absolute;
  z-index: 5;
  left: max(24px, calc((100vw - var(--container)) / 2 + 84px));
  top: 18vh;
  max-width: 520px;
}

.hero__intro p {
  margin: 0 0 10px;
  font-family: var(--display);
  font-size: clamp(1.15rem, 1.8vw, 2rem);
  font-weight: 900;
  line-height: 1.08;
  text-transform: none;
}

.hero__intro span,
.hero__time,
.hero__metric span {
  color: rgba(31, 31, 31, 0.46);
}

.hero__title {
  position: absolute;
  z-index: 5;
  left: max(24px, calc((100vw - var(--container)) / 2 + 84px));
  top: 38vh;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.6rem, 8vw, 11.5rem);
  font-weight: 900;
  line-height: 0.83;
  letter-spacing: 0;
  text-transform: none;
}

.hero__title span {
  display: block;
}

.hero__title span:first-child {
  color: var(--red);
}

.hero__copy {
  position: absolute;
  z-index: 5;
  left: max(24px, calc((100vw - var(--container)) / 2 + 84px));
  bottom: 8vh;
  max-width: 570px;
}

.hero__copy p {
  margin: 0 0 22px;
  max-width: 520px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: #606060;
}

.hero__time {
  display: grid;
  gap: 2px;
  margin-bottom: 28px;
}

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

.button {
  display: inline-flex;
  min-height: 56px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border-radius: var(--radius);
  font-family: var(--body);
  font-weight: 800;
  text-transform: uppercase;
  transition: transform 0.32s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.32s ease;
}

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

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

.button--light {
  border: 1px solid rgba(31, 31, 31, 0.12);
  background: #fff;
}

.hero__metric {
  position: absolute;
  z-index: 5;
  right: max(42px, calc((100vw - var(--container)) / 2 + 126px));
  bottom: 13vh;
  text-align: center;
}

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

.hero__metric span {
  font-family: var(--display);
  font-size: 0.88rem;
  font-weight: 800;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  filter: none;
  transform: translate3d(0, 34px, 0) scale(0.985);
  transition:
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    filter 1.15s cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms),
    transform 1.15s cubic-bezier(0.16, 1, 0.3, 1) var(--reveal-delay, 0ms);
}

.reveal.is-visible {
  opacity: 1;
  filter: none;
  transform: translate3d(0, 0, 0) scale(1);
}

/* Figma/Builder import version: render the complete page immediately. */
.loader,
.progress {
  display: none !important;
}

.reveal,
.reveal.is-visible {
  opacity: 1 !important;
  filter: none !important;
  transform: none !important;
  transition: none !important;
}

*,
*::before,
*::after {
  backdrop-filter: none !important;
  -webkit-backdrop-filter: none !important;
}

.performance::before,
.showreel__stage > img,
.loader img,
.loader span {
  animation: none !important;
  filter: none !important;
}

@keyframes rise {
  to { opacity: 1; transform: translateY(0); }
}

.manifesto {
  position: relative;
  min-height: 128svh;
  overflow: hidden;
  background: #111;
  color: #fff;
}

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

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

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

.manifesto__sticky {
  position: sticky;
  top: 0;
  z-index: 1;
  height: 100svh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  text-align: center;
}

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

.manifesto-line {
  display: block;
  width: min(1040px, 94vw);
  line-height: 0.94;
  opacity: 0;
  white-space: nowrap;
  transition: opacity 0.95s ease-out;
  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;
}

.manifesto .mono {
  position: absolute;
  top: 11vh;
  left: 50%;
  color: rgba(237, 237, 237, 0.48);
  transform: translateX(-50%);
}

.marquee {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 16vh;
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.marquee div {
  display: flex;
  width: max-content;
  gap: 80px;
  animation: marquee 24s linear infinite;
}

.marquee span {
  font-size: clamp(2.5rem, 5vw, 6.8rem);
  font-weight: 400;
  white-space: nowrap;
}

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

.section-label {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 28px;
  margin-bottom: 48px;
}

.section-title,
.work__intro h2,
.performance h2,
.contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 8rem);
  font-weight: 900;
  line-height: 0.94;
  max-width: 1200px;
}

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

.work__intro {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(280px, 0.46fr);
  gap: clamp(36px, 6vw, 96px);
  align-items: end;
}

.work__intro p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.5;
}

.case-panels {
  display: grid;
  gap: clamp(24px, 4vw, 54px);
  margin-top: clamp(64px, 8vw, 120px);
}

.case-panel {
  position: relative;
  min-height: min(820px, 82svh);
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  color: #fff;
  isolation: isolate;
}

.case-panel img,
.case-panel__shade {
  position: absolute;
  inset: 0;
}

.case-panel img {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

.case-panel:hover img {
  transform: scale(1.045);
}

.case-panel__shade {
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(17, 17, 17, 0.26), rgba(17, 17, 17, 0.72)),
    radial-gradient(circle at 70% 26%, rgba(233, 63, 63, 0.22), transparent 34%);
}

.case-panel--light {
  color: var(--black);
  background: #ededed;
}

.case-panel--light .case-panel__shade {
  background: linear-gradient(180deg, rgba(237, 237, 237, 0.1), rgba(237, 237, 237, 0.7));
}

.case-panel--red .case-panel__shade {
  background:
    linear-gradient(180deg, rgba(233, 63, 63, 0.16), rgba(17, 17, 17, 0.84)),
    radial-gradient(circle at 55% 50%, rgba(233, 63, 63, 0.46), transparent 34%);
}

.case-panel__logo,
.case-panel__year,
.case-panel__stack,
.case-panel__cta {
  position: absolute;
  z-index: 2;
  font-family: var(--display);
  font-weight: 750;
  text-transform: uppercase;
}

.case-panel__logo {
  top: 48px;
  left: 48px;
  font-size: 0.86rem;
}

.case-panel__year {
  right: 48px;
  bottom: 48px;
  font-size: 0.9rem;
}

.case-panel__center {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-content: center;
  justify-items: center;
  padding: 48px;
  text-align: center;
}

.case-panel__center h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4rem, 9vw, 13rem);
  font-weight: 900;
  line-height: 0.86;
  text-transform: uppercase;
}

.case-panel__center p {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(0.88rem, 1.2vw, 1.1rem);
  font-weight: 600;
  text-transform: uppercase;
}

.case-panel__stack {
  left: 48px;
  bottom: 48px;
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.78rem;
}

.case-panel--light .case-panel__stack {
  color: rgba(31, 31, 31, 0.56);
}

.case-panel__cta {
  left: 50%;
  top: 50%;
  width: clamp(120px, 11vw, 184px);
  height: clamp(120px, 11vw, 184px);
  display: grid;
  place-items: center;
  padding: 24px;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  font-size: clamp(0.75rem, 0.9vw, 0.92rem);
  line-height: 1.2;
  text-align: center;
  transform: translate3d(-50%, -50%, 0);
  transition: left 0.34s ease-out, top 0.34s ease-out, opacity 0.35s ease, box-shadow 0.35s ease;
}

.case-panel__cta:hover {
  opacity: .94;
  box-shadow: 0 16px 38px rgba(233, 63, 63, 0.22);
}

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

.project-mini-grid article {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.project-mini-grid img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.project-mini-grid h3 {
  margin: 28px 28px 10px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.2vw, 3.2rem);
  line-height: 0.95;
  text-transform: uppercase;
}

.project-mini-grid p {
  margin: 0 28px 30px;
  color: var(--muted);
}

.performance {
  position: relative;
  background: #111;
  color: #fff;
}

.performance::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background:
    radial-gradient(circle at 78% 15%, var(--red), transparent 28%),
    linear-gradient(90deg, transparent 0 49%, rgba(237, 237, 237, 0.16) 50%, transparent 51%);
}

.performance > * {
  position: relative;
}

.performance__head {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 48px;
  align-items: end;
}

.performance p,
.contact p {
  margin: 0;
  max-width: 560px;
  color: rgba(237, 237, 237, 0.68);
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.5;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 80px;
  border-top: 1px solid rgba(237, 237, 237, 0.16);
}

.metric {
  min-height: 330px;
  padding: 34px 24px;
  border-right: 1px solid rgba(237, 237, 237, 0.16);
}

.metric strong {
  display: block;
  font-family: var(--display);
  font-size: clamp(4rem, 8vw, 10rem);
  color: var(--red);
  line-height: 0.9;
}

.metric span {
  display: block;
  margin-top: 18px;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

.metric small {
  display: block;
  margin-top: 70px;
  color: rgba(237, 237, 237, 0.42);
}

.performance__logos {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
  justify-content: space-between;
  margin-top: clamp(44px, 6vw, 84px);
  padding-top: 34px;
  border-top: 1px solid rgba(237, 237, 237, 0.16);
}

.performance__logos span {
  color: rgba(237, 237, 237, 0.62);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 2.5rem);
  font-weight: 800;
  text-transform: uppercase;
}

.studio {
  background: #fff;
  overflow: hidden;
}

.service-hero {
  margin: 0;
  color: rgba(31, 31, 31, 0.12);
  font-family: var(--display);
  font-size: clamp(6rem, 19vw, 24rem);
  font-weight: 900;
  line-height: 0.78;
  text-transform: lowercase;
}

.service-lead {
  max-width: 740px;
  margin: -2vw 0 clamp(64px, 9vw, 140px) auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.45vw, 1.45rem);
  line-height: 1.5;
}

.service-chapters {
  display: grid;
  gap: clamp(30px, 5vw, 70px);
}

.service-chapter {
  display: grid;
  grid-template-columns: minmax(260px, 0.48fr) minmax(460px, 1fr) minmax(320px, 0.72fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: center;
  padding-top: clamp(30px, 4vw, 52px);
  border-top: 1px solid var(--line);
}

.service-chapter__meta {
  grid-column: 1 / -1;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

.service-chapter h3 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 7vw, 10.5rem);
  font-weight: 800;
  line-height: 0.9;
  letter-spacing: 0;
}

.service-chapter img {
  width: 100%;
  aspect-ratio: 1.65;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: 0 18px 80px rgba(31, 31, 31, 0.08);
}

.service-chapter ul {
  display: grid;
  gap: 18px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: clamp(1rem, 1.2vw, 1.25rem);
}

.service-chapter li::before {
  content: "+";
  margin-right: 12px;
  color: var(--red);
  font-weight: 800;
}

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

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

.service {
  width: 100%;
  display: grid;
  grid-template-columns: 110px minmax(280px, 0.9fr) 1fr;
  gap: 36px;
  align-items: center;
  min-height: 128px;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.service strong {
  font-family: var(--display);
  font-size: clamp(1.8rem, 3vw, 3.8rem);
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.service em {
  max-width: 620px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.45;
}

.service.is-open {
  padding-inline: 34px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
}

.service.is-open em,
.service.is-open span {
  color: rgba(255, 255, 255, 0.82);
}

.process {
  background: #fff;
}

.process__grid,
.faq__grid,
.journal__grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.72fr) 1fr;
  gap: clamp(44px, 6vw, 104px);
  align-items: start;
}

.process__intro h2,
.why h2,
.beyond h2,
.team h2,
.faq h2,
.journal h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.6vw, 7.6rem);
  font-weight: 900;
  line-height: 0.94;
  text-transform: uppercase;
}

.process__intro p,
.why__top p,
.beyond__panel p,
.team__head p,
.faq__intro p,
.journal__intro p,
.final-cta p {
  margin: 28px 0 0;
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.35rem);
  line-height: 1.52;
}

.process__steps {
  display: grid;
  gap: 14px;
}

.process-step {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.42s cubic-bezier(0.16, 1, 0.3, 1), background 0.42s ease;
}

.process-step:hover {
  transform: translateY(-6px);
  background: #fff;
}

.process-step h3,
.support-card h3,
.article-card h3 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.2vw, 3.1rem);
  font-weight: 900;
  line-height: 0.98;
  text-transform: uppercase;
}

.process-step p,
.support-card p,
.article-card p {
  margin: 22px 0 0;
  color: var(--muted);
  line-height: 1.48;
}

.case-study {
  background: #111;
  color: #fff;
}

.case-study__card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 5vw, 76px);
  align-items: center;
  min-height: 720px;
  overflow: hidden;
  border-radius: var(--radius);
  background: #1a1a1a;
}

.case-study__card img {
  width: 100%;
  height: 100%;
  min-height: 720px;
  object-fit: cover;
  opacity: 0.86;
}

.case-study__card div {
  padding: clamp(30px, 5vw, 72px);
}

.case-study__card h2 {
  margin: 22px 0;
  font-family: var(--display);
  font-size: clamp(3rem, 5.5vw, 8rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.case-study__card p {
  max-width: 540px;
  margin: 0 0 32px;
  color: rgba(237, 237, 237, 0.72);
  line-height: 1.55;
}

.why {
  background: #ededed;
}

.why__top {
  display: grid;
  grid-template-columns: 1fr 0.62fr;
  gap: 48px;
  align-items: end;
}

.why-dashboard {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  margin-top: clamp(64px, 9vw, 132px);
}

.dash-card {
  min-height: 360px;
  display: grid;
  align-content: space-between;
  padding: 34px;
  border: 1px solid rgba(31, 31, 31, 0.065);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 18px 70px rgba(31, 31, 31, 0.035);
}

.dash-card:nth-child(1),
.dash-card:nth-child(2),
.dash-card:nth-child(3) {
  grid-column: span 2;
}

.dash-card:nth-child(4) {
  grid-column: span 2;
}

.dash-card:nth-child(5) {
  grid-column: span 1;
}

.dash-card:nth-child(6) {
  grid-column: span 3;
}

.dash-card h3,
.dash-card p {
  margin: 0;
}

.dash-card h3 {
  font-family: var(--body);
  font-size: clamp(1.6rem, 2.2vw, 3.3rem);
  font-weight: 500;
  line-height: 1.08;
}

.dash-card p {
  color: var(--muted);
  line-height: 1.45;
}

.dash-card--words p {
  color: var(--black);
  font-family: var(--body);
  font-size: clamp(1.8rem, 2.7vw, 4rem);
  line-height: 1.04;
}

.dash-card--words strong {
  color: var(--red);
  font-weight: 700;
}

.dash-card--words span,
.dash-card > span,
.dash-card small {
  color: var(--muted);
}

.dash-card--rate strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.8vw, 7rem);
  line-height: 0.9;
}

.dash-card--image img {
  width: 100%;
  height: 180px;
  object-fit: cover;
  border-radius: var(--radius);
}

.dash-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.dash-card li::before {
  content: "✓";
  margin-right: 10px;
  color: rgba(31, 31, 31, 0.3);
}

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

.why-stat,
.support-card,
.review-card,
.article-card {
  min-height: 230px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #fff;
}

.why-stat strong {
  display: block;
  font-family: var(--display);
  color: var(--red);
  font-size: 2.4rem;
}

.why-stat span {
  display: block;
  margin-top: 50px;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.2;
  text-transform: uppercase;
}

.pricing {
  background: #fff;
}

.pricing__head {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(300px, 0.48fr);
  gap: clamp(34px, 6vw, 92px);
  align-items: end;
}

.pricing__head h2 {
  margin: 0;
  color: rgba(31, 31, 31, 0.55);
  font-family: var(--body);
  font-size: clamp(3rem, 6vw, 8.2rem);
  font-weight: 500;
  line-height: 0.98;
}

.pricing__head p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.3rem);
  line-height: 1.5;
}

.plan-list {
  display: grid;
  gap: 12px;
  margin-top: clamp(64px, 8vw, 112px);
}

.plan-row {
  display: grid;
  grid-template-columns: 0.7fr 1fr 1fr auto;
  gap: 28px;
  align-items: center;
  min-height: 122px;
  padding: 28px 34px;
  border: 1px solid rgba(31, 31, 31, 0.07);
  border-radius: var(--radius);
  background: #fff;
}

.plan-row.is-active {
  background: #ededed;
}

.plan-row span {
  display: block;
  color: var(--red);
  font-family: var(--body);
  font-size: clamp(1.5rem, 2.2vw, 3rem);
  font-weight: 500;
}

.plan-row small {
  color: var(--muted);
  text-transform: uppercase;
}

.plan-row p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.plan-row ul {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.plan-row li {
  padding: 7px 10px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.85rem;
}

.plan-row a {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: var(--red);
  color: #fff;
}

.plan-row a::after {
  content: "→";
}

.pricing-expert {
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  margin-top: clamp(48px, 6vw, 90px);
}

.pricing-expert h3 {
  margin: 0;
  color: rgba(31, 31, 31, 0.56);
  font-family: var(--body);
  font-size: clamp(2rem, 3.4vw, 4.8rem);
  font-weight: 500;
}

.pricing-expert p {
  margin: 0;
  color: var(--muted);
  line-height: 1.45;
}

.startup-offer {
  background: #fff;
}

.startup-offer__inner {
  display: grid;
  grid-template-columns: 1fr 0.8fr auto;
  gap: clamp(28px, 5vw, 72px);
  align-items: end;
  padding: clamp(34px, 5vw, 72px);
  border-radius: var(--radius);
  background: #1f1f1f;
  color: #fff;
}

.startup-offer h2 {
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(3rem, 6vw, 8.4rem);
  font-weight: 900;
  line-height: 0.92;
  text-transform: uppercase;
}

.startup-offer p {
  margin: 0;
  color: rgba(237, 237, 237, 0.72);
  line-height: 1.55;
}

.beyond {
  background: #111;
  color: #fff;
}

.beyond__panel {
  max-width: 1180px;
}

.beyond__panel p,
.team__head p {
  color: rgba(237, 237, 237, 0.68);
}

.support-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 72px;
}

.support-card {
  background: #1b1b1b;
  border-color: rgba(237, 237, 237, 0.12);
}

.support-card p {
  color: rgba(237, 237, 237, 0.62);
}

.team {
  overflow: hidden;
  background: var(--paper);
}

.team__head {
  max-width: 1120px;
}

.team__head p {
  color: var(--muted);
}

.team-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(360px, 1fr));
  gap: 18px;
  margin-top: 72px;
  transition: transform 0.18s linear;
}

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

.team-card img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center;
}

.team-card h3 {
  margin: 26px 26px 8px;
  font-family: var(--display);
  font-size: clamp(1.6rem, 2.6vw, 3.8rem);
  font-weight: 900;
  line-height: 0.95;
}

.team-card span {
  display: block;
  margin: 0 26px 30px;
  color: var(--muted);
}

.faq {
  background: #fff;
}

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

.faq-item {
  width: 100%;
  display: grid;
  gap: 0;
  padding: 28px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: transparent;
  color: var(--black);
  text-align: left;
  cursor: pointer;
}

.faq-item strong {
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.8vw, 2.4rem);
  text-transform: uppercase;
}

.faq-item span {
  max-height: 0;
  overflow: hidden;
  color: var(--muted);
  line-height: 1.48;
  transition: max-height 0.42s cubic-bezier(0.16, 1, 0.3, 1), margin-top 0.42s ease;
}

.faq-item.is-open span {
  max-height: 160px;
  margin-top: 18px;
}

.testimonials {
  background: #ededed;
}

.review-spotlight {
  display: grid;
  grid-template-columns: minmax(360px, 1fr) minmax(420px, 1fr);
  gap: 28px;
}

.review-intro,
.review-feature {
  min-height: 500px;
  margin: 0;
  padding: clamp(34px, 5vw, 70px);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.64);
}

.review-intro h2 {
  margin: 0;
  font-family: var(--body);
  font-size: clamp(2.4rem, 4.5vw, 6.4rem);
  font-weight: 500;
  line-height: 1.02;
}

.review-intro p {
  margin: 30px 0 0;
  max-width: 680px;
  color: var(--muted);
  font-size: clamp(1rem, 1.25vw, 1.25rem);
  line-height: 1.5;
}

.stars {
  margin-top: clamp(70px, 12vw, 160px);
  color: var(--red);
  font-weight: 900;
}

.stars span {
  color: var(--muted);
}

.review-feature {
  display: grid;
  align-content: space-between;
  background:
    radial-gradient(circle at 72% 20%, rgba(237, 237, 237, 0.16), transparent 28%),
    #4e4e4e;
  color: #fff;
}

.review-feature strong {
  display: block;
  font-family: var(--body);
  font-size: clamp(4rem, 7vw, 10rem);
  font-weight: 500;
  line-height: 0.9;
}

.review-feature p {
  margin: 0;
  max-width: 680px;
  font-size: clamp(1.1rem, 1.5vw, 1.65rem);
  line-height: 1.38;
}

.review-feature cite {
  color: rgba(255, 255, 255, 0.7);
  font-style: normal;
}

.review-grid {
  grid-template-columns: 1.35fr 0.8fr 0.8fr;
  margin-top: 18px;
}

.review-card {
  margin: 0;
  font-size: clamp(1.25rem, 2vw, 2.6rem);
  line-height: 1.25;
}

.review-card--large {
  min-height: 380px;
  background: var(--red);
  color: #fff;
  font-family: var(--display);
  font-weight: 800;
  text-transform: uppercase;
}

.logo-cloud {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}

.logo-cloud span {
  padding: 12px 18px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #fff;
  color: var(--muted);
  font-weight: 700;
}

.journal {
  background: #fff;
}

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

.article-card {
  min-height: 360px;
}

.final-cta {
  background:
    linear-gradient(90deg, rgba(237, 237, 237, 0.9), rgba(237, 237, 237, 0.64)),
    url("assets/images/ii.webp") center / cover;
  color: #fff;
}

.final-cta__inner {
  min-height: 620px;
  display: grid;
  place-items: center;
  justify-items: center;
  padding: clamp(38px, 7vw, 92px);
  border-radius: var(--radius);
  background: rgba(237, 237, 237, 0.56);
  text-align: center;
}

.final-cta__inner h2 {
  color: rgba(31, 31, 31, 0.58);
  font-family: var(--body);
  font-weight: 500;
  text-transform: none;
}

.final-cta p {
  color: var(--muted);
}

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

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

.whispers__card {
  padding: 56px 64px;
  border-radius: var(--radius);
  background: transparent;
}

.whispers__card h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(4.4rem, 6.3vw, 7.9rem);
  font-weight: 900;
  line-height: 0.86;
}

.whispers__card h2 span {
  display: block;
}

.whispers__card h2 span:last-child {
  color: var(--red);
}

.whispers__card p {
  margin: 28px 0 0;
  max-width: 540px;
  color: var(--muted);
}

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

.platform-list a {
  display: grid;
  grid-template-columns: 0.7fr 1fr 36px;
  align-items: center;
  min-height: 96px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.platform-list a::after {
  content: "↗";
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(31, 31, 31, 0.18);
  border-radius: var(--radius);
  color: var(--black);
}

.platform-list strong {
  color: var(--black);
  font-family: var(--display);
  font-size: clamp(1.2rem, 1.7vw, 2.1rem);
  text-transform: uppercase;
}

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

.contact h2 {
  line-height: 1.05;
}

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

.contact__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 70px;
}

.contact__grid a {
  min-height: 140px;
  display: grid;
  align-content: center;
  gap: 12px;
  padding: 24px;
  border-radius: var(--radius);
  background: #1f1f1f;
}

.contact__grid strong {
  font-family: var(--display);
  font-size: clamp(1rem, 1.4vw, 1.7rem);
}

.contact__grid span {
  color: rgba(237, 237, 237, 0.62);
}

.footer {
  display: grid;
  grid-template-columns: 1fr 0.9fr 0.9fr;
  gap: clamp(34px, 6vw, 96px);
  padding: clamp(56px, 7vw, 120px) max(24px, calc((100vw - var(--container)) / 2));
  background: #ededed;
  color: rgba(31, 31, 31, 0.62);
  font-family: var(--body);
}

.footer > *,
.footer__newsletter > *,
.footer__newsletter form > * {
  min-width: 0;
}

.footer a,
.footer__contacts span,
.footer__newsletter h2 {
  overflow-wrap: anywhere;
}

.footer__brand {
  display: grid;
  align-content: space-between;
  gap: 36px;
}

.footer__brand p {
  max-width: 420px;
  margin: 0;
  color: var(--black);
  font-size: clamp(1.3rem, 2vw, 2.6rem);
  line-height: 1.12;
}

.footer__brand h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.2rem, 5vw, 8rem);
  line-height: 0.88;
}

.footer__brand h2 span {
  display: block;
}

.footer__brand h2 span:first-child {
  color: var(--red);
}

.footer__quote {
  display: grid;
  align-content: end;
  gap: 24px;
}

.footer__quote img {
  width: min(220px, 48vw);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center 24%;
  border-radius: var(--radius);
  filter: grayscale(0.12);
}

.footer__quote blockquote {
  max-width: 520px;
  margin: 0;
  color: rgba(31, 31, 31, 0.74);
  font-size: clamp(1.05rem, 1.35vw, 1.45rem);
  line-height: 1.45;
}

.footer__contacts {
  position: relative;
  display: grid;
  align-content: start;
  gap: 46px;
}

.footer__contacts > div {
  display: grid;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid rgba(31, 31, 31, 0.12);
}

.footer__contacts a {
  color: var(--red);
}

.footer__top {
  justify-self: end;
  align-self: end;
  color: var(--red);
  font-size: clamp(3rem, 5vw, 7rem);
  line-height: 1;
}

@media (hover: hover) and (pointer: fine) {
  a,
  button {
    cursor: url("assets/brand/cursor-native.png") 5 4, pointer;
  }
}

@media (max-width: 1100px) {
  :root {
    --container: calc(100vw - 36px);
  }

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

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

  .menu-toggle {
    display: grid;
    justify-self: end;
    place-items: center;
    width: 44px;
    height: 44px;
    border: 1px solid rgba(31, 31, 31, 0.12);
    border-radius: var(--radius);
    background: #fff;
  }

  .menu-toggle span {
    width: 18px;
    height: 2px;
    grid-area: 1 / 1;
    background: var(--black);
    transition: transform 0.28s ease;
  }

  .menu-toggle span:first-child {
    transform: translateY(-5px);
  }

  .menu-toggle span:last-child {
    transform: translateY(5px);
  }

  body.is-menu-open .menu-toggle span:first-child {
    transform: rotate(45deg);
  }

  body.is-menu-open .menu-toggle span:last-child {
    transform: rotate(-45deg);
  }

  .mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 100;
    display: grid;
    align-content: center;
    gap: 18px;
    padding: 110px 30px 40px;
    background: #fff;
    opacity: 0;
    pointer-events: none;
    transform: translateY(-20px);
    transition: opacity 0.34s ease, transform 0.45s cubic-bezier(0.16, 1, 0.3, 1);
  }

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

  .mobile-menu a {
    font-family: var(--display);
    font-size: clamp(2rem, 10vw, 4rem);
    font-weight: 900;
    text-transform: uppercase;
  }

  .hero {
    min-height: 940px;
  }

  .hero__portrait {
    right: 0;
    width: min(640px, 92vw);
  }

  .hero__title,
  .hero__copy,
  .hero__intro {
    left: 24px;
    right: 24px;
  }

  .hero__title {
    top: 43vh;
    font-size: clamp(3.1rem, 14vw, 5.8rem);
  }

  .hero__copy {
    bottom: 38px;
  }

  .hero__copy p {
    max-width: 92%;
    font-size: 11px;
  }

  .hero__metric {
    display: none;
  }

  .hero__coords {
    left: 4px;
    gap: 12vh;
    font-size: 0.62rem;
  }

  .manifesto {
    min-height: 128svh;
  }

  .work-stack,
  .work__intro,
  .project-mini-grid,
  .service-chapter,
  .why-dashboard,
  .metrics,
  .contact__grid,
  .pricing__grid,
  .pricing__head,
  .pricing-expert,
  .support-grid,
  .why__stats,
  .review-grid,
  .review-spotlight,
  .journal__grid,
  .process__grid,
  .faq__grid {
    grid-template-columns: 1fr;
  }

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

  .dash-card,
  .dash-card:nth-child(1),
  .dash-card:nth-child(2),
  .dash-card:nth-child(3),
  .dash-card:nth-child(4),
  .dash-card:nth-child(5),
  .dash-card:nth-child(6) {
    grid-column: auto;
  }

  .performance__head,
  .whispers__grid,
  .why__top,
  .case-study__card,
  .startup-offer__inner,
  .footer__quote {
    grid-template-columns: 1fr;
  }

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

  .case-study__card img {
    min-height: 420px;
  }

  .team-track {
    grid-template-columns: 1fr;
    transform: none !important;
  }

  .service {
    grid-template-columns: 54px 1fr;
    gap: 18px;
  }

  .service em {
    grid-column: 2;
  }

  .service-chapter {
    gap: 24px;
  }

  .service-chapter h3 {
    font-size: clamp(3.4rem, 12vw, 7rem);
  }

  .service-chapter ul {
    font-size: 1rem;
  }

  .plan-row {
    grid-template-columns: 1fr;
  }

  .case-panel {
    min-height: 620px;
  }

  .case-panel__center h3 {
    font-size: clamp(3.2rem, 13vw, 7rem);
  }

  .case-panel__cta {
    left: auto;
    right: 24px;
    top: auto;
    bottom: 24px;
    transform: none;
  }

  .case-panel__cta:hover {
    transform: scale(1.04);
  }

  .case-panel__stack,
  .case-panel__year {
    display: none;
  }
}

@media (max-width: 560px) {
  :root {
    --container: calc(100vw - 28px);
  }

  .site-header {
    top: 14px;
    min-height: 64px;
  }

  .brand img {
    width: 138px;
  }

  .section-pad {
    padding-block: 84px;
  }

  .hero {
    min-height: 860px;
  }

  .hero__intro {
    top: 144px;
  }

  .hero__intro p {
    font-size: 1.08rem;
  }

  .hero__portrait {
    top: 250px;
    bottom: auto;
  }

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

  .hero__copy {
    bottom: 24px;
  }

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

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

  .work__intro h2 {
    font-size: clamp(2.8rem, 12vw, 4.8rem);
  }

  .case-panel {
    min-height: 560px;
  }

  .case-panel__logo {
    top: 24px;
    left: 24px;
  }

  .case-panel__center {
    padding: 24px;
  }

  .case-panel__center p {
    font-size: 0.72rem;
  }

  .case-panel__cta {
    width: 116px;
    height: 116px;
    font-size: 0.68rem;
  }

  .project-mini-grid img {
    height: 260px;
  }

  .service-hero {
    font-size: clamp(5rem, 26vw, 8rem);
  }

  .service-lead {
    margin-top: 22px;
  }

  .dash-card {
    min-height: 260px;
    padding: 24px;
  }

  .pricing__head h2,
  .review-intro h2 {
    font-size: clamp(2.6rem, 13vw, 5rem);
  }

  .review-intro,
  .review-feature {
    min-height: 360px;
    padding: 26px;
  }

  .review-feature strong {
    font-size: clamp(3.8rem, 17vw, 6.2rem);
  }

  .whispers__card {
    padding: 0;
  }

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

  .process__intro h2,
  .why h2,
  .beyond h2,
  .team h2,
  .faq h2,
  .journal h2,
  .final-cta h2,
  .case-study__card h2,
  .startup-offer h2 {
    font-size: clamp(2.5rem, 12vw, 4.7rem);
  }

  .manifesto-line--listen,
  .manifesto-line--imagine {
    font-size: clamp(2.8rem, 12vw, 4.9rem);
  }

  .manifesto-line--create {
    font-size: clamp(3.3rem, 15vw, 6rem);
  }

  .startup-offer__inner {
    align-items: start;
  }

  .process-step,
  .price-card,
  .support-card,
  .why-stat,
  .review-card,
  .article-card {
    min-height: auto;
    padding: 24px;
  }

  .price-card {
    gap: 34px;
  }

  .team-card img {
    height: 340px;
  }

  .final-cta__inner {
    min-height: 480px;
  }

  .platform-list a {
    grid-template-columns: 1fr 34px;
    gap: 8px;
  }

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

  .footer__brand h2 {
    font-size: clamp(3.4rem, 15vw, 5.8rem);
  }

  .footer__top {
    justify-self: start;
  }
}

@media (max-width: 767px) {
  html,
  body {
    width: 100%;
    max-width: 100%;
  }

  .section-title,
  .work__intro h2,
  .performance h2,
  .contact h2,
  .process__intro h2,
  .why h2,
  .beyond h2,
  .team h2,
  .faq h2,
  .journal h2,
  .final-cta h2,
  .case-study__card h2,
  .startup-offer h2,
  .pricing__head h2,
  .review-intro h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 9.6vw, 4.1rem);
    line-height: 1.02;
    overflow-wrap: break-word;
    word-break: normal;
    hyphens: auto;
  }

  .hero__title {
    max-width: calc(100vw - 28px);
    font-size: clamp(2.75rem, 12.4vw, 4.85rem);
    line-height: 0.86;
  }

  .manifesto-line {
    width: calc(100vw - 28px);
    white-space: normal;
  }

  .manifesto-line--listen,
  .manifesto-line--imagine {
    font-size: clamp(2.2rem, 10.5vw, 4.25rem);
  }

  .manifesto-line--create {
    font-size: clamp(2.65rem, 12.5vw, 5rem);
  }

  .case-panel__center h3 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 4.8rem);
    line-height: 0.92;
    overflow-wrap: break-word;
  }

  .service-hero {
    font-size: clamp(4.4rem, 21vw, 7rem);
    line-height: 0.86;
  }

  .service-chapter h3 {
    max-width: 100%;
    font-size: clamp(2.35rem, 10.2vw, 4.5rem);
    line-height: 0.96;
    overflow-wrap: break-word;
  }

  .big-copy {
    font-size: clamp(2rem, 8.5vw, 3.6rem);
    line-height: 1.08;
  }

  .dash-card h3,
  .process-step h3,
  .support-card h3,
  .article-card h3,
  .team-card h3,
  .faq-item strong,
  .platform-list strong,
  .contact__grid strong {
    max-width: 100%;
    font-size: clamp(1.15rem, 5.4vw, 2rem);
    line-height: 1.08;
    overflow-wrap: break-word;
  }

  .dash-card--words p,
  .plan-row span,
  .review-feature strong,
  .whispers__card h2,
  .footer__brand h2 {
    max-width: 100%;
    font-size: clamp(2.2rem, 10vw, 4.2rem);
    line-height: 0.98;
    overflow-wrap: break-word;
  }

  .project-mini-grid h3 {
    font-size: clamp(1.45rem, 7vw, 2.5rem);
    line-height: 0.98;
  }
}

/* Create Studio motion language: soft focus reveals, image drift and ambient light. */
.case-panel,
.service-chapter,
.dash-card,
.team-card,
.review-card,
.article-card {
  --pointer-x: 0;
  --pointer-y: 0;
}

.case-panel {
  isolation: isolate;
}

.case-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background: radial-gradient(circle at calc(50% + var(--pointer-x) * 18%) calc(50% + var(--pointer-y) * 18%), rgba(255,255,255,.12), transparent 34%);
  opacity: .7;
  transition: opacity .6s ease;
}

.case-panel img {
  filter: saturate(.86) contrast(1.04);
  transform: translate3d(calc(var(--pointer-x) * -8px), calc(var(--pointer-y) * -8px), 0) scale(1.02);
  transition: transform 1.2s cubic-bezier(.16,1,.3,1), filter 1.1s ease;
}

.case-panel:hover img {
  filter: saturate(1) contrast(1.06);
  transform: translate3d(calc(var(--pointer-x) * -14px), calc(var(--pointer-y) * -14px), 0) scale(1.07);
}

.performance::before {
  animation: performanceGlow 15s ease-in-out infinite alternate;
}

.performance__logos {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.performance__logos span {
  transition: color .35s ease, transform .35s cubic-bezier(.16,1,.3,1);
}

.performance__logos span:hover {
  color: var(--red);
  transform: translateY(-4px);
}

.service-chapter {
  position: relative;
  transition: transform .7s cubic-bezier(.16,1,.3,1), border-color .35s ease;
}

.service-chapter:hover {
  transform: translate3d(calc(var(--pointer-x) * 5px), calc(var(--pointer-y) * 5px), 0);
  border-color: rgba(233,63,63,.35);
}

.service-chapter img {
  filter: saturate(.8) contrast(1.02);
  transform: translate3d(calc(var(--pointer-x) * -7px), calc(var(--pointer-y) * -7px), 0) scale(1.015);
  transition: transform 1s cubic-bezier(.16,1,.3,1), filter .8s ease, box-shadow .8s ease;
}

.service-chapter:hover img {
  filter: saturate(1) contrast(1.05);
  transform: translate3d(calc(var(--pointer-x) * -14px), calc(var(--pointer-y) * -14px), 0) scale(1.06);
  box-shadow: 0 30px 90px rgba(31,31,31,.16);
}

.dash-card,
.team-card,
.review-card,
.article-card {
  transition: transform .65s cubic-bezier(.16,1,.3,1), box-shadow .65s ease, border-color .35s ease;
}

.dash-card:hover,
.team-card:hover,
.review-card:hover,
.article-card:hover {
  transform: translate3d(calc(var(--pointer-x) * 5px), calc(var(--pointer-y) * 5px - 6px), 0);
  box-shadow: 0 28px 80px rgba(31,31,31,.12);
  border-color: rgba(233,63,63,.22);
}

.intro-call {
  background: var(--paper);
}

.intro-call__inner {
  display: grid;
  grid-template-columns: 1.1fr .72fr .5fr auto;
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  padding: clamp(36px, 5vw, 76px);
  overflow: hidden;
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 80% 20%, rgba(233,63,63,.26), transparent 28%),
    #171717;
  color: #fff;
}

.intro-call__inner h2 {
  max-width: 680px;
  margin: 18px 0 0;
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.8vw, 8rem);
  font-weight: 900;
  line-height: .92;
  text-transform: uppercase;
}

.intro-call__inner p,
.intro-call__meta {
  margin: 0;
  color: rgba(255,255,255,.68);
  line-height: 1.5;
}

.intro-call__meta {
  display: grid;
  gap: 8px;
  font-family: var(--display);
  font-size: .78rem;
  text-transform: uppercase;
}

.intro-call__meta strong {
  color: #fff;
}

.team-kpis {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 54px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.team-kpi {
  min-height: 190px;
  padding: 26px 22px;
  border-right: 1px solid var(--line);
}

.team-kpi:last-child { border-right: 0; }

.team-kpi strong {
  display: block;
  color: var(--red);
  font-family: var(--display);
  font-size: clamp(2.4rem, 4.8vw, 6.5rem);
  line-height: .9;
}

.team-kpi span {
  display: block;
  max-width: 220px;
  margin-top: 26px;
  color: var(--muted);
  font-family: var(--display);
  font-size: .78rem;
  font-weight: 700;
  line-height: 1.3;
  text-transform: uppercase;
}

.pricing .plan-list {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
}

.pricing .plan-row {
  position: relative;
  display: grid;
  grid-template-columns: 1fr;
  align-content: start;
  gap: 22px;
  min-height: 560px;
  padding: 30px;
  overflow: hidden;
  border: 1px solid rgba(31,31,31,.1);
  border-radius: var(--radius);
  background: #fff;
  transition: transform .55s cubic-bezier(.16,1,.3,1), box-shadow .55s ease, background .35s ease;
}

.pricing .plan-row::before {
  content: "";
  height: 210px;
  margin: -30px -30px 0;
  background: linear-gradient(145deg, rgba(233,63,63,.9), rgba(31,31,31,.94));
  opacity: .94;
}

.pricing .plan-row:nth-child(2)::before {
  background: linear-gradient(145deg, rgba(49,110,205,.9), rgba(31,31,31,.94));
}

.pricing .plan-row:nth-child(3)::before {
  background: linear-gradient(145deg, rgba(31,31,31,.95), rgba(120,120,120,.9));
}

.pricing .plan-row:hover {
  transform: translateY(-10px);
  box-shadow: 0 30px 80px rgba(31,31,31,.14);
}

.pricing .plan-row.is-active {
  background: #fff;
}

.pricing .plan-row:not(.is-active) {
  min-height: 360px;
  cursor: pointer;
}

.pricing .plan-row:not(.is-active) > p,
.pricing .plan-row:not(.is-active) > ul,
.pricing .plan-row:not(.is-active) > a {
  opacity: 0;
  transform: translateY(18px);
  pointer-events: none;
}

.pricing .plan-row > p,
.pricing .plan-row > ul,
.pricing .plan-row > a {
  transition: opacity .42s ease, transform .55s cubic-bezier(.16,1,.3,1);
}

.pricing .plan-row:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.pricing .plan-row > div {
  display: grid;
  gap: 7px;
}

.pricing .plan-row span {
  font-family: var(--display);
  font-size: clamp(2rem, 3vw, 3.8rem);
  font-weight: 900;
  text-transform: uppercase;
}

.pricing .plan-row p {
  max-width: 360px;
}

.pricing .plan-row ul {
  display: grid;
  gap: 10px;
}

.pricing .plan-row li {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid rgba(31,31,31,.1);
  padding: 0 0 10px;
}

.pricing .plan-row a {
  width: 100%;
  height: 52px;
  border-radius: var(--radius);
  font-family: var(--display);
  font-size: .76rem;
  font-weight: 800;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .pricing .plan-list {
    grid-template-columns: 1fr;
  }

  .pricing .plan-row,
  .pricing .plan-row:not(.is-active) {
    min-height: 0;
  }

  .pricing .plan-row:not(.is-active) > p,
  .pricing .plan-row:not(.is-active) > ul,
  .pricing .plan-row:not(.is-active) > a {
    display: none;
  }
}

@media (max-width: 1100px) {
  .intro-call__inner {
    grid-template-columns: 1fr 1fr;
  }

  .intro-call__inner .button {
    justify-self: start;
  }
}

@media (max-width: 700px) {
  .intro-call__inner,
  .team-kpis {
    grid-template-columns: 1fr;
  }

  .team-kpi {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .team-kpi:last-child { border-bottom: 0; }
}

@keyframes performanceGlow {
  0% { transform: translate3d(-2%, -1%, 0) scale(1); }
  50% { transform: translate3d(3%, 2%, 0) scale(1.06); }
  100% { transform: translate3d(-1%, 4%, 0) scale(1.02); }
}

@media (prefers-reduced-motion: reduce) {
  .reveal {
    filter: none;
    transform: none;
    transition: none;
  }

  .performance::before {
    animation: none;
  }
}

.hero__portrait {
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* Reference-complete sections: showreel, editorial bento and booking flow. */
.showreel {
  padding-top: clamp(18px, 3vw, 44px);
  background: var(--paper);
}

.showreel__stage {
  position: relative;
  min-height: min(82vh, 900px);
  overflow: hidden;
  border-radius: var(--radius);
  background: #111;
  color: #fff;
}

.showreel__stage > img {
  position: absolute;
  inset: -4%;
  width: 108%;
  height: 108%;
  object-fit: cover;
  filter: saturate(.68) contrast(1.08);
  animation: showreelDrift 14s cubic-bezier(.45,0,.55,1) infinite alternate;
}

.showreel__veil {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 74% 38%, rgba(233,63,63,.26), transparent 26%),
    linear-gradient(180deg, rgba(0,0,0,.18), rgba(0,0,0,.72));
  backdrop-filter: none;
}

.showreel__top {
  position: absolute;
  z-index: 2;
  top: 24px;
  left: 24px;
  right: 24px;
  display: flex;
  justify-content: space-between;
  font-size: .72rem;
  text-transform: uppercase;
}

.showreel h2 {
  position: absolute;
  z-index: 2;
  left: clamp(24px, 5vw, 76px);
  bottom: clamp(28px, 6vw, 80px);
  max-width: 1000px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.6rem, 9vw, 11rem);
  font-weight: 900;
  line-height: .82;
  letter-spacing: -.07em;
  text-transform: uppercase;
}

.showreel__play {
  position: absolute;
  z-index: 3;
  top: 50%;
  left: 74%;
  display: grid;
  place-content: center;
  width: clamp(118px, 13vw, 190px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--red);
  color: #fff;
  text-align: center;
  text-decoration: none;
  transform: translate(-50%, -50%);
  transition: width .5s cubic-bezier(.16,1,.3,1), background .3s ease;
}

.showreel__play:hover { opacity: .92; }
.showreel__play span { font-family: var(--display); font-size: .78rem; font-weight: 800; text-transform: uppercase; }
.showreel__play strong { margin-top: 8px; font-size: 1.4rem; }

.team-track {
  grid-template-columns: repeat(4, minmax(260px, 1fr));
}

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

.journal__intro { grid-column: 1 / span 5; min-width: 0; }
.journal__intro h2 { max-width: 100%; overflow-wrap: anywhere; }
.journal__grid > .article-card:nth-of-type(1) { grid-column: 7 / span 6; }
.journal__grid > .article-card:nth-of-type(2) { grid-column: 1 / span 4; }
.journal__grid > .article-card:nth-of-type(3) { grid-column: 5 / span 4; }
.journal__grid > .article-card:nth-of-type(4) { grid-column: 9 / span 4; }
.journal__grid > .article-card:nth-of-type(5) { grid-column: 1 / span 8; }

.article-card--image {
  position: relative;
  min-height: 510px;
  overflow: hidden;
  color: #fff;
}

.article-card--image::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, transparent 20%, rgba(0,0,0,.82));
}

.article-card--image img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s cubic-bezier(.16,1,.3,1), filter .8s ease;
}

.article-card--image:hover img { transform: scale(1.07); filter: saturate(1.12); }
.article-card--red { min-height: 330px; background: var(--red); color: #fff; }
.article-card--red a { align-self: end; color: #fff; font-family: var(--display); font-weight: 800; text-transform: uppercase; }

.journal__more {
  grid-column: 9 / span 4;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 120px;
  padding: 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--display);
  font-weight: 800;
  text-decoration: none;
  text-transform: uppercase;
}

.journal__more span { color: var(--red); font-size: 2rem; transition: transform .35s ease; }
.journal__more:hover span { transform: translate(6px, -6px); }

.book-call {
  background: #111;
  color: #fff;
}

.book-call .section-label { border-color: rgba(255,255,255,.18); color: rgba(255,255,255,.62); }

.book-call__stage {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(40px, 7vw, 110px);
  min-height: 76vh;
  padding: clamp(34px, 6vw, 92px);
  border-radius: var(--radius);
  background:
    radial-gradient(circle at 78% 18%, rgba(233,63,63,.28), transparent 24%),
    repeating-linear-gradient(90deg, transparent 0, transparent calc(25% - 1px), rgba(255,255,255,.045) 25%);
}

.book-call__stage > * { min-width: 0; }

.book-call__copy h2 {
  max-width: 900px;
  margin: 24px 0;
  font-family: var(--display);
  font-size: clamp(3.5rem, 7.6vw, 10rem);
  font-weight: 900;
  line-height: .86;
  letter-spacing: -.065em;
  text-transform: uppercase;
}

.book-call__copy p { max-width: 550px; color: rgba(255,255,255,.62); line-height: 1.55; }
.book-call__tasks { display: grid; align-content: center; }

.book-call__tasks button {
  display: flex;
  justify-content: space-between;
  width: 100%;
  padding: 20px 0;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.18);
  background: transparent;
  color: rgba(255,255,255,.5);
  font: 800 clamp(1rem, 1.7vw, 1.8rem)/1 var(--display);
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
  transition: color .3s ease, padding-left .45s cubic-bezier(.16,1,.3,1);
}

.book-call__tasks button { overflow-wrap: anywhere; }

.book-call__tasks button:hover,
.book-call__tasks button.is-active { padding-left: 14px; color: #fff; }
.book-call__tasks button.is-active::before { content: "●"; margin-right: 12px; color: var(--red); font-size: .65em; }
.book-call__tasks button span { margin-left: auto; font: 400 .7rem/1 var(--mono); }

.book-call__action {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 28px;
  border-top: 1px solid rgba(255,255,255,.18);
}

.book-call__availability { color: rgba(255,255,255,.64); font: .72rem/1.3 var(--mono); text-transform: uppercase; }
.book-call__availability i { display: inline-block; width: 8px; height: 8px; margin-right: 10px; border-radius: 50%; background: #65d48b; box-shadow: 0 0 0 5px rgba(101,212,139,.12); animation: availabilityPulse 1.8s ease-in-out infinite; }

.footer__newsletter {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 8vw;
  padding: clamp(42px, 7vw, 100px) var(--page);
  border-bottom: 1px solid rgba(255,255,255,.16);
}

.footer__newsletter h2 { margin: 18px 0 0; font-family: var(--display); font-size: clamp(2.4rem, 5vw, 7rem); line-height: .9; text-transform: uppercase; }
.footer__newsletter form { display: grid; grid-template-columns: 1fr 1fr auto; gap: 12px; align-items: end; }
.footer__newsletter label { display: grid; gap: 9px; color: rgba(255,255,255,.5); font: .65rem/1 var(--mono); text-transform: uppercase; }
.footer__newsletter input { min-width: 0; padding: 17px 0; border: 0; border-bottom: 1px solid rgba(255,255,255,.35); outline: 0; background: transparent; color: #fff; font: 1rem/1 var(--sans); }
.footer__newsletter input:focus { border-color: var(--red); }
.footer__newsletter button { min-height: 52px; padding: 0 24px; border: 0; border-radius: var(--radius); background: var(--red); color: #fff; font-family: var(--display); font-weight: 800; text-transform: uppercase; cursor: pointer; }

@keyframes showreelDrift {
  from { transform: scale(1.01) translate3d(-1%, 0, 0); filter: saturate(.68) contrast(1.08); }
  to { transform: scale(1.08) translate3d(1.5%, -1%, 0); filter: saturate(.88) contrast(1.12); }
}

@keyframes availabilityPulse {
  0%, 100% { opacity: .45; transform: scale(.8); }
  50% { opacity: 1; transform: scale(1); }
}

@media (max-width: 900px) {
  .showreel__stage { min-height: 68vh; }
  .showreel__play { left: 72%; top: 38%; }
  .team-track { grid-template-columns: repeat(4, minmax(250px, 78vw)); overflow-x: auto; }
  .journal__grid { grid-template-columns: minmax(0, 1fr); }
  .journal__intro,
  .journal__grid > .article-card:nth-of-type(n),
  .journal__more { grid-column: 1 / -1; }
  .book-call__stage,
  .footer__newsletter { grid-template-columns: 1fr; }
  .book-call__action { align-items: flex-start; gap: 24px; flex-direction: column; }
  .footer__newsletter form { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .showreel__top span:last-child { display: none; }
  .showreel h2 {
    right: 20px;
    max-width: calc(100% - 40px);
    font-size: clamp(3rem, 16vw, 5.2rem);
    overflow-wrap: anywhere;
  }
  .showreel__play { left: 70%; width: 112px; }
  .book-call__stage { min-height: auto; padding: 26px 20px; }
  .book-call__copy h2 { font-size: clamp(2.8rem, 13vw, 5rem); }
}

@media (prefers-reduced-motion: reduce) {
  .showreel__stage > img,
  .book-call__availability i { animation: none; }
}
