:root {
  color-scheme: light;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  letter-spacing: 0;
  --ink: #111111;
  --paper: #f7f7f2;
  --soft: #e7e4da;
  --muted: #6a675f;
  --line: rgba(20, 20, 20, 0.16);
  --lime: #caff3f;
  --cyan: #99e8ff;
  --coral: #ff725e;
  --amber: #ffcc4d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
}

.index-page,
.cinema-page,
.studio-page {
  overflow-x: hidden;
}

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

button {
  font: inherit;
}

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

video {
  background: #0b0b0b;
}

.eyebrow {
  margin: 0;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 700ms ease, transform 700ms ease;
}

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

.index-page {
  min-height: 100vh;
  background: #111111;
  color: #f7f1e7;
}

.concept-index {
  min-height: 100vh;
  display: grid;
  align-content: center;
  gap: 26px;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
}

.concept-index h1 {
  margin: 0;
  max-width: 760px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 4.7rem;
  line-height: 0.94;
  font-weight: 400;
}

.index-lead {
  max-width: 560px;
  margin: 0;
  color: rgba(247, 241, 231, 0.72);
  font-size: 1.06rem;
  line-height: 1.7;
}

.concept-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 24px;
}

.concept-links a {
  min-height: 210px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: 22px;
  border: 1px solid rgba(247, 241, 231, 0.18);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  transition: transform 260ms ease, background 260ms ease, border-color 260ms ease;
}

.concept-links a:hover {
  transform: translateY(-4px);
  border-color: rgba(247, 241, 231, 0.44);
  background: rgba(255, 255, 255, 0.08);
}

.concept-links span,
.concept-links em {
  color: rgba(247, 241, 231, 0.58);
  font-style: normal;
}

.concept-links strong {
  font-size: 1.7rem;
  font-weight: 500;
}

.cinema-page {
  background: #050505;
  color: #f2eee6;
}

.cinema-nav,
.studio-nav {
  position: fixed;
  z-index: 30;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
}

.cinema-nav {
  color: #f2eee6;
  mix-blend-mode: difference;
}

.cinema-brand,
.studio-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-size: 0.86rem;
  font-weight: 800;
  white-space: nowrap;
}

.cinema-brand img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.studio-brand img {
  width: 116px;
  height: auto;
  object-fit: contain;
}

.cinema-nav nav,
.studio-nav nav {
  display: flex;
  align-items: center;
  gap: 18px;
  font-size: 0.84rem;
  font-weight: 700;
}

.cinema-hero {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.cinema-hero-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.1) 52%, rgba(0, 0, 0, 0.64)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0) 54%);
}

.cinema-grain {
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.2;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.22) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.14) 0 1px, transparent 1px);
  background-size: 4px 4px, 6px 6px;
}

.cinema-copy {
  position: relative;
  z-index: 2;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 96px 0 190px;
}

.cinema-copy h1 {
  margin: 12px 0 18px;
  max-width: 850px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5.8rem;
  line-height: 0.93;
  font-weight: 400;
}

.cinema-copy p:last-child {
  width: min(560px, 100%);
  margin: 0;
  color: rgba(242, 238, 230, 0.76);
  font-size: 1.08rem;
  line-height: 1.72;
}

.cinema-meta {
  position: absolute;
  z-index: 3;
  top: 46%;
  right: 26px;
  display: grid;
  gap: 8px;
  color: rgba(242, 238, 230, 0.65);
  font-size: 0.74rem;
  text-align: right;
  text-transform: uppercase;
}

.cinema-selector {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 24px;
  width: min(1000px, calc(100% - 40px));
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  transform: translateX(-50%);
}

.cinema-selector.reveal {
  transform: translateX(-50%) translateY(18px);
}

.cinema-selector.reveal.is-visible {
  transform: translateX(-50%) translateY(0);
}

.cinema-selector button {
  min-height: 92px;
  padding: 14px;
  border: 1px solid rgba(242, 238, 230, 0.2);
  border-radius: 8px;
  background: rgba(5, 5, 5, 0.34);
  color: #f2eee6;
  text-align: left;
  cursor: pointer;
  backdrop-filter: blur(14px);
  transition: border-color 240ms ease, background 240ms ease, transform 240ms ease;
}

.cinema-selector button:hover,
.cinema-selector button.is-active {
  transform: translateY(-3px);
  border-color: rgba(242, 238, 230, 0.58);
  background: rgba(242, 238, 230, 0.12);
}

.cinema-selector span,
.cinema-selector em {
  display: block;
  color: rgba(242, 238, 230, 0.58);
  font-style: normal;
  font-size: 0.72rem;
}

.cinema-selector strong {
  display: block;
  margin: 8px 0 6px;
  overflow-wrap: anywhere;
  font-size: 1rem;
  line-height: 1.18;
}

.cinema-statement,
.cinema-brief,
.cinema-contact {
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

.cinema-statement {
  padding: 110px 0 88px;
}

.cinema-statement h2 {
  max-width: 1050px;
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.4rem;
  line-height: 1.08;
  font-weight: 400;
}

.cinema-slate {
  width: min(1320px, calc(100% - 24px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.cinema-tile {
  position: relative;
  min-height: 520px;
  border-radius: 8px;
  overflow: hidden;
  background: #111111;
}

.cinema-tile video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.86);
  transition: transform 700ms ease, filter 700ms ease;
}

.cinema-tile:hover video {
  transform: scale(1.04);
  filter: saturate(1.08);
}

.cinema-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.08) 62%);
}

.cinema-tile div {
  position: absolute;
  z-index: 2;
  left: 18px;
  right: 18px;
  bottom: 18px;
}

.cinema-tile p,
.cinema-tile span {
  margin: 0;
  color: rgba(242, 238, 230, 0.66);
  line-height: 1.45;
}

.cinema-tile h3 {
  margin: 8px 0 8px;
  font-size: 1.45rem;
  line-height: 1.16;
}

.cinema-brief {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 50px;
  align-items: start;
  padding: 110px 0;
}

.cinema-brief h2 {
  margin: 12px 0 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3.2rem;
  line-height: 1;
  font-weight: 400;
}

.cinema-brief ul {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(242, 238, 230, 0.22);
}

.cinema-brief li {
  display: flex;
  gap: 16px;
  justify-content: space-between;
  padding: 18px 0;
  border-bottom: 1px solid rgba(242, 238, 230, 0.22);
  font-size: 1.08rem;
}

.cinema-brief li span {
  color: rgba(242, 238, 230, 0.5);
}

.cinema-contact {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  align-items: end;
  padding: 84px 0 42px;
  border-top: 1px solid rgba(242, 238, 230, 0.18);
}

.cinema-contact p {
  max-width: 760px;
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 3rem;
  line-height: 1.08;
}

.cinema-contact a {
  display: inline-flex;
  padding: 13px 16px;
  border: 1px solid rgba(242, 238, 230, 0.3);
  border-radius: 999px;
  color: rgba(242, 238, 230, 0.78);
  white-space: nowrap;
}

.studio-page {
  background: var(--paper);
  color: var(--ink);
}

.studio-nav {
  color: var(--ink);
  background: rgba(247, 247, 242, 0.76);
  border-bottom: 1px solid rgba(17, 17, 17, 0.08);
  backdrop-filter: blur(16px);
}

.studio-brand span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 58px;
  height: 28px;
  border: 1px solid rgba(17, 17, 17, 0.16);
  border-radius: 999px;
  font-size: 0.72rem;
}

.studio-hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  overflow: hidden;
  padding: 110px 20px 130px;
}

.studio-canvas {
  position: absolute;
  inset: 0;
  overflow: hidden;
  background:
    linear-gradient(0deg, rgba(247, 247, 242, 0.94), rgba(247, 247, 242, 0.32) 48%, rgba(247, 247, 242, 0.88)),
    linear-gradient(135deg, rgba(202, 255, 63, 0.46), rgba(153, 232, 255, 0.34) 45%, rgba(255, 114, 94, 0.28));
}

.canvas-video {
  position: absolute;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 8px;
  object-fit: cover;
  box-shadow: 0 24px 80px rgba(17, 17, 17, 0.16);
  transform: translate3d(calc(var(--mx, 0) * 1px), calc(var(--my, 0) * 1px), 0);
  transition: transform 180ms ease-out;
}

.canvas-video-wide {
  width: min(760px, 72vw);
  aspect-ratio: 16 / 9;
  left: 4%;
  top: 16%;
}

.canvas-video-tall {
  width: min(300px, 34vw);
  aspect-ratio: 9 / 16;
  right: 8%;
  top: 14%;
}

.canvas-video-small {
  width: min(330px, 32vw);
  aspect-ratio: 16 / 9;
  left: 16%;
  bottom: 10%;
}

.canvas-video-mid {
  width: min(420px, 42vw);
  aspect-ratio: 16 / 9;
  right: 23%;
  bottom: 15%;
}

.studio-copy {
  position: relative;
  z-index: 2;
  width: min(850px, 100%);
  text-align: center;
  padding-top: 34px;
  text-shadow: 0 2px 30px rgba(247, 247, 242, 0.92);
}

.studio-copy h1 {
  margin: 14px 0 18px;
  font-size: 4.4rem;
  line-height: 0.96;
  font-weight: 800;
}

.studio-copy p:last-child {
  width: min(620px, 100%);
  margin: 0 auto;
  color: #4d4b45;
  font-size: 1.08rem;
  line-height: 1.72;
}

.prompt-dock {
  position: absolute;
  z-index: 4;
  left: 50%;
  bottom: 22px;
  width: min(860px, calc(100% - 28px));
  transform: translateX(-50%);
  padding: 10px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.76);
  box-shadow: 0 18px 70px rgba(17, 17, 17, 0.14);
  backdrop-filter: blur(18px);
}

.prompt-dock.reveal {
  transform: translateX(-50%) translateY(18px);
}

.prompt-dock.reveal.is-visible {
  transform: translateX(-50%) translateY(0);
}

.dock-tabs {
  display: flex;
  gap: 6px;
  margin-bottom: 8px;
}

.dock-tabs button,
.prompt-row button {
  min-height: 36px;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 999px;
  background: #ffffff;
  color: var(--ink);
  cursor: pointer;
}

.dock-tabs button {
  padding: 0 14px;
}

.dock-tabs .is-active {
  background: var(--ink);
  color: #ffffff;
}

.prompt-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 10px;
  align-items: center;
}

.prompt-row span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--lime);
  font-weight: 800;
}

.prompt-row p {
  min-height: 42px;
  display: flex;
  align-items: center;
  margin: 0;
  padding: 0 14px;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.12);
  border-radius: 8px;
  background: #ffffff;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.prompt-row button {
  padding: 0 18px;
  background: var(--coral);
  color: #111111;
  font-weight: 800;
}

.model-band {
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #111111;
  color: #f7f7f2;
}

.model-band div {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 14px 10px;
  animation: marquee 24s linear infinite;
}

.model-band span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 18px;
  border: 1px solid rgba(247, 247, 242, 0.26);
  border-radius: 999px;
  white-space: nowrap;
}

@keyframes marquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-42%);
  }
}

.studio-suite,
.studio-works,
.studio-contact {
  width: min(1160px, calc(100% - 40px));
  margin: 0 auto;
}

.studio-suite {
  padding: 100px 0;
}

.suite-heading,
.works-heading {
  display: flex;
  justify-content: space-between;
  gap: 34px;
  align-items: end;
  margin-bottom: 30px;
}

.suite-heading h2,
.works-heading h2,
.studio-contact h2 {
  max-width: 720px;
  margin: 0;
  font-size: 3rem;
  line-height: 1.08;
}

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

.suite-card {
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
}

.suite-card:nth-child(1) {
  background: #ffffff;
}

.suite-card:nth-child(2) {
  background: #ecffd3;
}

.suite-card:nth-child(3) {
  background: #e9f7ff;
}

.suite-card:nth-child(4) {
  background: #fff0e4;
}

.suite-card span {
  color: var(--muted);
  font-weight: 800;
}

.suite-card h3 {
  margin: auto 0 12px;
  font-size: 1.45rem;
  line-height: 1.12;
}

.suite-card p {
  margin: 0;
  color: #504d45;
  line-height: 1.58;
}

.studio-works {
  padding: 10px 0 104px;
}

.work-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 210px;
  gap: 10px;
}

.work-card {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(17, 17, 17, 0.14);
  border-radius: 8px;
  background: #111111;
}

.work-card.tall {
  grid-row: span 2;
}

.work-card.wide {
  grid-column: span 2;
}

.work-card video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.work-card:hover video {
  transform: scale(1.04);
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.02) 64%);
}

.work-card h3,
.work-card p {
  position: absolute;
  z-index: 2;
  left: 16px;
  right: 16px;
}

.work-card h3 {
  bottom: 42px;
  margin: 0;
  color: #ffffff;
  font-size: 1.28rem;
}

.work-card p {
  bottom: 16px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
}

.studio-contact {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 44px;
  align-items: center;
  padding: 64px 0 48px;
  border-top: 1px solid var(--line);
}

.studio-contact img {
  width: 150px;
  height: auto;
}

.studio-contact .eyebrow {
  margin-bottom: 12px;
}

.studio-contact a {
  display: inline-flex;
  margin-top: 24px;
  padding: 12px 16px;
  border: 1px solid rgba(17, 17, 17, 0.18);
  border-radius: 999px;
  background: #ffffff;
  font-weight: 800;
}

@media (hover: hover) {
  .cinema-tile:hover video,
  .work-card:hover video {
    animation-play-state: running;
  }
}

@media (max-width: 980px) {
  .concept-index h1,
  .cinema-copy h1 {
    font-size: 4rem;
  }

  .cinema-statement h2,
  .cinema-brief h2,
  .cinema-contact p,
  .suite-heading h2,
  .works-heading h2,
  .studio-contact h2 {
    font-size: 2.4rem;
  }

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

  .cinema-tile {
    min-height: 430px;
  }

  .cinema-brief {
    grid-template-columns: 1fr;
  }

  .studio-copy h1 {
    font-size: 3.3rem;
  }

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

@media (max-width: 720px) {
  .cinema-nav,
  .studio-nav {
    padding: 14px;
  }

  .cinema-nav nav,
  .studio-nav nav {
    gap: 10px;
    font-size: 0.75rem;
  }

  .studio-brand img {
    width: 88px;
  }

  .studio-brand span {
    display: none;
  }

  .concept-links,
  .cinema-selector,
  .suite-grid,
  .work-masonry,
  .studio-contact {
    grid-template-columns: 1fr;
  }

  .concept-index h1,
  .cinema-copy h1,
  .studio-copy h1 {
    font-size: 3rem;
    line-height: 1;
  }

  .cinema-copy {
    padding-bottom: 270px;
  }

  .cinema-meta {
    display: none;
  }

  .cinema-selector {
    bottom: 14px;
  }

  .cinema-selector button {
    min-height: 72px;
  }

  .cinema-slate {
    grid-template-columns: 1fr;
  }

  .cinema-tile {
    min-height: 390px;
  }

  .cinema-contact {
    display: grid;
    align-items: start;
  }

  .cinema-contact a {
    width: fit-content;
    white-space: normal;
  }

  .canvas-video-wide {
    width: 96vw;
    left: -18%;
    top: 16%;
  }

  .canvas-video-tall {
    width: 48vw;
    right: 4%;
    top: 18%;
  }

  .canvas-video-small {
    width: 58vw;
    left: 4%;
    bottom: 8%;
  }

  .canvas-video-mid {
    width: 64vw;
    right: -12%;
    bottom: 18%;
  }

  .studio-copy {
    padding-top: 80px;
  }

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

  .prompt-dock,
  .prompt-dock.reveal,
  .prompt-dock.reveal.is-visible {
    left: 14px;
    right: 14px;
    width: auto;
    transform: translateY(0);
  }

  .prompt-row p {
    white-space: normal;
    min-height: 58px;
  }

  .work-card.tall,
  .work-card.wide {
    grid-row: span 1;
    grid-column: span 1;
  }

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

  .studio-contact img {
    width: 94px;
  }
}

@media (max-width: 460px) {
  .cinema-brand span {
    display: none;
  }

  .cinema-nav nav,
  .studio-nav nav {
    gap: 8px;
  }

  .cinema-nav nav a:nth-child(2),
  .studio-nav nav a:nth-child(2) {
    display: none;
  }

  .concept-index h1,
  .cinema-copy h1,
  .studio-copy h1 {
    font-size: 2.25rem;
  }

  .cinema-statement h2,
  .cinema-brief h2,
  .cinema-contact p,
  .suite-heading h2,
  .works-heading h2,
  .studio-contact h2 {
    font-size: 2rem;
  }

  .studio-suite,
  .studio-works,
  .studio-contact,
  .cinema-statement,
  .cinema-brief,
  .cinema-contact {
    width: min(calc(100% - 28px), 1160px);
  }
}

/* Reference-locked rebuilds: closer structural match without reusing third-party branding. */
.cinema-page {
  font-family: Arial, Helvetica, sans-serif;
}

.cinema-nav {
  height: 104px;
  justify-content: center;
  padding: 0 40px;
  color: #fffef2;
  mix-blend-mode: normal;
  pointer-events: none;
}

.film-menu,
.film-logo,
.film-search {
  pointer-events: auto;
}

.film-menu,
.film-search {
  position: absolute;
  top: 50%;
  border: 0;
  background: transparent;
  color: #fffef2;
  transform: translateY(-50%);
  cursor: pointer;
}

.film-menu {
  left: 40px;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 0;
  font-size: 0.85rem;
}

.film-menu span {
  width: 24px;
  height: 10px;
  display: inline-block;
  border-top: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
}

.film-menu em {
  font-style: normal;
}

.film-logo {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.18rem;
  font-weight: 800;
  line-height: 1;
}

.film-search {
  right: 40px;
  width: 28px;
  height: 28px;
}

.film-search::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 3px;
  width: 15px;
  height: 15px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.film-search::after {
  content: "";
  position: absolute;
  left: 19px;
  top: 18px;
  width: 9px;
  height: 1px;
  background: currentColor;
  transform: rotate(45deg);
  transform-origin: left center;
}

.cinema-hero {
  min-height: 100svh;
}

.cinema-hero-video {
  filter: saturate(1.05) contrast(1.02);
}

.cinema-shade {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.22), rgba(0, 0, 0, 0.02) 42%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.26), transparent 46%);
}

.cinema-copy {
  position: absolute;
  z-index: 3;
  left: 40px;
  bottom: 46px;
  width: min(760px, calc(100% - 110px));
  min-height: auto;
  display: block;
  margin: 0;
  padding: 0;
}

.cinema-title-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.cinema-title-list li {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  min-height: 3.48rem;
}

.cinema-title-list a {
  display: block;
  color: #fffde8;
  font-size: 3.64rem;
  line-height: 0.88;
  font-weight: 700;
}

.cinema-title-list span {
  display: inline-block;
  margin-top: 0.2rem;
  color: #fffde8;
  font-size: 0.92rem;
  line-height: 1;
  font-weight: 700;
}

.film-arrow {
  position: absolute;
  z-index: 3;
  right: 40px;
  bottom: 38px;
  width: 28px;
  height: 66px;
}

.film-arrow::before,
.film-arrow::after {
  content: "";
  position: absolute;
  left: 50%;
  background: #fffef2;
  transform: translateX(-50%);
}

.film-arrow::before {
  top: 0;
  width: 2px;
  height: 62px;
}

.film-arrow::after {
  bottom: 0;
  width: 16px;
  height: 16px;
  border-right: 2px solid #fffef2;
  border-bottom: 2px solid #fffef2;
  background: transparent;
  transform: translateX(-50%) rotate(45deg);
}

.film-caption {
  position: absolute;
  z-index: 3;
  left: 50%;
  bottom: 26px;
  margin: 0;
  color: rgba(255, 254, 242, 0.82);
  font-size: 0.78rem;
  transform: translateX(-50%);
}

.cinema-statement {
  padding-top: 92px;
}

.cinema-tile {
  border-radius: 0;
}

.cinema-brief,
.cinema-contact {
  border-color: rgba(255, 255, 255, 0.24);
}

.studio-page {
  background: #ffffff;
  color: #050505;
  font-family: Arial, Helvetica, sans-serif;
}

.studio-nav {
  height: 70px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  gap: 16px;
  align-items: center;
  padding: 0 48px 0 64px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dedede;
  backdrop-filter: blur(12px);
}

.studio-brand {
  gap: 10px;
}

.studio-brand .studio-symbol {
  position: relative;
  width: 18px;
  height: 18px;
  border: 0;
  border-radius: 0;
}

.studio-symbol::before,
.studio-symbol::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 3px;
  background: #050505;
  box-shadow: 11px 0 0 #050505, 0 11px 0 #050505, 11px 11px 0 #050505;
  transform: rotate(-18deg);
}

.studio-symbol::after {
  opacity: 0;
}

.studio-brand .studio-name {
  width: auto;
  height: auto;
  border: 0;
  border-radius: 0;
  font-size: 0.82rem;
  font-weight: 800;
}

.studio-nav nav {
  justify-content: center;
  gap: 34px;
  font-size: 0.98rem;
  font-weight: 500;
}

.studio-actions {
  display: flex;
  justify-content: end;
  gap: 8px;
}

.studio-actions a {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  border: 1px solid #d8d8d8;
  border-radius: 999px;
  font-size: 0.88rem;
  white-space: nowrap;
}

.studio-actions a:last-child {
  border-color: #191919;
  background: #191919;
  color: #ffffff;
}

.krea-shell {
  min-height: 100vh;
  padding: 70px 64px 36px;
}

.krea-models {
  height: 194px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  max-width: 1136px;
  margin: 0 auto;
  overflow: hidden;
  color: #9b9b9b;
  font-size: 1.55rem;
  font-weight: 800;
  white-space: nowrap;
}

.krea-models span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  opacity: 0.92;
}

.krea-models i {
  width: 24px;
  height: 24px;
  display: inline-block;
  background:
    linear-gradient(135deg, transparent 0 45%, currentColor 46% 55%, transparent 56%),
    radial-gradient(circle at 72% 28%, currentColor 0 5px, transparent 6px);
  opacity: 0.78;
}

.krea-bento {
  max-width: 1136px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 116px;
  gap: 14px;
}

.k-card {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  padding: 20px;
  border-radius: 22px;
  background: #f1f1f1;
  color: #050505;
}

.k-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.k-card::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.k-card h1,
.k-card h2,
.k-card h3,
.k-card p,
.k-card strong,
.k-card .clock,
.k-card div {
  position: relative;
  z-index: 2;
}

.k-card h1,
.k-card h2,
.k-card h3,
.k-card p {
  margin: 0;
  text-align: center;
}

.k-card h1 {
  color: #ffffff;
  font-size: 5rem;
  line-height: 1;
  font-weight: 800;
}

.k-card h2 {
  color: #ffffff;
  font-size: 2rem;
  line-height: 1.06;
}

.k-card h3 {
  font-size: 1.72rem;
  line-height: 1.02;
}

.k-card p {
  margin-top: 6px;
  font-size: 0.95rem;
  font-weight: 700;
}

.k-card strong {
  display: block;
  font-size: 4.4rem;
  line-height: 0.92;
  font-weight: 800;
}

.k-speed {
  grid-column: 1 / span 5;
  grid-row: span 2;
  justify-items: start;
}

.k-speed::after,
.k-native::after,
.k-main::after,
.k-assets::after,
.k-editor::after,
.k-realtime::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.38), rgba(0, 0, 0, 0.08));
}

.k-speed h2 {
  max-width: 360px;
  text-align: left;
  margin-left: 84px;
}

.k-stat {
  grid-column: 6 / span 2;
  grid-row: span 2;
}

.k-train {
  grid-column: 8 / span 4;
  grid-row: span 2;
}

.k-train strong {
  font-size: 4.1rem;
}

.k-native {
  grid-column: 1 / span 3;
  grid-row: span 1;
  color: #ffffff;
}

.k-native strong {
  color: #ffffff;
  font-size: 3.4rem;
}

.k-main {
  grid-column: 4 / span 6;
  grid-row: span 2;
  align-content: center;
}

.k-main p {
  color: #ffffff;
}

.k-private {
  grid-column: 10 / span 2;
  grid-row: span 1;
}

.k-models {
  grid-column: 10 / span 2;
  grid-row: span 2;
}

.k-assets {
  grid-column: 1 / span 2;
  grid-row: span 2;
  justify-items: start;
  align-items: start;
  color: #ffffff;
}

.k-assets h3,
.k-realtime h3 {
  color: #ffffff;
  text-align: left;
}

.k-edge {
  grid-column: 3 / span 2;
  grid-row: span 2;
  align-content: space-between;
}

.clock {
  width: 104px;
  height: 104px;
  border: 1px solid #d5d5d5;
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, #111111 50% 51%, transparent 52%),
    linear-gradient(0deg, transparent 49%, #111111 50% 51%, transparent 52%),
    #ffffff;
}

.clock::before,
.clock::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 50%;
  width: 2px;
  background: #111111;
  transform-origin: bottom center;
}

.clock::before {
  height: 35px;
  transform: translateX(-50%) rotate(-10deg);
}

.clock::after {
  height: 48px;
  background: #f3bd25;
  transform: translateX(-50%) rotate(-35deg);
}

.k-styles {
  grid-column: 5 / span 2;
  grid-row: span 2;
  background: #101010;
  color: #ffffff;
}

.k-styles strong {
  color: #ffffff;
  font-size: 3.2rem;
}

.k-editor {
  grid-column: 7 / span 2;
  grid-row: span 2;
  color: #ffffff;
}

.k-editor h3 {
  color: #ffffff;
}

.k-lines {
  grid-column: 9 / span 2;
  grid-row: span 2;
}

.k-lines div {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
}

.k-lines span {
  width: 8px;
  border-radius: 99px;
  background: #1c1c1c;
}

.k-lines span:nth-child(1) {
  height: 38px;
}

.k-lines span:nth-child(2) {
  height: 68px;
}

.k-lines span:nth-child(3) {
  height: 92px;
}

.k-lines span:nth-child(4) {
  height: 62px;
}

.k-lines span:nth-child(5) {
  height: 84px;
}

.k-realtime {
  grid-column: 11 / span 2;
  grid-row: span 1;
  justify-items: start;
}

.k-cube {
  grid-column: 11 / span 2;
  grid-row: span 1;
}

.k-cube div {
  width: 48px;
  height: 48px;
  margin-top: 8px;
  background: linear-gradient(135deg, #e8e8e8, #bbbbbb);
  transform: rotateX(56deg) rotateZ(45deg);
}

@media (max-width: 980px) {
  .cinema-title-list a {
    font-size: 3rem;
  }

  .cinema-title-list li {
    min-height: 2.95rem;
  }

  .studio-nav {
    grid-template-columns: auto 1fr auto;
    padding: 0 24px;
  }

  .studio-nav nav {
    gap: 16px;
  }

  .studio-actions a:first-child,
  .studio-nav nav a:nth-child(n + 5) {
    display: none;
  }

  .krea-shell {
    padding-left: 24px;
    padding-right: 24px;
  }

  .krea-models {
    height: 136px;
    justify-content: start;
  }

  .krea-bento {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: 118px;
  }

  .k-speed,
  .k-train,
  .k-main {
    grid-column: span 4;
  }

  .k-stat,
  .k-private,
  .k-models,
  .k-native,
  .k-assets,
  .k-edge,
  .k-styles,
  .k-editor,
  .k-lines,
  .k-realtime,
  .k-cube {
    grid-column: span 2;
  }
}

@media (max-width: 720px) {
  .cinema-nav {
    height: 76px;
    padding: 0 20px;
  }

  .film-menu {
    left: 20px;
  }

  .film-menu em {
    display: none;
  }

  .film-logo {
    font-size: 1.55rem;
  }

  .film-search {
    right: 20px;
  }

  .cinema-copy {
    left: 22px;
    bottom: 42px;
    width: calc(100% - 62px);
  }

  .cinema-title-list a {
    font-size: 2.28rem;
  }

  .cinema-title-list li {
    min-height: 2.28rem;
    gap: 8px;
  }

  .cinema-title-list span {
    font-size: 0.72rem;
  }

  .film-caption {
    display: none;
  }

  .film-arrow {
    right: 22px;
    height: 48px;
  }

  .film-arrow::before {
    height: 44px;
  }

  .studio-nav {
    height: 64px;
    grid-template-columns: auto 1fr;
  }

  .studio-brand .studio-name,
  .studio-actions {
    display: none;
  }

  .studio-nav nav {
    justify-content: end;
    gap: 14px;
    font-size: 0.88rem;
  }

  .studio-nav nav a:nth-child(n + 4) {
    display: none;
  }

  .krea-shell {
    padding: 64px 16px 28px;
  }

  .krea-models {
    height: 102px;
    gap: 28px;
    font-size: 1.25rem;
  }

  .krea-bento {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 126px;
    gap: 10px;
  }

  .k-card {
    border-radius: 18px;
    padding: 16px;
  }

  .k-speed,
  .k-train,
  .k-main,
  .k-stat,
  .k-private,
  .k-models,
  .k-native,
  .k-assets,
  .k-edge,
  .k-styles,
  .k-editor,
  .k-lines,
  .k-realtime,
  .k-cube {
    grid-column: span 1;
    grid-row: span 1;
  }

  .k-speed,
  .k-main {
    grid-column: span 2;
    grid-row: span 2;
  }

  .k-speed h2 {
    margin-left: 0;
  }

  .k-card h1 {
    font-size: 3.4rem;
  }

  .k-card h2,
  .k-card h3 {
    font-size: 1.4rem;
  }

  .k-card strong {
    font-size: 3rem;
  }
}

/* Tweakable typography and final reference-aligned overrides. */
body.font-satoshi {
  font-family: "Satoshi", "Avenir Next", "SF Pro Display", Inter, Arial, sans-serif;
}

body.font-neue {
  font-family: "Neue Haas Grotesk Text", "Helvetica Neue", Helvetica, Arial, sans-serif;
}

body.font-abc {
  font-family: "ABC Favorit", "Favorit", "Arial Nova", Arial, sans-serif;
}

body.font-inter {
  font-family: Inter, "SF Pro Text", "Helvetica Neue", Arial, sans-serif;
}

body.font-pretendard {
  font-family: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", Inter, Arial, sans-serif;
}

.font-tweak {
  position: fixed;
  z-index: 80;
  right: 18px;
  bottom: 18px;
  display: grid;
  justify-items: end;
  gap: 8px;
  font-family: Inter, "Helvetica Neue", Arial, sans-serif;
}

.font-tweak-toggle {
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(18, 18, 18, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.78);
  color: #111111;
  font-size: 0.8rem;
  font-weight: 800;
  backdrop-filter: blur(14px);
  cursor: pointer;
}

.cinema-page .font-tweak-toggle {
  border-color: rgba(255, 255, 255, 0.26);
  background: rgba(0, 0, 0, 0.38);
  color: #fffef2;
}

.font-tweak-panel {
  display: none;
  width: 210px;
  padding: 12px;
  border: 1px solid rgba(18, 18, 18, 0.14);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.14);
  backdrop-filter: blur(18px);
}

.font-tweak.is-open .font-tweak-panel {
  display: grid;
  gap: 8px;
}

.font-tweak label {
  color: #555555;
  font-size: 0.72rem;
  font-weight: 800;
  text-transform: uppercase;
}

.font-tweak select {
  width: 100%;
  min-height: 36px;
  border: 1px solid rgba(18, 18, 18, 0.16);
  border-radius: 8px;
  background: #ffffff;
  color: #111111;
  font: inherit;
}

.cinema-title-list button {
  display: block;
  padding: 0;
  border: 0;
  background: transparent;
  color: #fffde8;
  font: inherit;
  font-size: 3.64rem;
  line-height: 0.88;
  font-weight: 800;
  letter-spacing: 0;
  text-align: left;
  cursor: pointer;
}

.cinema-title-list button:hover,
.cinema-title-list button.is-active {
  color: #ffffff;
}

.cinema-title-list button.is-active {
  text-shadow: 0 0 22px rgba(255, 255, 255, 0.24);
}

.cinema-tile img,
.cinema-tile video,
.feed-card img,
.feed-card video,
.k-card img,
.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cinema-tile img,
.cinema-tile video,
.feed-card img,
.feed-card video {
  position: absolute;
  inset: 0;
}

.cinema-tile img,
.cinema-tile video {
  transition: transform 700ms ease, filter 700ms ease;
}

.cinema-tile:hover img {
  transform: scale(1.04);
}

.cinema-feed {
  width: min(1320px, calc(100% - 24px));
  margin: 12px auto 0;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.feed-card {
  position: relative;
  min-height: 360px;
  overflow: hidden;
  background: #111111;
}

.feed-card.is-wide {
  grid-column: span 2;
}

.feed-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.08) 62%);
}

.feed-card div {
  position: absolute;
  z-index: 2;
  left: 20px;
  right: 20px;
  bottom: 20px;
  color: #fffef2;
}

.feed-card p,
.feed-card span {
  margin: 0;
  color: rgba(255, 254, 242, 0.72);
  line-height: 1.55;
}

.feed-card p {
  font-size: 0.76rem;
  font-weight: 800;
}

.feed-card h2 {
  margin: 8px 0;
  font-size: 1.65rem;
  line-height: 1.04;
}

.cinema-contact div span {
  display: block;
  margin-top: 18px;
  color: rgba(242, 238, 230, 0.62);
  font-size: 1rem;
}

.k-card img {
  position: absolute;
  inset: 0;
}

.k-native strong,
.k-assets h3,
.k-editor h3,
.k-realtime h3 {
  color: #ffffff;
}

.k-stat strong {
  font-size: 3.5rem;
  white-space: nowrap;
}

.k-main h1 {
  max-width: 760px;
  font-size: 4.3rem;
  text-wrap: balance;
}

.work-card img {
  transition: transform 650ms ease;
}

.work-card:hover img {
  transform: scale(1.04);
}

@media (max-width: 980px) {
  .cinema-title-list button {
    font-size: 3rem;
  }

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

@media (max-width: 720px) {
  .font-tweak {
    right: 12px;
    bottom: 12px;
  }

  .cinema-title-list button {
    font-size: 2.28rem;
  }

  .cinema-feed {
    grid-template-columns: 1fr;
  }

  .feed-card.is-wide {
    grid-column: span 1;
  }

  .feed-card {
    min-height: 330px;
  }

  .k-main h1 {
    font-size: 2.8rem;
  }
}

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

/* Final Mateo rebuild: video-led pages, no deck screenshot cards. */
body.font-neue {
  --font-body: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-display: "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-weight-display: 500;
}

body.font-satoshi {
  --font-body: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-display: "Avenir Next", Avenir, "Helvetica Neue", Arial, sans-serif;
  --font-weight-display: 700;
}

body.font-abc {
  --font-body: "SF Pro Text", "Segoe UI", Arial, sans-serif;
  --font-display: "SF Pro Display", "Arial Narrow", Arial, sans-serif;
  --font-weight-display: 600;
}

body.font-inter {
  --font-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-display: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-weight-display: 650;
}

body.font-pretendard {
  --font-body: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --font-display: Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --font-weight-display: 700;
}

.mateo-home {
  font-family: var(--font-body);
}

.mateo-home .film-logo,
.mateo-home .cinema-title-list button,
.mateo-home .a24-feature h2,
.mateo-home .feed-card h2,
.mateo-home .cinema-brief h2,
.mateo-home .k-card h1,
.mateo-home .k-card h2,
.mateo-home .k-card h3,
.mateo-home .k-card strong,
.mateo-home .works-heading h2 {
  font-family: var(--font-display);
  font-weight: var(--font-weight-display);
}

.font-tweak {
  z-index: 80;
}

.font-tweak-panel {
  width: 230px;
}

.font-tweak label {
  font-size: 0.7rem;
}

.font-tweak select {
  min-height: 36px;
}

.cinema-page.mateo-home {
  background: #050505;
  color: #fffef4;
}

.cinema-page.mateo-home .cinema-nav {
  height: 96px;
  padding: 0 42px;
  color: #fffef4;
  mix-blend-mode: normal;
}

.cinema-page.mateo-home .film-logo {
  font-size: 2rem;
  letter-spacing: 0;
}

.cinema-page.mateo-home .cinema-hero {
  min-height: 100svh;
  background: #050505;
}

.cinema-page.mateo-home .cinema-hero-video {
  filter: saturate(0.98) contrast(1.02);
}

.cinema-page.mateo-home .cinema-shade {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.36), rgba(0, 0, 0, 0.03) 46%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.34), transparent 54%);
}

.cinema-page.mateo-home .cinema-copy {
  left: 42px;
  bottom: 48px;
  width: min(860px, calc(100% - 116px));
}

.cinema-page.mateo-home .cinema-title-list li {
  gap: 12px;
  min-height: clamp(2.65rem, 6.4vw, 5.9rem);
}

.cinema-page.mateo-home .cinema-title-list button {
  max-width: min(940px, calc(100vw - 132px));
  color: #fffef4;
  font-size: clamp(3.05rem, 6.35vw, 6.9rem);
  line-height: 0.88;
  font-weight: var(--font-weight-display);
  letter-spacing: 0;
  opacity: 0.92;
}

.cinema-page.mateo-home .cinema-title-list button:hover,
.cinema-page.mateo-home .cinema-title-list button.is-active {
  opacity: 1;
  text-shadow: none;
}

.cinema-page.mateo-home .cinema-title-list span {
  margin-top: 0.3rem;
  color: #fffef4;
  font-size: clamp(0.78rem, 1.25vw, 1rem);
  font-weight: 700;
}

.cinema-page.mateo-home .film-caption {
  color: rgba(255, 254, 244, 0.82);
}

.a24-lower {
  background: #f5f5f1;
  color: #050505;
  padding: 108px 0 0;
}

.a24-lower .cinema-slate,
.a24-lower .cinema-feed,
.a24-lower .cinema-brief,
.a24-lower .cinema-contact {
  width: min(1220px, calc(100% - 92px));
}

.a24-lower .cinema-slate {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 106px;
}

.a24-lower .cinema-tile {
  min-height: 480px;
  border-radius: 0;
  background: #e8e8e5;
}

.a24-lower .cinema-tile video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.95) contrast(1.02);
}

.a24-lower .cinema-tile::after {
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.72), rgba(0, 0, 0, 0.06) 62%);
}

.a24-lower .cinema-tile div {
  left: 20px;
  right: 20px;
  bottom: 22px;
  color: #fffef4;
}

.a24-lower .cinema-tile p,
.a24-lower .cinema-tile span {
  color: rgba(255, 254, 244, 0.76);
}

.a24-lower .cinema-tile h3 {
  color: #fffef4;
  font-size: 1.5rem;
  font-weight: 700;
}

.a24-feature {
  width: min(1120px, calc(100% - 92px));
  margin: 0 auto 112px;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 56px;
  align-items: center;
}

.a24-feature-media {
  aspect-ratio: 1.08 / 1;
  background: #e9e9e6;
  overflow: hidden;
}

.a24-feature-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a24-feature-copy {
  min-height: 520px;
  display: grid;
  align-content: center;
  justify-items: start;
}

.a24-feature-copy p,
.a24-feature-copy a {
  margin: 0;
  color: #777777;
  font-size: 0.78rem;
  font-weight: 500;
  text-transform: uppercase;
}

.a24-feature-copy h2 {
  margin: 20px 0 140px;
  max-width: 440px;
  color: #050505;
  font-size: clamp(2.4rem, 4.2vw, 4.15rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.a24-feature-copy a {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  color: #050505;
  font-size: 1rem;
}

.a24-feature-copy a::before {
  content: "";
  width: 46px;
  height: 1px;
  background: currentColor;
}

.a24-feature-copy a::after {
  content: "";
  width: 12px;
  height: 12px;
  border-right: 1px solid currentColor;
  border-top: 1px solid currentColor;
  transform: rotate(45deg);
  margin-left: -34px;
}

.a24-lower .cinema-feed {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0 auto 118px;
}

.a24-lower .feed-card {
  position: relative;
  min-height: 310px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  background: transparent;
  overflow: visible;
}

.a24-lower .feed-card::after {
  display: none;
}

.a24-lower .feed-card p,
.a24-lower .feed-card span {
  margin: 0;
  color: #777777;
  line-height: 1.58;
}

.a24-lower .feed-card p {
  font-size: 0.75rem;
  font-weight: 500;
}

.a24-lower .feed-card h2 {
  margin: 40px 0 16px;
  color: #050505;
  font-size: clamp(1.7rem, 2.5vw, 2.45rem);
  line-height: 1.02;
}

.a24-lower .cinema-brief {
  padding: 84px 0 96px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.a24-lower .cinema-brief h2,
.a24-lower .cinema-brief li,
.a24-lower .cinema-contact p,
.a24-lower .cinema-contact a {
  color: #050505;
}

.a24-lower .cinema-brief li {
  border-color: rgba(0, 0, 0, 0.18);
}

.a24-lower .cinema-brief li span,
.a24-lower .cinema-contact div span {
  color: #777777;
}

.a24-lower .cinema-contact {
  min-height: 330px;
  padding: 76px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  color: #050505;
}

.a24-lower .cinema-contact a {
  border-color: rgba(0, 0, 0, 0.22);
}

.studio-page.mateo-home {
  background: #ffffff;
  color: #050505;
}

.studio-page.mateo-home .studio-nav {
  height: 70px;
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) 230px;
  padding: 0 56px;
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #dedede;
}

.studio-page.mateo-home .studio-brand {
  font-family: var(--font-display);
  font-weight: 800;
}

.studio-page.mateo-home .krea-shell {
  min-height: 100svh;
  padding: 118px 0 56px;
  background: #ffffff;
}

.studio-page.mateo-home .krea-models {
  width: min(1120px, calc(100% - 96px));
  margin: 0 auto 52px;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 24px;
  color: #a4a4a4;
  font-family: var(--font-display);
}

.studio-page.mateo-home .krea-models span {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  font-size: 1.35rem;
  font-weight: 800;
  white-space: nowrap;
}

.studio-page.mateo-home .krea-models i {
  width: 24px;
  height: 24px;
  border: 0;
  border-radius: 0;
  transform: rotate(-45deg);
}

.studio-page.mateo-home .krea-models i::before {
  content: "";
  display: block;
  width: 22px;
  height: 5px;
  margin-top: 9px;
  background: currentColor;
  border-radius: 999px;
}

.studio-page.mateo-home .krea-models i::after {
  content: "";
  display: block;
  width: 9px;
  height: 9px;
  margin-top: -7px;
  background: currentColor;
  border-radius: 50%;
}

.studio-page.mateo-home .krea-bento {
  width: min(1120px, calc(100vw - 96px));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(6, 108px);
  gap: 12px;
  overflow: hidden;
}

.studio-page.mateo-home .k-card {
  position: relative;
  min-height: 0;
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: center;
  padding: 18px;
  border-radius: 8px;
  background: #f0f0f0;
  color: #050505;
  overflow: hidden;
  text-align: center;
}

.studio-page.mateo-home .k-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-page.mateo-home .k-card::after {
  display: none;
}

.studio-page.mateo-home .k-card:has(video)::before {
  content: "";
  position: absolute;
  z-index: 1;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.44), rgba(0, 0, 0, 0.06) 58%);
}

.studio-page.mateo-home .k-card h1,
.studio-page.mateo-home .k-card h2,
.studio-page.mateo-home .k-card h3,
.studio-page.mateo-home .k-card p,
.studio-page.mateo-home .k-card strong,
.studio-page.mateo-home .k-card .k-area-label,
.studio-page.mateo-home .k-card .clock,
.studio-page.mateo-home .k-card div {
  margin: 0;
  position: relative;
  z-index: 2;
}

.studio-page.mateo-home .k-card video ~ h1,
.studio-page.mateo-home .k-card video ~ h2,
.studio-page.mateo-home .k-card video ~ h3,
.studio-page.mateo-home .k-card video ~ .k-area-label,
.studio-page.mateo-home .k-card video ~ p {
  color: #ffffff;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.38);
}

.studio-page.mateo-home .k-area-label {
  display: inline-flex;
  max-width: 100%;
  padding: 5px 8px;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  color: #5d5d5d;
  font-size: 0.58rem;
  font-weight: 850;
  line-height: 1;
  text-transform: none;
  white-space: normal;
}

.studio-page.mateo-home .k-card:has(video) .k-area-label {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(0, 0, 0, 0.2);
  color: #ffffff;
}

.studio-page.mateo-home .k-card h1 {
  font-size: clamp(3rem, 5.2vw, 4.8rem);
  line-height: 0.92;
}

.studio-page.mateo-home .k-card h2 {
  font-size: clamp(1.65rem, 2.5vw, 2.55rem);
  line-height: 0.98;
}

.studio-page.mateo-home .k-card h3 {
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.02;
}

.studio-page.mateo-home .k-card p {
  max-width: 320px;
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.34;
  word-break: keep-all;
}

.studio-page.mateo-home .k-card strong {
  font-size: clamp(3.1rem, 5vw, 5rem);
  line-height: 0.9;
  white-space: nowrap;
}

.studio-page.mateo-home .k-dad { grid-column: 1 / 6; grid-row: 1 / 3; }
.studio-page.mateo-home .k-stat { grid-column: 6 / 8; grid-row: 1 / 3; }
.studio-page.mateo-home .k-story { grid-column: 8 / 13; grid-row: 1 / 3; }
.studio-page.mateo-home .k-mega { grid-column: 1 / 4; grid-row: 3 / 5; }
.studio-page.mateo-home .k-second { grid-column: 4 / 8; grid-row: 3 / 5; }
.studio-page.mateo-home .k-mateo { grid-column: 8 / 10; grid-row: 3 / 5; }
.studio-page.mateo-home .k-core { grid-column: 10 / 13; grid-row: 3 / 5; }
.studio-page.mateo-home .k-areas { grid-column: 1 / 3; grid-row: 5 / 7; background: #111111; color: #ffffff; }
.studio-page.mateo-home .k-vfx { grid-column: 3 / 5; grid-row: 5 / 7; }
.studio-page.mateo-home .k-project { grid-column: 5 / 8; grid-row: 5 / 7; }
.studio-page.mateo-home .k-lines { grid-column: 8 / 10; grid-row: 5 / 7; }
.studio-page.mateo-home .k-colly { grid-column: 10 / 13; grid-row: 5 / 7; }

.studio-page.mateo-home .k-mateo,
.studio-page.mateo-home .k-colly {
  align-content: center;
  justify-items: center;
  text-align: center;
}

.studio-page.mateo-home .k-mateo p,
.studio-page.mateo-home .k-colly p {
  font-size: 0.8rem;
  font-weight: 700;
}

.studio-page.mateo-home .k-lines div {
  display: flex;
  align-items: end;
  gap: 10px;
  margin: 8px 0 0;
}

.studio-page.mateo-home .k-lines div span {
  width: 8px;
  border-radius: 999px;
  background: #111111;
}

.studio-page.mateo-home .k-lines div span:nth-child(1) { height: 26px; }
.studio-page.mateo-home .k-lines div span:nth-child(2) { height: 40px; }
.studio-page.mateo-home .k-lines div span:nth-child(3) { height: 56px; }
.studio-page.mateo-home .k-lines div span:nth-child(4) { height: 44px; }
.studio-page.mateo-home .k-lines div span:nth-child(5) { height: 32px; }

.studio-page.mateo-home .k-vfx h3,
.studio-page.mateo-home .k-lines h3 {
  font-size: clamp(1.28rem, 1.7vw, 1.62rem);
}

.studio-page.mateo-home .k-vfx p,
.studio-page.mateo-home .k-lines p {
  max-width: 160px;
  font-size: 0.72rem;
  line-height: 1.25;
}

.studio-page.mateo-home .vfx-diagram {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: min(150px, 100%);
  margin: 6px 0 2px;
}

.studio-page.mateo-home .vfx-diagram::before {
  content: "";
  position: absolute;
  left: 10px;
  right: 10px;
  top: 50%;
  height: 2px;
  background: rgba(0, 0, 0, 0.2);
}

.studio-page.mateo-home .vfx-diagram span {
  position: relative;
  width: 24px;
  height: 24px;
  border: 2px solid #111111;
  border-radius: 50%;
  background: #f0f0f0;
}

.studio-page.mateo-home .vfx-diagram span:nth-child(2) {
  background: #f4c61f;
}

.studio-page.mateo-home .vfx-diagram span:nth-child(4) {
  background: #111111;
}

.studio-page.mateo-home .clock {
  width: 104px;
  height: 104px;
  margin: 18px auto 0;
  border: 1px solid rgba(0, 0, 0, 0.22);
  border-radius: 50%;
  background:
    linear-gradient(90deg, transparent 49%, rgba(0, 0, 0, 0.18) 50%, transparent 51%),
    linear-gradient(0deg, transparent 49%, rgba(0, 0, 0, 0.18) 50%, transparent 51%),
    #ffffff;
}

.studio-page.mateo-home .clock::before,
.studio-page.mateo-home .clock::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 2px;
  border-radius: 999px;
  background: #111111;
  transform-origin: bottom center;
}

.studio-page.mateo-home .clock::before {
  height: 38px;
  transform: translate(-50%, -100%) rotate(-28deg);
}

.studio-page.mateo-home .clock::after {
  height: 48px;
  background: #f1b400;
  transform: translate(-50%, -100%) rotate(-8deg);
}

.studio-page.mateo-home .studio-works {
  width: min(1120px, calc(100% - 96px));
  padding: 64px 0 110px;
}

.studio-page.mateo-home .work-masonry {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 280px;
  gap: 12px;
}

.studio-page.mateo-home .work-card {
  min-height: 0;
  border-radius: 8px;
}

.studio-page.mateo-home .work-card.wide {
  grid-column: span 2;
  grid-row: span 2;
}

.studio-page.mateo-home .work-card video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 900px) {
  .cinema-page.mateo-home .cinema-nav {
    height: 72px;
    padding: 0 18px;
  }

  .cinema-page.mateo-home .cinema-copy {
    left: 18px;
    bottom: 34px;
    width: calc(100% - 44px);
  }

  .cinema-page.mateo-home .cinema-title-list button {
    max-width: calc(100vw - 68px);
    font-size: clamp(2.35rem, 12vw, 4.4rem);
  }

  .a24-lower {
    padding-top: 46px;
  }

  .a24-lower .cinema-slate,
  .a24-lower .cinema-feed,
  .a24-lower .cinema-brief,
  .a24-lower .cinema-contact,
  .a24-feature {
    width: calc(100% - 28px);
  }

  .a24-lower .cinema-slate,
  .a24-lower .cinema-feed,
  .a24-feature {
    grid-template-columns: 1fr;
  }

  .a24-lower .cinema-tile {
    min-height: 380px;
  }

  .a24-feature {
    gap: 24px;
    margin-bottom: 70px;
  }

  .a24-feature-copy {
    min-height: auto;
  }

  .a24-feature-copy h2 {
    margin-bottom: 56px;
  }

  .studio-page.mateo-home .studio-nav {
    grid-template-columns: 130px minmax(0, 1fr);
    padding: 0 16px;
  }

  .studio-page.mateo-home .studio-nav nav {
    justify-content: flex-end;
    overflow: hidden;
  }

  .studio-page.mateo-home .studio-nav nav a:nth-child(n+3),
  .studio-page.mateo-home .studio-actions {
    display: none;
  }

  .studio-page.mateo-home .krea-shell {
    padding: 104px 0 56px;
  }

  .studio-page.mateo-home .krea-models {
    width: calc(100% - 28px);
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
    margin-bottom: 34px;
  }

  .studio-page.mateo-home .krea-models span {
    font-size: 0.92rem;
  }

  .studio-page.mateo-home .krea-bento {
    width: calc(100% - 28px);
    grid-template-columns: 1fr;
    grid-template-rows: none;
    grid-auto-rows: auto;
    gap: 10px;
    overflow: visible;
  }

  .studio-page.mateo-home .k-card {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 168px;
    padding: 16px;
  }

  .studio-page.mateo-home .k-dad,
  .studio-page.mateo-home .k-mega,
  .studio-page.mateo-home .k-story,
  .studio-page.mateo-home .k-second,
  .studio-page.mateo-home .k-project {
    min-height: 260px;
  }

  .studio-page.mateo-home .k-card h1 {
    font-size: clamp(3.1rem, 16vw, 4.4rem);
  }

  .studio-page.mateo-home .k-card h2,
  .studio-page.mateo-home .k-card h3 {
    font-size: 1.45rem;
  }

  .studio-page.mateo-home .k-card strong {
    font-size: 3.35rem;
  }

  .studio-page.mateo-home .studio-works {
    width: calc(100% - 28px);
  }

  .studio-page.mateo-home .work-masonry {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .studio-page.mateo-home .work-card.wide {
    grid-column: auto;
    grid-row: span 2;
  }
}

/* PDF-informed content system. */
body.font-suit {
  --font-body: SUIT, Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --font-display: SUIT, Pretendard, "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  --font-weight-display: 760;
}

body.font-noto {
  --font-body: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --font-display: "Noto Sans KR", "Apple SD Gothic Neo", "Malgun Gothic", Arial, sans-serif;
  --font-weight-display: 700;
}

.mateo-home,
.mateo-home * {
  letter-spacing: 0;
}

.mateo-home .cinema-contact p,
.mateo-home .cinema-contact span,
.mateo-home .cinema-contact a {
  font-family: var(--font-body);
}

.company-profile,
.business-lab {
  width: min(1220px, calc(100% - 92px));
  margin: 0 auto;
}

.company-profile.reveal,
.business-lab.reveal {
  opacity: 1;
  transform: none;
}

.company-profile {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.2fr);
  gap: 72px;
  padding: 0 0 116px;
}

.profile-lede {
  padding-top: 4px;
}

.profile-lede p,
.profile-grid p,
.business-lab-head p,
.business-copy > p,
.business-media div p {
  margin: 0;
  color: #777777;
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.35;
  text-transform: uppercase;
}

.profile-lede h2 {
  margin: 18px 0 22px;
  max-width: 520px;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.8rem);
  font-weight: var(--font-weight-display);
  line-height: 0.92;
}

.profile-lede span {
  display: block;
  max-width: 580px;
  color: #555555;
  font-size: 1.08rem;
  line-height: 1.76;
}

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

.profile-grid article {
  min-height: 240px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.2);
  background: #eeeeea;
}

.profile-grid h3 {
  margin: 22px 0;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.2vw, 3.2rem);
  font-weight: var(--font-weight-display);
  line-height: 0.98;
}

.profile-grid span {
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.58;
}

.business-lab {
  padding: 0 0 116px;
}

.business-lab-head {
  display: block;
  padding: 88px 0 52px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.business-lab-head h2 {
  max-width: 980px;
  margin: 16px 0 0;
}

.business-lab-head span {
  display: block;
  max-width: 620px;
  margin-top: 22px;
}

.business-lab-head h2 {
  margin: 12px 0 0;
  max-width: 500px;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 6vw, 6.6rem);
  font-weight: var(--font-weight-display);
  line-height: 0.9;
}

.business-lab-head span {
  max-width: 520px;
  justify-self: end;
  color: #555555;
  font-size: 1.08rem;
  line-height: 1.72;
}

.business-tabs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.business-tabs button {
  min-height: 138px;
  display: grid;
  align-content: space-between;
  justify-items: start;
  padding: 18px 18px 20px;
  border: 0;
  border-right: 1px solid rgba(0, 0, 0, 0.12);
  background: transparent;
  color: #050505;
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.15;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease;
}

.business-tabs button:last-child {
  border-right: 0;
}

.business-tabs button span {
  color: #888888;
  font-size: 0.92rem;
  font-weight: 600;
}

.business-tabs button:hover,
.business-tabs button.is-active {
  background: #050505;
  color: #fffef4;
}

.business-tabs button:hover span,
.business-tabs button.is-active span {
  color: rgba(255, 254, 244, 0.66);
}

.business-panel {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(340px, 1fr);
  gap: 44px;
  padding: 54px 0 0;
}

.business-copy {
  display: grid;
  align-content: start;
}

.business-copy h3 {
  margin: 14px 0 20px;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4.2vw, 4.6rem);
  font-weight: var(--font-weight-display);
  line-height: 0.96;
}

.business-copy > p:last-of-type {
  margin: 0;
  color: #333333;
  font-size: 1.05rem;
  line-height: 1.76;
}

.business-scope {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.business-scope span {
  padding: 8px 11px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  border-radius: 999px;
  color: #333333;
  font-size: 0.78rem;
  font-weight: 800;
}

.business-media {
  position: relative;
  min-height: 520px;
  overflow: hidden;
  background: #111111;
}

.business-media video,
.business-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.business-media video[hidden],
.business-media img[hidden] {
  display: none;
}

.business-media img[src$="crexai-emblem.png"] {
  object-fit: contain;
  padding: 22%;
  background: #111111;
}

.business-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.08) 62%);
}

.business-media div {
  position: absolute;
  z-index: 2;
  left: 24px;
  right: 24px;
  bottom: 24px;
  color: #fffef4;
}

.business-media div p,
.business-media div span {
  color: rgba(255, 254, 244, 0.72);
}

.business-media h4 {
  margin: 10px 0 10px;
  color: #fffef4;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.3vw, 3.6rem);
  font-weight: var(--font-weight-display);
  line-height: 0.95;
}

.business-media div span {
  display: block;
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.55;
}

.business-works {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.business-works button {
  min-height: 156px;
  display: grid;
  align-content: space-between;
  justify-items: start;
  padding: 16px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  background: transparent;
  color: #050505;
  text-align: left;
  cursor: pointer;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.business-works button:hover,
.business-works button.is-active {
  transform: translateY(-2px);
  background: #050505;
  color: #fffef4;
}

.business-works span,
.business-works em {
  color: #777777;
  font-style: normal;
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.4;
}

.business-works button:hover span,
.business-works button:hover em,
.business-works button.is-active span,
.business-works button.is-active em {
  color: rgba(255, 254, 244, 0.66);
}

.business-works strong {
  display: block;
  margin: 18px 0 8px;
  font-family: var(--font-display);
  font-size: 1.25rem;
  line-height: 1.08;
}

@media (max-width: 980px) {
  .company-profile,
  .business-lab {
    width: calc(100% - 28px);
  }

  .company-profile,
  .business-lab-head,
  .business-panel {
    grid-template-columns: 1fr;
  }

  .profile-grid,
  .business-tabs,
  .business-works {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-lab-head {
    gap: 22px;
  }

  .business-lab-head span {
    justify-self: start;
  }

  .business-media {
    min-height: 420px;
  }
}

@media (max-width: 620px) {
  .company-profile {
    gap: 34px;
    padding-bottom: 72px;
  }

  .profile-grid,
  .business-tabs,
  .business-works {
    grid-template-columns: 1fr;
  }

  .business-tabs button {
    min-height: 86px;
  }

  .business-media {
    min-height: 360px;
  }
}

/* A24 page section refresh. */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 84px;
}

.cinema-page.mateo-home .cinema-nav {
  pointer-events: none;
}

.cinema-page.mateo-home .film-logo,
.cinema-page.mateo-home .film-search,
.cinema-page.mateo-home .liquid-menu {
  pointer-events: auto;
}

.cinema-page.mateo-home .brand-flip {
  width: 210px;
  min-height: 58px;
  display: grid;
  justify-items: center;
  align-content: center;
  gap: 6px;
  perspective: 900px;
  text-decoration: none;
}

.brand-flip-stage {
  position: relative;
  width: 132px;
  height: 34px;
  display: block;
  transform-style: preserve-3d;
  animation: mateoCrexFlip 6.8s cubic-bezier(0.72, 0, 0.18, 1) infinite;
}

.brand-face {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  color: #fffef4;
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 850;
  line-height: 1;
  backface-visibility: hidden;
  transform-style: preserve-3d;
  text-shadow:
    0 1px 0 rgba(255, 255, 255, 0.2),
    0 2px 0 rgba(255, 255, 255, 0.1),
    0 4px 0 rgba(0, 0, 0, 0.22),
    0 8px 18px rgba(0, 0, 0, 0.28);
}

.brand-face::after {
  display: none;
  position: absolute;
  inset: 0;
  color: rgba(255, 254, 244, 0.14);
  transform: translateZ(-8px) translateY(2px);
  filter: blur(1px);
}

.brand-face-front::after {
  content: "MATEO";
}

.brand-face-front {
  transform: translateZ(12px);
}

.brand-face-back::after {
  content: "CREX";
}

.brand-face-back {
  transform: rotateY(180deg) translateZ(12px);
}

.brand-tagline {
  position: relative;
  width: 172px;
  height: 0.82rem;
  display: block;
  color: rgba(255, 254, 244, 0.78);
  font-family: var(--font-body);
  font-size: 0.68rem;
  font-weight: 700;
  line-height: 1;
  text-transform: none;
}

.brand-line {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  white-space: nowrap;
  transform: translateY(6px);
  opacity: 0;
  filter: blur(4px);
}

.brand-line-mateo {
  animation: brandMateoLine 6.8s cubic-bezier(0.72, 0, 0.18, 1) infinite;
}

.brand-line-crex {
  animation: brandCrexLine 6.8s cubic-bezier(0.72, 0, 0.18, 1) infinite;
}

@keyframes mateoCrexFlip {
  0%, 38% { transform: rotateY(0deg); }
  50%, 88% { transform: rotateY(180deg); }
  100% { transform: rotateY(360deg); }
}

@keyframes brandMateoLine {
  0%, 36% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  46%, 90% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(-6px);
  }
  100% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
}

@keyframes brandCrexLine {
  0%, 44% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(6px);
  }
  54%, 86% {
    opacity: 1;
    filter: blur(0);
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    filter: blur(4px);
    transform: translateY(-6px);
  }
}

.cinema-page.mateo-home .cinema-nav .liquid-menu {
  position: fixed;
  z-index: 60;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 22px;
  display: grid;
  grid-template-columns: repeat(6, minmax(76px, 1fr));
  gap: 5px;
  width: min(720px, calc(100vw - 48px));
  min-height: 0;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background:
    radial-gradient(circle at 16% 0%, rgba(255, 255, 255, 0.7), transparent 28%),
    radial-gradient(circle at 78% 110%, rgba(159, 206, 255, 0.22), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.34), rgba(255, 255, 255, 0.08) 45%, rgba(255, 255, 255, 0.18)),
    rgba(17, 18, 22, 0.34);
  box-shadow:
    0 24px 80px rgba(0, 0, 0, 0.34),
    0 8px 22px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.62),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(26px) saturate(1.65) contrast(1.05);
  -webkit-backdrop-filter: blur(26px) saturate(1.65) contrast(1.05);
}

.cinema-page.mateo-home .cinema-nav .liquid-menu::before,
.cinema-page.mateo-home .cinema-nav .liquid-menu::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.cinema-page.mateo-home .cinema-nav .liquid-menu::before {
  inset: 1px;
  border-radius: inherit;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.42), transparent 36%),
    linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0.58;
  mix-blend-mode: screen;
}

.cinema-page.mateo-home .cinema-nav .liquid-menu::after {
  width: 130px;
  height: 130px;
  left: 8%;
  top: -74px;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.52), transparent 66%);
  opacity: 0.42;
  filter: blur(14px);
  animation: liquidGlint 8.4s ease-in-out infinite alternate;
}

.cinema-page.mateo-home .cinema-nav .liquid-menu a {
  position: relative;
  z-index: 1;
  display: grid;
  min-height: 39px;
  align-items: center;
  justify-items: center;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 254, 244, 0.78);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0;
  text-decoration: none;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.cinema-page.mateo-home .cinema-nav .liquid-menu a:hover,
.cinema-page.mateo-home .cinema-nav .liquid-menu a.is-active {
  border-color: rgba(255, 255, 255, 0.5);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.96), rgba(255, 255, 255, 0.68)),
    rgba(255, 255, 255, 0.58);
  color: #050505;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.92),
    inset 0 -8px 18px rgba(0, 0, 0, 0.05);
  text-shadow: none;
  transform: translateY(-1px);
}

.cinema-page.mateo-home .font-tweak {
  bottom: 96px;
}

.cinema-page.mateo-home .cinema-copy {
  bottom: 112px;
}

.cinema-page.mateo-home .film-arrow {
  bottom: 112px;
}

.cinema-page.mateo-home .film-caption {
  bottom: 96px;
}

@keyframes liquidGlint {
  0% { transform: translateX(0) scale(1); }
  100% { transform: translateX(460px) scale(1.22); }
}

.a24-lower {
  padding: 0;
}

.page-section {
  min-height: 100svh;
  scroll-margin-top: 0;
}

.section-inner {
  width: min(1180px, calc(100% - 92px));
  margin: 0 auto;
}

.section-head {
  display: block;
  margin-bottom: 54px;
}

.section-head h2 {
  margin: 16px 0 0;
  max-width: 980px;
  color: inherit;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 5vw, 5.6rem);
  font-weight: var(--font-weight-display);
  line-height: 0.94;
}

.section-head span {
  display: block;
  max-width: 620px;
  margin-top: 22px;
  color: #5d5d5d;
  font-size: 1.05rem;
  line-height: 1.72;
}

.about-section {
  display: grid;
  align-items: center;
  padding: 116px 0;
  background:
    radial-gradient(circle at 76% 22%, rgba(50, 110, 150, 0.18), transparent 32%),
    linear-gradient(180deg, #090915, #0b0d16);
  color: #f7f7ff;
}

.about-inner > .eyebrow,
.about-section .eyebrow {
  color: #9a82ff;
}

.about-section h2 {
  margin: 16px 0 30px;
  max-width: 980px;
  color: #f7f7ff;
  font-family: var(--font-display);
  font-size: clamp(3rem, 6vw, 6.5rem);
  font-weight: var(--font-weight-display);
  line-height: 0.92;
  text-transform: uppercase;
}

.about-section h2 span {
  color: #8f7bff;
}

.about-section h2 strong {
  color: #ffd447;
  font-weight: inherit;
}

.about-quote {
  margin: 0 0 36px;
  color: #48eee6;
  font-family: Georgia, serif;
  font-size: clamp(1.25rem, 1.8vw, 1.65rem);
  font-style: italic;
}

.about-card {
  max-width: 1000px;
  padding: clamp(26px, 4vw, 48px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.about-card h3 {
  margin: 0 0 26px;
  color: #f7f7ff;
  font-size: clamp(1.5rem, 2.4vw, 2.15rem);
  line-height: 1.25;
}

.about-card p {
  margin: 0 0 18px;
  color: rgba(247, 247, 255, 0.78);
  font-size: 1.05rem;
  line-height: 1.76;
}

.about-card details {
  margin-top: 18px;
}

.about-card summary {
  cursor: pointer;
  color: #ffd447;
  font-size: 0.86rem;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-section,
.press-section {
  display: grid;
  align-items: center;
  padding: 116px 0;
  background: #f5f5f1;
  color: #050505;
}

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

.founder-grid article {
  min-height: 310px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  background: #eeeeea;
}

.founder-grid p,
.press-rows p,
.contact-copy .eyebrow {
  margin: 0;
  color: #777777;
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.founder-grid h3 {
  margin: 32px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3.1rem);
  line-height: 0.96;
}

.founder-grid span {
  color: #555555;
  font-size: 0.98rem;
  line-height: 1.62;
}

.crexian-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.crexian-strip span {
  min-height: 84px;
  display: grid;
  place-items: center;
  padding: 14px;
  border: 1px solid rgba(0, 0, 0, 0.14);
  color: #050505;
  font-size: 0.9rem;
  font-weight: 850;
  text-align: center;
}

.business-lab.page-section {
  display: grid;
  align-content: center;
  min-height: 100svh;
  padding: 116px 0;
}

.business-media {
  min-height: auto;
  aspect-ratio: 16 / 10;
}

.business-media video,
.business-media img {
  object-fit: contain;
  background: #111111;
}

.business-diagram {
  position: absolute;
  inset: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: inherit;
  background:
    radial-gradient(circle at 52% 44%, rgba(255, 255, 255, 0.12), transparent 30%),
    linear-gradient(140deg, #101010, #050505);
}

.business-diagram[hidden] {
  display: none;
}

.platform-orbit {
  position: relative;
  left: auto;
  right: auto;
  bottom: auto;
  z-index: 1;
  width: min(78%, 520px);
  aspect-ratio: 1 / 0.62;
  transform: translateY(-76px);
}

.platform-orbit::before,
.platform-orbit::after {
  content: "";
  position: absolute;
  inset: 18% 8%;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
}

.platform-orbit::after {
  inset: 28% 20%;
  transform: rotate(-12deg);
}

.business-diagram .platform-orbit span {
  position: absolute;
  display: grid;
  place-items: center;
  width: 96px;
  height: 96px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: #050505;
  font-size: 0.78rem;
  font-weight: 850;
  text-align: center;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
}

.business-diagram .platform-orbit span:nth-child(1) { left: 0; top: 36%; }
.business-diagram .platform-orbit span:nth-child(2) { left: 32%; top: 0; }
.business-diagram .platform-orbit span:nth-child(3) { right: 4%; top: 30%; }
.business-diagram .platform-orbit span:nth-child(4) { left: 42%; bottom: 0; background: #ffd447; }

.press-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.press-rows article {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: 30px;
  align-items: start;
  min-height: 0;
  padding: 28px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.press-rows h3 {
  margin: 0;
  font-size: clamp(1.28rem, 2.2vw, 2.2rem);
  line-height: 1.08;
}

.press-rows h3 a {
  color: inherit;
  text-decoration: none;
}

.press-rows h3 a:hover {
  color: #777777;
}

.press-rows span {
  grid-column: 2;
  color: #666666;
  font-size: 1rem;
  line-height: 1.62;
}

.press-more {
  margin-top: 28px;
}

.press-more summary {
  width: fit-content;
  cursor: pointer;
  color: #050505;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.press-more .press-rows {
  margin-top: 24px;
}

.press-section {
  align-items: start;
}

.about-section {
  align-items: start;
  padding: 92px 0 168px;
  background: #f5f5f1;
  color: #050505;
}

.a24-editorial-feed {
  display: grid;
  gap: clamp(82px, 10vw, 132px);
}

.a24-feature {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(320px, 0.82fr);
  gap: clamp(48px, 6vw, 76px);
  align-items: center;
}

.a24-feature-reverse {
  grid-template-columns: minmax(320px, 0.78fr) minmax(0, 1fr);
}

.a24-feature-media {
  position: relative;
  aspect-ratio: 1 / 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: #ededeb;
}

.a24-feature-media-poster {
  aspect-ratio: 1 / 1;
  padding: 0;
}

.a24-feature-media video,
.a24-feature-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.a24-feature-media-poster img {
  position: absolute;
  inset: 48px;
  width: calc(100% - 96px);
  height: calc(100% - 96px);
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.a24-feature-copy {
  display: grid;
  align-content: center;
  justify-items: start;
  min-height: 420px;
}

.a24-kicker {
  margin: 0 0 24px;
  color: #8a8a8a;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: uppercase;
}

.a24-feature-copy h2,
.a24-feature-copy h3 {
  margin: 0;
  max-width: 520px;
  color: #050505;
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 4.3rem);
  font-weight: 650;
  line-height: 0.98;
  letter-spacing: 0;
}

.a24-feature-copy h3 {
  font-size: clamp(2rem, 3.4vw, 3.65rem);
}

.a24-feature-copy > p:not(.a24-kicker) {
  max-width: 560px;
  margin: 28px 0 0;
  color: #4f4f4f;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
  line-height: 1.76;
}

.a24-cta {
  display: inline-grid;
  grid-auto-flow: column;
  grid-template-columns: 58px auto;
  gap: 22px;
  align-items: center;
  margin-top: 56px;
  color: #050505;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  font-weight: 750;
  text-decoration: none;
  text-transform: uppercase;
}

.a24-feature-copy .a24-cta::before,
.a24-feature-copy .a24-cta::after {
  content: none;
}

.a24-cta span {
  position: relative;
  width: 58px;
  height: 1px;
  background: #050505;
}

.a24-cta span::after {
  content: "";
  position: absolute;
  right: 0;
  top: 50%;
  width: 10px;
  height: 10px;
  border-top: 1px solid #050505;
  border-right: 1px solid #050505;
  transform: translateY(-50%) rotate(45deg);
}

.a24-investment {
  display: grid;
  gap: 10px;
  margin-top: 34px;
  padding-top: 26px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.a24-investment span {
  color: #8a8a8a;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.a24-investment strong {
  color: #050505;
  font-size: clamp(1.16rem, 1.65vw, 1.55rem);
  line-height: 1.25;
}

.a24-feature .about-expand {
  width: 100%;
  margin-top: 28px;
  padding-top: 24px;
}

.press-slate {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 12px;
  margin-top: 44px;
}

.press-slate article {
  position: relative;
  min-height: 280px;
  display: grid;
  align-content: end;
  gap: 6px;
  padding: 20px;
  overflow: hidden;
  color: #fffef4;
  background: #111111;
}

.press-slate video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.press-slate article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.75), rgba(0, 0, 0, 0.04));
}

.press-slate span,
.press-slate strong {
  position: relative;
  z-index: 1;
}

.press-slate span {
  color: rgba(255, 254, 244, 0.72);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.press-slate strong {
  font-size: clamp(1.5rem, 2.6vw, 2.8rem);
  line-height: 1;
}

.contact-section {
  display: grid;
  align-items: center;
  padding: 118px 0;
  background: #050505;
  color: #fffef4;
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(440px, 1fr);
  gap: 60px;
}

.contact-copy h2 {
  margin: 18px 0 24px;
  max-width: 620px;
  color: #fffef4;
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.8rem);
  line-height: 0.95;
}

.contact-copy span {
  display: block;
  max-width: 560px;
  color: rgba(255, 254, 244, 0.68);
  font-size: 1.05rem;
  line-height: 1.76;
}

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

.contact-cards article {
  min-height: 390px;
  display: grid;
  align-content: space-between;
  padding: 28px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
}

.contact-cards img {
  max-width: 174px;
  max-height: 76px;
  object-fit: contain;
  filter: invert(1);
}

.contact-cards article:nth-child(2) img {
  max-width: 96px;
}

.contact-cards h3 {
  margin: 54px 0 14px;
  color: #fffef4;
  font-size: clamp(1.5rem, 2.2vw, 2.25rem);
  line-height: 1;
}

.contact-cards p {
  margin: 0 0 28px;
  color: rgba(255, 254, 244, 0.66);
  font-size: 0.98rem;
  line-height: 1.58;
}

.contact-cards a {
  color: #fffef4;
  font-size: 0.94rem;
  font-weight: 800;
  text-decoration: none;
}

.contact-meta {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 18px;
  color: rgba(255, 254, 244, 0.58);
  font-size: 0.86rem;
}

.contact-meta span {
  padding: 9px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
}

@media (min-width: 981px) {
  .a24-lower .section-inner {
    box-sizing: border-box;
    padding-left: 132px;
  }

  .a24-lower .business-lab.page-section {
    box-sizing: border-box;
    padding: 116px 0 116px 132px;
  }
}

@media (max-width: 980px) {
  .cinema-page.mateo-home .cinema-nav .liquid-menu {
    left: 14px;
    right: 14px;
    top: auto;
    bottom: 14px;
    width: auto;
    min-height: 0;
    grid-template-columns: repeat(6, minmax(0, 1fr));
    border-radius: 18px;
  }

  .cinema-page.mateo-home .cinema-nav .liquid-menu a {
    min-height: 34px;
    padding: 0 4px;
    justify-items: center;
    font-size: 0.62rem;
  }

  .section-inner {
    width: calc(100% - 28px);
  }

  .section-head,
  .about-editorial,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .founder-grid,
  .crexian-strip,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .press-rows article {
    grid-template-columns: 1fr;
    gap: 12px;
    padding: 26px 0;
  }

  .press-slate {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .cinema-page.mateo-home .brand-flip {
    width: 160px;
  }

  .brand-tagline {
    display: none;
  }

  .cinema-page.mateo-home .cinema-nav .liquid-menu {
    gap: 4px;
    padding: 8px;
  }

  .about-section,
  .founder-section,
  .press-section,
  .contact-section,
  .business-lab.page-section {
    padding: 118px 0 104px;
  }

  .cinema-page.mateo-home .cinema-nav {
    height: 64px;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.34), transparent);
  }

  .brand-flip-stage {
    width: 108px;
    height: 28px;
  }

  .brand-face {
    font-size: 1.55rem;
  }

  .founder-grid,
  .crexian-strip,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .business-media {
    aspect-ratio: 1 / 1;
  }

  .platform-orbit {
    width: 88%;
    transform: translateY(-38px);
  }

  .business-diagram .platform-orbit span {
    width: 88px;
    height: 88px;
    font-size: 0.66rem;
  }
}

/* Mateo A24 refinement: bottom glass nav, clean about, CREXian, adaptive business media. */
.cinema-page.mateo-home .cinema-nav {
  height: 96px;
  mix-blend-mode: normal;
  pointer-events: none;
}

.cinema-page.mateo-home .film-search {
  display: none;
}

.cinema-page.mateo-home .film-logo {
  mix-blend-mode: difference;
}

.cinema-page.mateo-home .cinema-nav .liquid-menu {
  position: fixed;
  z-index: 70;
  left: 50%;
  right: auto;
  top: auto;
  bottom: 18px;
  width: min(880px, calc(100vw - 44px));
  min-height: 0;
  display: grid;
  grid-template-columns: repeat(7, minmax(70px, 1fr));
  gap: 5px;
  padding: 7px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background:
    radial-gradient(circle at 14% 0%, rgba(255, 255, 255, 0.72), transparent 29%),
    radial-gradient(circle at 84% 120%, rgba(145, 190, 255, 0.24), transparent 36%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.38), rgba(255, 255, 255, 0.08) 48%, rgba(255, 255, 255, 0.18)),
    rgba(18, 20, 26, 0.36);
  box-shadow:
    0 26px 90px rgba(0, 0, 0, 0.34),
    0 8px 24px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.66),
    inset 0 -1px 0 rgba(255, 255, 255, 0.18);
  transform: translateX(-50%);
  backdrop-filter: blur(28px) saturate(1.7) contrast(1.05);
  -webkit-backdrop-filter: blur(28px) saturate(1.7) contrast(1.05);
  pointer-events: auto;
}

.cinema-page.mateo-home .cinema-nav .liquid-menu a {
  min-height: 40px;
  display: grid;
  place-items: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: rgba(255, 254, 244, 0.82);
  font-size: 0.69rem;
  font-weight: 850;
  letter-spacing: 0;
  text-align: center;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.42);
  transform: none;
}

.cinema-page.mateo-home .cinema-nav .liquid-menu a:hover,
.cinema-page.mateo-home .cinema-nav .liquid-menu a.is-active {
  border-color: rgba(255, 255, 255, 0.54);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.72)),
    rgba(255, 255, 255, 0.64);
  color: #050505;
  box-shadow:
    0 10px 28px rgba(0, 0, 0, 0.18),
    inset 0 1px 0 rgba(255, 255, 255, 0.94),
    inset 0 -8px 18px rgba(0, 0, 0, 0.05);
  text-shadow: none;
  transform: translateY(-1px);
}

.cinema-page.mateo-home .font-tweak {
  bottom: 92px;
}

.cinema-page.mateo-home .cinema-copy,
.cinema-page.mateo-home .film-arrow {
  bottom: 112px;
}

.cinema-page.mateo-home .film-caption {
  bottom: 94px;
}

.about-section,
.crexian-section {
  display: grid;
  align-items: center;
  padding: 116px 0;
  background: #f5f5f1;
  color: #050505;
}

.about-section .section-head,
.crexian-section .section-head {
  margin-bottom: 56px;
}

.about-head h2 {
  max-width: 980px;
}

.about-editorial {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 0.66fr);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
  padding: 44px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.about-editorial p {
  margin: 0;
  color: #555555;
  font-size: clamp(1.08rem, 1.35vw, 1.32rem);
  line-height: 1.78;
}

.about-editorial .about-lead {
  color: #050505;
  font-size: clamp(1.65rem, 2.5vw, 3rem);
  font-weight: 850;
  line-height: 1.18;
}

.about-investment {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  padding: 22px 24px;
  border: 1px solid rgba(0, 0, 0, 0.16);
  background: rgba(255, 255, 255, 0.45);
}

.about-investment span {
  color: #777777;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-investment strong {
  color: #050505;
  font-size: clamp(1.12rem, 1.7vw, 1.65rem);
  line-height: 1.22;
}

.about-rows {
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.about-rows article {
  display: grid;
  grid-template-columns: 150px minmax(250px, 0.76fr) minmax(320px, 1fr);
  gap: 28px;
  align-items: center;
  min-height: 132px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.about-rows p,
.crexian-grid p,
.crexian-system p {
  margin: 0;
  color: #777777;
  font-size: 0.76rem;
  font-weight: 850;
  text-transform: uppercase;
}

.about-rows h3 {
  margin: 0;
  font-size: clamp(1.55rem, 2.7vw, 2.8rem);
  line-height: 0.98;
}

.about-rows span {
  color: #5d5d5d;
  font-size: 1rem;
  line-height: 1.64;
}

.about-expand {
  margin-top: 34px;
  padding: 22px 0 0;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
}

.about-expand summary {
  width: fit-content;
  cursor: pointer;
  color: #050505;
  font-size: 0.82rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-expand p {
  max-width: 920px;
  margin: 18px 0 0;
  color: #555555;
  font-size: 1.02rem;
  line-height: 1.72;
}

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

.founder-grid article {
  min-height: 360px;
}

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

.crexian-grid article {
  min-height: 390px;
  display: grid;
  align-content: space-between;
  padding: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.18);
  background: #eeeeea;
}

.crexian-grid h3 {
  margin: 34px 0 18px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 3rem);
  line-height: 0.96;
}

.crexian-grid span {
  color: #555555;
  font-size: 0.94rem;
  line-height: 1.58;
}

.crexian-system {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

.crexian-system article {
  min-height: 124px;
  display: grid;
  align-content: space-between;
  padding: 18px;
  border: 1px solid rgba(0, 0, 0, 0.14);
}

.crexian-system h3 {
  margin: 18px 0 8px;
  font-size: 1.05rem;
  line-height: 1.12;
}

.crexian-system span {
  color: #666666;
  font-size: 0.84rem;
  line-height: 1.42;
}

.business-panel {
  align-items: center;
}

.business-media {
  width: 100%;
  min-height: 0;
  justify-self: end;
  aspect-ratio: 16 / 9;
  transform-origin: 70% 50%;
  transition:
    width 520ms cubic-bezier(0.2, 0.72, 0.14, 1),
    aspect-ratio 520ms cubic-bezier(0.2, 0.72, 0.14, 1),
    transform 520ms cubic-bezier(0.2, 0.72, 0.14, 1),
    box-shadow 520ms ease;
}

.business-media.ratio-wide {
  aspect-ratio: 16 / 9;
  width: 100%;
}

.business-media.ratio-vertical {
  aspect-ratio: 9 / 16;
  width: min(430px, 100%);
}

.business-media.ratio-poster {
  aspect-ratio: 2 / 3;
  width: min(430px, 100%);
}

.business-media.ratio-square {
  aspect-ratio: 1 / 1;
  width: min(560px, 100%);
}

.business-media.ratio-diagram {
  aspect-ratio: 16 / 10;
  width: 100%;
}

.business-media.is-changing {
  animation: businessMediaMorph 520ms cubic-bezier(0.2, 0.72, 0.14, 1);
}

.business-media video,
.business-media img {
  object-fit: cover;
  background: #111111;
  transform: scale(1.01);
  transition: opacity 320ms ease, transform 640ms cubic-bezier(0.2, 0.72, 0.14, 1);
}

.business-media.is-changing video,
.business-media.is-changing img,
.business-media.is-changing .business-diagram {
  transform: scale(1.035);
}

.business-media::after {
  z-index: 1;
  pointer-events: none;
}

.business-media > div:last-child {
  z-index: 3;
}

.business-media-link {
  width: fit-content;
  display: inline-grid;
  place-items: center;
  min-height: 38px;
  margin-top: 16px;
  padding: 0 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  color: #fffef4;
  font-size: 0.82rem;
  font-weight: 850;
  text-decoration: none;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.business-media-link[hidden] {
  display: none;
}

.business-diagram {
  z-index: 0;
  overflow: hidden;
  background:
    radial-gradient(circle at 84% 10%, rgba(20, 20, 20, 0.05), transparent 32%),
    #f4f2ea;
  transition: transform 640ms cubic-bezier(0.2, 0.72, 0.14, 1);
}

/* Paper mode: the panel becomes a flowing paper document — sheet above, caption below */
.business-media.is-paper {
  display: flex;
  flex-direction: column;
  aspect-ratio: auto !important;
  width: 100% !important;
  min-height: 0;
  background: #f4f2ea;
}

.business-media.is-paper .business-diagram {
  position: static;
  inset: auto;
  width: auto;
  height: auto;
}

.business-media.is-paper .spec-sheet {
  position: static !important;
  inset: auto !important;
  padding: 30px 34px 26px;
}

.business-media.is-paper > div:last-child {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  padding: 0 34px 30px;
}

.business-media.is-paper::after {
  background: none;
}

.business-media.is-paper div,
.business-media.is-paper h4 {
  color: #141414;
}

.business-media.is-paper div p,
.business-media.is-paper div span {
  color: rgba(20, 20, 20, 0.6);
}

.business-media.is-paper .business-media-link {
  border-color: rgba(20, 20, 20, 0.45);
  background: transparent;
  color: #141414;
  backdrop-filter: none;
  transition: background 200ms ease, color 200ms ease;
}

.business-media.is-paper .business-media-link:hover {
  background: #141414;
  color: #fffef4;
}

/* Neutralise the media panel's absolute-caption defaults inside spec sheets */
.business-media .business-diagram div,
.business-media .business-diagram p,
.business-media .business-diagram span,
.business-media .business-diagram i,
.business-media .business-diagram b,
.business-media .business-diagram em,
.business-media .business-diagram ul,
.business-media .business-diagram ol,
.business-media .business-diagram li,
.business-media .business-diagram figure,
.business-media .business-diagram figcaption {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  color: inherit;
}

/* ==== Platform spec sheets: ink on paper ==== */
.spec-sheet {
  position: static !important;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 30px 34px 26px;
  color: #141414;
}

.spec-label {
  margin: 0;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(20, 20, 20, 0.2);
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(20, 20, 20, 0.55);
}

.spec-footnote {
  margin: 0;
  font-size: 0.72rem;
  letter-spacing: 0.02em;
  color: rgba(20, 20, 20, 0.5);
}

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

/* 01 — Pipeline: five numbered stations on a hairline rail, ink dot in transit */
.spec-rail-wrap {
  position: relative !important;
  margin: 26px 0 10px;
}

.spec-rail {
  position: relative !important;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-rail::before {
  content: "";
  position: absolute;
  left: 5%;
  right: 5%;
  top: 26px;
  height: 1px;
  background: rgba(20, 20, 20, 0.28);
}

.spec-rail li {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 13px;
  opacity: 0;
  animation: specRise 0.7s cubic-bezier(0.2, 0.72, 0.14, 1) forwards;
  animation-delay: calc(var(--i) * 90ms);
}

.spec-rail li i {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border: 1px solid #141414;
  border-radius: 50%;
  background: #f9f8f2;
  font-style: normal;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.spec-rail li b {
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.spec-dot {
  position: absolute !important;
  top: 23px;
  left: 5%;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #141414;
  animation: specTravel 4.6s cubic-bezier(0.45, 0, 0.2, 1) infinite;
}

@keyframes specTravel {
  0% { left: 5%; }
  88%, 100% { left: calc(95% - 7px); }
}

/* 02 — Persona review: script page beside stamped review verdicts */
.spec-persona-body {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 34px;
  align-items: center;
  margin: 20px 0 8px;
}

.spec-script {
  position: relative;
  padding: 20px 22px;
  border: 1px solid rgba(20, 20, 20, 0.35);
  background: #faf9f4;
  box-shadow: 7px 7px 0 rgba(20, 20, 20, 0.08);
}

.spec-script em {
  display: block;
  margin-bottom: 14px;
  font-style: normal;
  font-size: 0.6rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  color: rgba(20, 20, 20, 0.5);
}

.spec-script i {
  display: block;
  height: 6px;
  margin-bottom: 10px;
  background: rgba(20, 20, 20, 0.16);
}

.spec-script i.short {
  width: 62%;
}

.spec-stamps {
  display: grid;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.spec-stamps li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 11px 16px;
  border: 1px solid rgba(20, 20, 20, 0.32);
  background: #f9f8f2;
  opacity: 0;
  animation: specRise 0.6s cubic-bezier(0.2, 0.72, 0.14, 1) forwards;
  animation-delay: calc(120ms + var(--i) * 110ms);
}

.spec-stamps b {
  font-size: 0.84rem;
  font-weight: 800;
  letter-spacing: 0.05em;
}

.spec-stamps i {
  padding: 3px 10px;
  border: 1px solid rgba(20, 20, 20, 0.5);
  border-radius: 999px;
  background: transparent;
  font-style: normal;
  font-size: 0.58rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: #141414;
}

/* 03 — Consistency: a contact sheet of cuts swept by a scan line */
.spec-frames {
  position: relative !important;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 22px 0 8px;
  padding: 0;
  list-style: none;
}

.spec-frames li {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
  min-height: 150px;
  padding: 13px 14px 12px;
  border: 1px solid rgba(20, 20, 20, 0.35);
  background: #faf9f4;
  opacity: 0;
  animation: specRise 0.6s cubic-bezier(0.2, 0.72, 0.14, 1) forwards;
  animation-delay: calc(var(--i) * 100ms);
}

.spec-frames li span {
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  color: rgba(20, 20, 20, 0.45);
}

.spec-frames li b {
  margin-top: auto;
  font-size: 1rem;
  font-weight: 850;
}

.spec-frames li i {
  width: fit-content;
  padding: 2px 9px;
  border: 1px solid rgba(20, 20, 20, 0.5);
  border-radius: 999px;
  background: transparent;
  font-style: normal;
  font-size: 0.56rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  color: #141414;
}

.spec-scan {
  position: absolute !important;
  top: -5%;
  bottom: -5% !important;
  left: 2%;
  width: 1px;
  background: #141414;
  animation: specScan 3.6s ease-in-out infinite alternate;
}

@keyframes specScan {
  from { left: 2%; }
  to { left: 98%; }
}

/* ==== CREXian showreel stage ==== */
.crexian-grid article {
  transition: transform 360ms cubic-bezier(0.2, 0.72, 0.14, 1), border-color 240ms ease,
    background 240ms ease, min-height 420ms cubic-bezier(0.2, 0.72, 0.14, 1), opacity 320ms ease;
}

.crexian-grid article:hover {
  border-top-color: rgba(0, 0, 0, 0.7);
  background: #e9e9e3;
  transform: translateY(-4px);
}

.crexian-grid article[data-crexian-reel] {
  position: relative;
  cursor: pointer;
}

.crexian-grid article[data-crexian-reel] h3 {
  padding-right: 44px;
}

/* Personal-site button: a small circled arrow in the card's top-right corner */
.crexian-site-link {
  position: absolute;
  top: 22px;
  right: 20px;
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 50%;
  color: #141414;
  text-decoration: none;
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease,
    opacity 240ms ease, transform 320ms cubic-bezier(0.2, 0.72, 0.14, 1);
}

.crexian-site-link i {
  font-style: normal;
  font-size: 0.85rem;
  line-height: 1;
  transition: transform 240ms cubic-bezier(0.2, 0.72, 0.14, 1);
}

.crexian-site-link:hover {
  background: #141414;
  border-color: #141414;
  color: #f4f2ea;
}

.crexian-site-link:hover i {
  transform: translate(1px, -1px);
}

.crexian-grid.is-viewing .crexian-site-link {
  opacity: 0;
  transform: scale(0.6);
  pointer-events: none;
}

/* Viewing mode: bios fold away, the grid compresses into a slim index */
.crexian-grid span {
  display: block;
  max-height: 220px;
  overflow: hidden;
  transition: max-height 480ms cubic-bezier(0.2, 0.72, 0.14, 1), opacity 260ms ease, margin 480ms cubic-bezier(0.2, 0.72, 0.14, 1);
}

.crexian-grid.is-viewing article {
  min-height: 0;
  opacity: 0.55;
}

.crexian-grid.is-viewing article span {
  max-height: 0;
  margin: 0;
  opacity: 0;
}

.crexian-grid.is-viewing article:hover {
  opacity: 0.85;
}

.crexian-grid.is-viewing article.is-active {
  background: #141414;
  border-top-color: #141414;
  color: #f4f2ea;
  opacity: 1;
}

.crexian-grid.is-viewing article.is-active p,
.crexian-grid.is-viewing article.is-active h3 {
  color: #f4f2ea;
}

/* The stage itself: expands under the grid, hairline frame, ink caption bar */
.crexian-stage {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 640ms cubic-bezier(0.2, 0.72, 0.14, 1), opacity 420ms ease;
}

.crexian-stage.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.crexian-stage-inner {
  min-height: 0;
  overflow: hidden;
}

.crexian-stage-inner video {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  margin-top: 14px;
  object-fit: cover;
  background: #0c0c0c;
}

.crexian-stage-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 2px 4px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.18);
}

.crexian-stage-bar p {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0;
}

.crexian-stage-bar strong {
  font-size: 1.05rem;
  font-weight: 800;
  color: #141414;
}

.crexian-stage-bar span {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #77776f;
}

.crexian-stage-bar button {
  padding: 8px 18px;
  border: 1px solid rgba(0, 0, 0, 0.4);
  border-radius: 999px;
  background: transparent;
  color: #141414;
  font-size: 0.66rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 220ms ease, color 220ms ease;
}

.crexian-stage-bar button:hover {
  background: #141414;
  color: #f4f2ea;
}

@keyframes businessMediaMorph {
  0% {
    opacity: 0.64;
    clip-path: inset(8% round 24px);
    transform: scale(0.975);
  }
  100% {
    opacity: 1;
    clip-path: inset(0 round 0);
    transform: scale(1);
  }
}


@media (min-width: 981px) {
  .a24-lower .section-inner {
    padding-left: 0;
  }

  .a24-lower .business-lab.page-section {
    padding: 116px 0;
  }
}

@media (max-width: 980px) {
  .cinema-page.mateo-home .cinema-nav .liquid-menu {
    left: 50%;
    right: auto;
    bottom: 12px;
    width: min(720px, calc(100vw - 20px));
    grid-template-columns: repeat(7, minmax(48px, 1fr));
    gap: 4px;
    padding: 6px;
    border-radius: 22px;
    transform: translateX(-50%);
  }

  .cinema-page.mateo-home .cinema-nav .liquid-menu a {
    min-height: 34px;
    padding: 0 3px;
    font-size: 0.56rem;
  }

  .about-rows article,
  .business-panel {
    grid-template-columns: 1fr;
  }

  .crexian-grid,
  .crexian-system,
  .founder-grid,
  .contact-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .business-media.ratio-vertical,
  .business-media.ratio-poster,
  .business-media.ratio-square {
    width: min(520px, 100%);
    justify-self: center;
  }
}

@media (max-width: 620px) {
  .about-section,
  .founder-section,
  .crexian-section,
  .press-section,
  .contact-section,
  .business-lab.page-section {
    padding: 104px 0 112px;
  }

  .cinema-page.mateo-home .cinema-nav .liquid-menu {
    overflow-x: auto;
    justify-content: start;
    grid-template-columns: repeat(7, 64px);
    scrollbar-width: none;
  }

  .cinema-page.mateo-home .cinema-nav .liquid-menu::-webkit-scrollbar {
    display: none;
  }

  .cinema-page.mateo-home .font-tweak {
    bottom: 82px;
  }

  .crexian-grid,
  .crexian-system,
  .founder-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .business-media.ratio-vertical,
  .business-media.ratio-poster {
    width: min(360px, 100%);
  }

}

@media (max-width: 980px) {
  .a24-feature,
  .a24-feature-reverse {
    grid-template-columns: 1fr;
  }

  .a24-feature-reverse .a24-feature-media {
    order: -1;
  }

  .a24-feature-copy {
    min-height: 0;
  }
}

@media (max-width: 620px) {
  .a24-editorial-feed {
    gap: 72px;
  }

  .a24-feature-media,
  .a24-feature-media-poster {
    aspect-ratio: 16 / 11;
  }

  .a24-feature-media-poster {
    padding: 0;
  }

  .a24-feature-media-poster img {
    inset: 28px;
    width: calc(100% - 56px);
    height: calc(100% - 56px);
  }

  .a24-cta {
    margin-top: 36px;
  }
}

.page-section {
  scroll-margin-top: 110px;
}

.about-section,
.founder-section,
.crexian-section,
.press-section,
.contact-section,
.business-lab.page-section {
  padding-bottom: 168px;
}

.about-section h2 {
  color: #050505;
}

.about-section .section-head span {
  color: #666666;
}

@media (max-width: 620px) {
  .about-section,
  .founder-section,
  .crexian-section,
  .press-section,
  .contact-section,
  .business-lab.page-section {
    padding-bottom: 132px;
  }
}

/* Content card and platform diagram cleanup. */
.about-rows article {
  grid-template-columns: 132px minmax(430px, 0.78fr) minmax(360px, 1fr);
  align-items: start;
  min-height: 0;
  padding: 28px 0;
}

.about-rows h3 {
  max-width: 520px;
  font-size: clamp(1.75rem, 2.45vw, 2.55rem);
  line-height: 1.04;
}

.about-rows span {
  max-width: 600px;
  padding-top: 4px;
}

.founder-grid article,
.crexian-grid article {
  display: flex;
  flex-direction: column;
  align-content: initial;
  justify-content: flex-start;
  padding: 30px 24px 28px;
}

.founder-grid article {
  min-height: 284px;
}

.crexian-grid article {
  min-height: 340px;
}

.founder-grid h3,
.crexian-grid h3 {
  margin: clamp(42px, 5vw, 72px) 0 22px;
  letter-spacing: 0;
}

.founder-grid span,
.crexian-grid span {
  max-width: 92%;
  margin: 0;
}

.crexian-system article,
.business-works button {
  align-content: start;
}

.crexian-system h3 {
  margin: 18px 0 10px;
}

.business-works button {
  min-height: 134px;
  grid-template-rows: auto auto 1fr;
  gap: 0;
  padding: 18px;
}

.business-works strong {
  margin: 26px 0 10px;
  font-size: 1.2rem;
}

.business-works em {
  max-width: 96%;
}

.business-lab-head {
  padding: 68px 0 40px;
}

.business-tabs button {
  min-height: 116px;
}

.business-panel {
  padding-top: 40px;
}

.business-media.ratio-diagram {
  aspect-ratio: 16 / 10;
}

.business-media > div:last-child {
  left: 28px;
  right: 28px;
  bottom: 24px;
}

.business-media h4 {
  font-size: clamp(1.9rem, 3vw, 3.2rem);
}

@media (max-width: 980px) {
  .about-rows article {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .founder-grid article,
  .crexian-grid article {
    min-height: 300px;
  }
}

@media (max-width: 620px) {
  .spec-sheet {
    padding: 20px 20px 150px;
    gap: 12px;
  }

  .spec-rail {
    gap: 6px;
  }

  .spec-rail li i {
    width: 40px;
    height: 40px;
  }

  .spec-rail li b {
    font-size: 0.68rem;
  }

  .spec-persona-body {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .spec-script {
    display: none;
  }

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

  .spec-frames li {
    min-height: 104px;
  }

}
