:root {
  --ink: #111111;
  --paper: #f4f0e8;
  --bone: #fffaf0;
  --lime: #cbff38;
  --red: #bd2c24;
  --blue: #5c7f93;
  --steel: #2d3438;
  --muted: rgba(255, 250, 240, 0.72);
  --line: rgba(255, 250, 240, 0.18);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.32);
}

.studio-sidebar a {
  color: inherit;
  text-decoration: none;
}

.studio-shell--login {
  grid-template-columns: minmax(0, 520px);
  justify-content: center;
}

.studio-list {
  display: grid;
  gap: 22px;
}

.studio-list > h2 {
  margin: 26px 0 0;
  font-family: var(--display);
  font-size: 34px;
  font-weight: 800;
  text-transform: uppercase;
}

.studio-panel p {
  color: var(--muted);
  line-height: 1.6;
}

.studio-editor {
  display: grid;
  gap: 14px;
}

.studio-editor__top {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr auto;
  gap: 12px;
  align-items: end;
}

.studio-panel input,
.studio-panel textarea,
.studio-panel select {
  box-sizing: border-box;
  width: 100%;
}

.studio-panel textarea {
  min-height: 110px;
  resize: vertical;
}

.studio-check {
  min-height: 48px;
  flex-direction: row;
  align-items: center;
  gap: 8px;
}

.studio-check input {
  width: auto;
}

.studio-media-editor {
  display: grid;
  gap: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.studio-media-editor h3,
.studio-media-row h4 {
  margin: 0;
  color: var(--bone);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.studio-media-editor p {
  margin: 0;
  font-size: 0.86rem;
}

.studio-media-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
}

.studio-media-row label:nth-of-type(5),
.studio-media-row label:nth-of-type(6),
.studio-media-row label:nth-of-type(7),
.studio-media-row label:nth-of-type(8),
.studio-media-row label:nth-of-type(9) {
  grid-column: span 2;
}

.studio-media-row textarea {
  min-height: 72px;
}

.studio-media-row--new {
  background: rgba(203, 255, 56, 0.05);
}

.studio-success,
.studio-error {
  border: 1px solid var(--line);
  padding: 14px 16px;
}

.studio-success {
  background: rgba(181, 255, 116, 0.12);
}

.studio-error {
  background: rgba(255, 78, 78, 0.12);
}

@media (max-width: 820px) {
  .studio-editor__top {
    grid-template-columns: 1fr;
  }
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--ink);
  color: var(--bone);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

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

.grain {
  position: fixed;
  inset: 0;
  z-index: 20;
  pointer-events: none;
  opacity: 0.13;
  background-image:
    radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.38) 0 1px, transparent 1px),
    radial-gradient(circle at 80% 70%, rgba(0, 0, 0, 0.4) 0 1px, transparent 1px);
  background-size: 3px 3px, 5px 5px;
  mix-blend-mode: overlay;
}

.topbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  padding: 0 clamp(20px, 5vw, 64px);
  color: var(--bone);
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.78), rgba(17, 17, 17, 0));
}

.brand {
  font-size: 0.9rem;
  font-weight: 800;
  text-transform: uppercase;
}

nav {
  display: flex;
  gap: clamp(12px, 2vw, 28px);
  font-size: 0.82rem;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 86svh;
  display: grid;
  align-items: end;
  padding: 120px clamp(20px, 5vw, 64px) 28px;
  overflow: hidden;
}

.hero__image,
.hero__shade {
  position: absolute;
  inset: 0;
}

.hero__image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.04) contrast(1.05);
  transform: scale(1.04);
  animation: slowDrift 18s ease-in-out infinite alternate;
}

.hero__shade {
  background:
    linear-gradient(90deg, rgba(17, 17, 17, 0.96) 0%, rgba(17, 17, 17, 0.58) 45%, rgba(17, 17, 17, 0.18) 100%),
    linear-gradient(0deg, rgba(17, 17, 17, 0.98) 0%, rgba(17, 17, 17, 0.2) 46%, rgba(17, 17, 17, 0.55) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 850px;
  padding-bottom: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

h1 {
  max-width: 1180px;
  margin-bottom: 24px;
  font-size: 84px;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero__lead {
  max-width: 650px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.4;
}

.hero__actions,
.field-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border: 1px solid var(--line);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.button--primary {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.button--ghost {
  background: rgba(255, 250, 240, 0.08);
}

.conversion-panel {
  position: absolute;
  right: clamp(20px, 5vw, 64px);
  bottom: 28px;
  z-index: 1;
  display: grid;
  grid-template-columns: auto auto auto auto auto;
  align-items: center;
  gap: 10px;
  max-width: 520px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.48);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
  font-size: 0.76rem;
  font-weight: 800;
  text-transform: uppercase;
}

.conversion-panel strong {
  color: var(--red);
}

.statement,
.about-section,
.work-section,
.lab-section,
.process-section,
.contact-section {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 5vw, 64px);
}

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

.statement p {
  max-width: 1180px;
  font-size: 72px;
  line-height: 0.95;
  letter-spacing: 0;
  text-transform: uppercase;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: start;
  background: #101010;
}

.about-media {
  position: sticky;
  top: 92px;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  min-height: 640px;
}

.about-photo {
  display: flex;
  align-items: end;
  min-height: 300px;
  padding: 18px;
  border: 1px solid var(--line);
  background:
    linear-gradient(160deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.76)),
    url("assets/conceito-hero.png") center / cover;
}

.about-photo--portrait {
  grid-row: span 2;
}

.about-photo--process {
  background:
    linear-gradient(160deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.76)),
    repeating-linear-gradient(135deg, #fffaf0 0 20px, #111111 20px 40px, #5c7f93 40px 60px);
}

.about-photo span {
  color: var(--bone);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.about-copy h2 {
  max-width: 980px;
  margin-bottom: 34px;
  font-size: clamp(48px, 7vw, 96px);
  line-height: 0.9;
  text-transform: uppercase;
}

.about-copy > p:not(.eyebrow) {
  max-width: 760px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.45;
}

.about-principles {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  background: var(--line);
}

.about-principles span {
  min-height: 132px;
  display: flex;
  align-items: end;
  padding: 16px;
  background: #171717;
  color: var(--bone);
  font-size: 0.9rem;
  font-weight: 900;
  line-height: 1.1;
  text-transform: uppercase;
}

.section-heading {
  max-width: 860px;
  margin-bottom: 42px;
}

.section-heading h2,
.contact-section h2 {
  font-size: 64px;
  line-height: 0.96;
  letter-spacing: 0;
  text-transform: uppercase;
}

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

.project-card {
  position: relative;
  min-height: 680px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 0;
  border: 1px solid var(--line);
  background:
    linear-gradient(145deg, rgba(255, 250, 240, 0.12), rgba(255, 250, 240, 0.03)),
    radial-gradient(circle at 20% 20%, rgba(203, 255, 56, 0.14), transparent 34%);
  overflow: hidden;
  transform: translateY(28px);
  opacity: 0;
  transition: transform 700ms ease, opacity 700ms ease, border-color 300ms ease;
  cursor: pointer;
}

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

.project-card:hover {
  border-color: rgba(203, 255, 56, 0.7);
  transform: translateY(-4px);
}

.project-card:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.project-card__top span {
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-thumb {
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 18px;
  background:
    linear-gradient(140deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.86)),
    url("assets/conceito-hero.png") center / cover;
  border-bottom: 1px solid var(--line);
  overflow: hidden;
}

.project-card:nth-child(2) .project-thumb {
  background:
    linear-gradient(140deg, rgba(203, 255, 56, 0.14), rgba(17, 17, 17, 0.86)),
    radial-gradient(circle at 78% 24%, rgba(255, 250, 240, 0.8), transparent 12%),
    linear-gradient(90deg, #0454ff, #f72a85 48%, #101010);
}

.project-card:nth-child(3) .project-thumb {
  background:
    linear-gradient(140deg, rgba(17, 17, 17, 0.18), rgba(17, 17, 17, 0.86)),
    repeating-linear-gradient(90deg, #cbff38 0 12px, #111111 12px 24px, #bd2c24 24px 36px, #5c7f93 36px 48px);
}

.project-thumb span {
  color: var(--bone);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card__top {
  padding: 22px;
}

.project-card h3 {
  margin: 16px 0 24px;
  font-size: 40px;
  line-height: 0.9;
  text-transform: uppercase;
}

.project-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.project-card dt {
  color: var(--blue);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.project-card dd {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.45;
}

.metric {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 18px;
  margin-top: 32px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  padding-left: 22px;
  padding-right: 22px;
  padding-bottom: 22px;
}

.metric strong {
  color: var(--lime);
  font-size: 72px;
  line-height: 0.82;
}

.metric span {
  max-width: 150px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: right;
  text-transform: uppercase;
}

.open-case {
  position: absolute;
  right: 20px;
  top: 20px;
  color: var(--bone);
  font-size: 0.7rem;
  font-weight: 900;
  opacity: 0;
  text-transform: uppercase;
  transition: opacity 240ms ease;
}

.project-card:hover .open-case,
.project-card:focus-visible .open-case {
  opacity: 1;
}

.case-detail {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 5vw, 64px) 0;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(180deg, rgba(203, 255, 56, 0.08), rgba(203, 255, 56, 0)),
    var(--ink);
}

.case-detail[hidden] {
  display: none;
}

.case-close {
  min-height: 44px;
  margin-bottom: 34px;
  padding: 0 16px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.08);
  color: var(--bone);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.case-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 280px;
  gap: 24px;
  align-items: end;
  padding-bottom: 38px;
  border-bottom: 1px solid var(--line);
}

.case-hero h2 {
  max-width: 980px;
  margin-bottom: 0;
  font-size: 88px;
  line-height: 0.88;
  text-transform: uppercase;
}

.case-result {
  min-height: 220px;
  display: grid;
  align-content: space-between;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.07);
}

.case-result span {
  color: var(--lime);
  font-size: 76px;
  font-weight: 900;
  line-height: 0.86;
}

.case-result p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-body {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  padding: 42px 0 36px;
}

.case-lead {
  max-width: 850px;
  color: var(--bone);
  font-size: 30px;
  line-height: 1.18;
}

.case-story dl {
  display: grid;
  gap: 24px;
  margin: 42px 0 0;
}

.case-story dt {
  color: var(--lime);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.case-story dd {
  max-width: 720px;
  margin: 7px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.48;
}

.decision-strip {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 24px;
  margin-bottom: clamp(72px, 10vw, 120px);
  padding: 24px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.decision-strip h3 {
  margin: 0;
  color: var(--bone);
  font-size: 0.78rem;
  line-height: 1;
  text-transform: uppercase;
}

.decision-strip ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.decision-strip li {
  color: var(--muted);
  line-height: 1.42;
}

.decision-strip li::before {
  content: "+";
  margin-right: 10px;
  color: var(--red);
  font-weight: 900;
}

.case-immersion {
  margin-left: calc(clamp(20px, 5vw, 64px) * -1);
  margin-right: calc(clamp(20px, 5vw, 64px) * -1);
  background: #050505;
}

.showcase {
  min-height: 92svh;
  display: grid;
  align-items: end;
  padding: clamp(28px, 5vw, 64px);
  border-top: 1px solid rgba(255, 250, 240, 0.18);
  overflow: hidden;
}

.showcase--poster {
  background:
    linear-gradient(0deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.12) 45%, rgba(5, 5, 5, 0.42)),
    url("assets/conceito-hero.png") center / cover;
}

.showcase h3,
.showcase-duo h3 {
  max-width: 1100px;
  margin: 0;
  color: var(--bone);
  font-size: clamp(52px, 8vw, 118px);
  line-height: 0.88;
  text-transform: uppercase;
}

.showcase-text {
  padding: clamp(72px, 10vw, 140px) clamp(20px, 5vw, 64px);
  background: var(--paper);
  color: var(--ink);
}

.showcase-text p {
  max-width: 1160px;
  margin: 0;
  font-size: clamp(34px, 5vw, 76px);
  line-height: 0.98;
  text-transform: uppercase;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  grid-auto-rows: minmax(340px, 48vw);
  gap: 12px;
  padding: 12px;
}

.showcase-media {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: end;
  padding: 20px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.08), rgba(17, 17, 17, 0.74)),
    url("assets/conceito-hero.png") center / cover;
  overflow: hidden;
}

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

.showcase-media--embed,
.showcase-media--uploaded-video {
  background: #050505;
}

.showcase-media--embed span,
.showcase-media--uploaded-video span {
  padding: 8px 10px;
  background: rgba(5, 5, 5, 0.72);
}

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

.showcase-media--video {
  grid-row: span 2;
}

.showcase-media--video::before {
  content: "";
  position: absolute;
  inset: 50% auto auto 50%;
  width: 86px;
  height: 86px;
  border: 2px solid rgba(255, 250, 240, 0.88);
  border-radius: 50%;
  transform: translate(-50%, -50%);
}

.showcase-media--video::after {
  content: "";
  position: absolute;
  left: calc(50% - 10px);
  top: calc(50% - 18px);
  border-left: 30px solid var(--bone);
  border-top: 18px solid transparent;
  border-bottom: 18px solid transparent;
}

.showcase-media--tall {
  background:
    linear-gradient(140deg, rgba(17, 17, 17, 0.2), rgba(17, 17, 17, 0.64)),
    linear-gradient(90deg, #f72a85, #0454ff 45%, #cbff38);
}

.showcase-media--blue {
  background:
    linear-gradient(140deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.64)),
    repeating-linear-gradient(135deg, #0454ff 0 24px, #101010 24px 48px, #5c7f93 48px 72px);
}

.showcase-media--type {
  background:
    linear-gradient(140deg, rgba(255, 250, 240, 0.1), rgba(17, 17, 17, 0.76)),
    repeating-linear-gradient(0deg, #fffaf0 0 18px, #111111 18px 36px);
}

.showcase-media span,
.showcase-strip span {
  position: relative;
  z-index: 1;
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.showcase-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
  padding: 12px;
}

.showcase-strip span {
  min-height: 260px;
  display: flex;
  align-items: end;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.76)),
    radial-gradient(circle at 30% 35%, #f72a85 0 12%, transparent 13%),
    radial-gradient(circle at 80% 22%, #cbff38 0 8%, transparent 9%),
    linear-gradient(135deg, #0454ff, #111111);
}

.showcase-strip span:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.76)),
    url("assets/conceito-hero.png") center / cover;
}

.showcase-strip span:nth-child(3) {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.76)),
    linear-gradient(90deg, #bd2c24, #fffaf0 48%, #0454ff);
}

.showcase-strip span:nth-child(4) {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.76)),
    repeating-linear-gradient(90deg, #111111 0 16px, #cbff38 16px 28px, #f72a85 28px 44px);
}

.showcase-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255, 250, 240, 0.18);
}

.showcase-duo > div {
  min-height: 56svh;
  display: grid;
  align-content: end;
  padding: clamp(28px, 5vw, 64px);
  background: #101010;
}

.showcase-duo > div:nth-child(2) {
  background:
    linear-gradient(135deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.72)),
    url("assets/conceito-hero.png") center / cover;
}

.lab-section {
  background:
    linear-gradient(180deg, rgba(92, 127, 147, 0.22), rgba(17, 17, 17, 0)),
    #101010;
}

.lab-intro {
  max-width: 920px;
  margin: -12px 0 34px;
}

.lab-intro p {
  color: var(--muted);
  font-size: 22px;
  line-height: 1.42;
}

.work-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 24px;
}

.work-filters button {
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.06);
  color: var(--bone);
  font: inherit;
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
}

.work-filters button.is-active {
  background: var(--lime);
  color: var(--ink);
  border-color: var(--lime);
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0 22px 18px;
}

.project-tags span {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 9px;
  border: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.66rem;
  font-weight: 900;
  text-transform: uppercase;
}

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

.lab-card {
  position: relative;
  min-height: 620px;
  display: grid;
  grid-template-rows: 1fr auto;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.05);
  overflow: hidden;
  cursor: pointer;
  transition: border-color 260ms ease, transform 260ms ease;
}

.lab-card:hover {
  border-color: rgba(203, 255, 56, 0.7);
  transform: translateY(-4px);
}

.lab-card:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 4px;
}

.lab-card__visual {
  min-height: 300px;
  display: flex;
  align-items: end;
  padding: 18px;
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.72)),
    radial-gradient(circle at 26% 30%, #cbff38 0 12%, transparent 13%),
    radial-gradient(circle at 72% 68%, #f72a85 0 16%, transparent 17%),
    linear-gradient(135deg, #0454ff, #111111);
}

.lab-card--motion .lab-card__visual {
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.72)),
    repeating-linear-gradient(135deg, #f72a85 0 22px, #0454ff 22px 44px, #101010 44px 66px);
}

.lab-card--story .lab-card__visual {
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.1), rgba(17, 17, 17, 0.72)),
    url("assets/conceito-hero.png") center / cover;
}

.lab-card--interface .lab-card__visual {
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.16), rgba(17, 17, 17, 0.78)),
    linear-gradient(90deg, #fffaf0 0 22%, #111111 22% 24%, #5c7f93 24% 55%, #bd2c24 55% 76%, #cbff38 76%);
}

.lab-card__visual span {
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-card__body {
  display: grid;
  gap: 28px;
  padding: 22px;
}

.lab-status {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--lime);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-card h3 {
  margin: 0;
  font-size: 32px;
  line-height: 0.95;
  text-transform: uppercase;
}

.lab-card dl {
  display: grid;
  gap: 16px;
  margin: 0;
}

.lab-card dt {
  color: var(--blue);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.lab-card dd {
  margin: 5px 0 0;
  color: var(--muted);
  line-height: 1.42;
}

.experiment-detail {
  padding: clamp(72px, 11vw, 150px) clamp(20px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(203, 255, 56, 0.08), rgba(17, 17, 17, 0)),
    var(--ink);
  border-top: 1px solid var(--line);
}

.experiment-detail[hidden] {
  display: none;
}

.experiment-hero {
  display: grid;
  gap: 24px;
  max-width: 1160px;
}

.experiment-hero h2 {
  margin: 0;
  font-size: clamp(52px, 9vw, 118px);
  line-height: 0.88;
  text-transform: uppercase;
}

.experiment-hero p:last-child {
  max-width: 850px;
  color: var(--muted);
  font-size: 28px;
  line-height: 1.18;
}

.experiment-stage {
  min-height: 80svh;
  display: flex;
  align-items: end;
  margin: clamp(42px, 7vw, 90px) 0;
  padding: clamp(20px, 4vw, 46px);
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.78)),
    radial-gradient(circle at 26% 30%, #cbff38 0 12%, transparent 13%),
    radial-gradient(circle at 72% 68%, #f72a85 0 16%, transparent 17%),
    linear-gradient(135deg, #0454ff, #111111);
}

.experiment-detail--motion .experiment-stage {
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.78)),
    repeating-linear-gradient(135deg, #f72a85 0 26px, #0454ff 26px 52px, #101010 52px 78px);
}

.experiment-detail--story .experiment-stage {
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.78)),
    url("assets/conceito-hero.png") center / cover;
}

.experiment-detail--interface .experiment-stage {
  background:
    linear-gradient(150deg, rgba(17, 17, 17, 0.12), rgba(17, 17, 17, 0.78)),
    linear-gradient(90deg, #fffaf0 0 22%, #111111 22% 24%, #5c7f93 24% 55%, #bd2c24 55% 76%, #cbff38 76%);
}

.experiment-stage span {
  color: var(--bone);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.experiment-body {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.experiment-body article {
  min-height: 330px;
  display: grid;
  align-content: space-between;
  gap: 34px;
  padding: 24px;
  background: #101010;
}

.experiment-body h3 {
  margin: 0;
  color: var(--lime);
  font-size: 0.78rem;
  text-transform: uppercase;
}

.experiment-body p {
  margin: 0;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.36;
}

.process-section {
  background: #e8edf0;
  color: var(--ink);
}

.process-section .eyebrow {
  color: var(--red);
}

.process-track {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid rgba(17, 17, 17, 0.18);
}

.process-track article {
  min-height: 310px;
  padding: 24px 22px;
  border-right: 1px solid rgba(17, 17, 17, 0.18);
}

.process-track article:last-child {
  border-right: 0;
}

.process-track span {
  display: block;
  margin-bottom: 80px;
  color: var(--red);
  font-weight: 900;
}

.process-track h3 {
  font-size: 1.32rem;
  text-transform: uppercase;
}

.process-track p {
  color: rgba(17, 17, 17, 0.68);
  line-height: 1.45;
}

.studio-page {
  min-height: 100svh;
  background: var(--steel);
}

.studio-shell {
  min-height: 100svh;
  display: grid;
  grid-template-columns: 280px 1fr;
}

.studio-sidebar {
  display: grid;
  align-content: start;
  gap: 10px;
  padding: 28px;
  border-right: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.36);
}

.studio-sidebar strong {
  margin-bottom: 20px;
  color: var(--lime);
  text-transform: uppercase;
}

.studio-sidebar span {
  padding: 12px;
  border: 1px solid transparent;
  color: var(--muted);
}

.studio-sidebar .active {
  color: var(--bone);
  border-color: var(--line);
  background: rgba(255, 250, 240, 0.07);
}

.studio-main {
  padding: clamp(32px, 5vw, 72px);
}

.studio-heading {
  max-width: 900px;
  margin-bottom: 34px;
}

.studio-heading h1 {
  font-size: clamp(48px, 7vw, 92px);
}

.studio-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: 16px;
}

.studio-panel {
  display: grid;
  gap: 16px;
  align-content: start;
  padding: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 250, 240, 0.06);
}

.studio-panel h2 {
  margin: 0 0 8px;
  font-size: 26px;
  text-transform: uppercase;
}

.studio-media-list {
  display: grid;
  gap: 10px;
}

.studio-media-list span {
  padding: 14px;
  border: 1px solid var(--line);
  color: var(--muted);
  text-transform: uppercase;
  font-size: 0.74rem;
  font-weight: 900;
}

label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid var(--line);
  background: rgba(17, 17, 17, 0.35);
  color: var(--bone);
  font: inherit;
  padding: 14px;
}

textarea {
  min-height: 96px;
  resize: vertical;
}

.field-row label {
  flex: 1 1 260px;
}

.contact-section {
  min-height: 68svh;
  display: grid;
  align-content: center;
  justify-items: start;
  background: var(--paper);
  color: var(--ink);
}

.contact-section .eyebrow {
  color: var(--red);
}

.contact-section h2 {
  max-width: 1100px;
}

@keyframes slowDrift {
  from {
    transform: scale(1.04) translate3d(-1%, -1%, 0);
  }
  to {
    transform: scale(1.1) translate3d(1%, 1%, 0);
  }
}

@media (max-width: 980px) {
  .project-grid,
  .lab-grid,
  .about-section,
  .about-media,
  .about-principles,
  .process-track,
  .case-hero,
  .case-body,
  .decision-strip,
  .decision-strip ul,
  .experiment-body,
  .studio-shell,
  .studio-grid,
  .showcase-grid,
  .showcase-strip,
  .showcase-duo,
  .experiment-media {
    grid-template-columns: 1fr;
  }

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

  .studio-media-row label:nth-of-type(5),
  .studio-media-row label:nth-of-type(6),
  .studio-media-row label:nth-of-type(7),
  .studio-media-row label:nth-of-type(8),
  .studio-media-row label:nth-of-type(9) {
    grid-column: span 1;
  }

  .process-track article {
    border-right: 0;
    border-bottom: 1px solid rgba(17, 17, 17, 0.18);
  }

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

  .conversion-panel {
    position: relative;
    right: auto;
    bottom: auto;
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .about-media {
    position: static;
    min-height: 0;
  }

  .about-photo--portrait {
    grid-row: auto;
  }
}

@media (max-width: 720px) {
  .topbar {
    align-items: flex-start;
    min-height: 92px;
    padding-top: 18px;
  }

  nav {
    justify-content: flex-end;
    max-width: 260px;
    flex-wrap: wrap;
    text-align: right;
  }

  h1 {
    font-size: 48px;
  }

  .statement p,
  .about-copy h2,
  .section-heading h2,
  .contact-section h2 {
    font-size: 42px;
  }

  .about-copy > p:not(.eyebrow) {
    font-size: 19px;
  }

  .hero {
    padding-top: 132px;
  }

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

  .lab-card {
    min-height: 0;
  }

  .experiment-hero h2 {
    font-size: 48px;
  }

  .experiment-hero p:last-child {
    font-size: 24px;
  }

  .experiment-stage {
    min-height: 58svh;
  }

  .lab-card h3 {
    font-size: 28px;
  }

  .project-thumb {
    min-height: 220px;
  }

  .case-hero h2 {
    font-size: 48px;
  }

  .case-result {
    min-height: 0;
  }

  .case-lead {
    font-size: 24px;
  }

  .showcase {
    min-height: 72svh;
  }

  .showcase h3,
  .showcase-duo h3 {
    font-size: 44px;
  }

  .showcase-text p {
    font-size: 36px;
  }

  .showcase-grid {
    grid-auto-rows: minmax(260px, 72vw);
  }

  .showcase-media--video {
    grid-row: auto;
  }

  .showcase-strip span {
    min-height: 220px;
  }
}
