@import url("https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap");

:root {
  color-scheme: dark;
  --bg: #080808;
  --panel: rgba(24, 24, 24, 0.74);
  --panel-solid: #171717;
  --ink: #f5f3f0;
  --muted: #aaa6a1;
  --line: rgba(255, 255, 255, 0.13);
  --accent: #af1b5a;
  --accent-2: #d2b55b;
  --cyan: #74c7d3;
  --radius: 14px;
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  overflow-x: clip;
}

html.is-windows {
  zoom: 86%;
}

html.is-windows .hero {
  zoom: 116.2791%;
}

html.is-windows .hero-content {
  zoom: 86%;
}

body {
  min-height: 100svh;
  margin: 0;
  overflow-x: clip;
  background:
    radial-gradient(circle at 20% 10%, rgba(175, 27, 90, 0.22), transparent 28rem),
    linear-gradient(180deg, #101010 0%, var(--bg) 42%, #0d0b0c 100%);
  background-color: var(--bg);
  background-repeat: no-repeat;
  color: var(--ink);
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -3;
  pointer-events: none;
  content: "";
  opacity: 0.42;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, #000, transparent 88%);
}

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

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

.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  mix-blend-mode: screen;
}

.site-header {
  position: fixed;
  top: 14px;
  left: 50%;
  z-index: 20;
  width: min(calc(100% - 28px), 1320px);
  min-height: 64px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.7);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.92rem;
  font-weight: 800;
  letter-spacing: 0;
}

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

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(10px, 1.55vw, 22px);
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.desktop-nav a,
.language-link {
  transition: color 180ms ease;
}

.desktop-nav a:hover,
.language-link:hover {
  color: var(--ink);
}

.language-link {
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
}

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

.mobile-menu-toggle {
  width: 42px;
  height: 42px;
  place-items: center;
  gap: 5px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  cursor: pointer;
}

.mobile-menu-toggle span {
  width: 17px;
  height: 2px;
  display: block;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.site-header.is-mobile-open .mobile-menu-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-mobile-open .mobile-menu-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-mobile-open .mobile-menu-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  right: 0;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(12, 12, 12, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.mobile-nav a {
  display: block;
  padding: 13px 14px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
}

.mobile-nav a:hover,
.mobile-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  align-items: center;
  padding: 120px clamp(46px, 8vw, 128px) 72px;
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
}

.hero-media::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  opacity: 1;
  background: url("./assets/VideoWebPortada.jpg") center / cover no-repeat;
  filter: saturate(1.28) contrast(1.08) brightness(1);
  transform: scale(1.02);
  transition: opacity 700ms ease;
}

.hero-video-ready .hero-media::before {
  opacity: 0;
}

.hero:not(.hero-video-ready) .hero-media::before {
  animation: slow-push 14s ease-in-out infinite alternate;
}

.local-video-fallback .hero-media::before {
  opacity: 1;
  animation: slow-push 14s ease-in-out infinite alternate;
}

.local-video-fallback .hero-media iframe {
  opacity: 0;
}

.hero-media iframe,
.hero-media img {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  border: 0;
  object-fit: cover;
  filter: saturate(1.28) contrast(1.06) brightness(1);
  transform: translate(-50%, -50%);
}

.hero-media iframe {
  width: max(100vw, 177.78vh);
  height: max(100vh, 56.25vw);
  opacity: 0;
  transition: opacity 700ms ease;
}

.hero-video-ready .hero-media iframe {
  opacity: 1;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  z-index: 2;
  content: "";
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.58) 0%, rgba(5, 5, 5, 0.25) 42%, rgba(5, 5, 5, 0.02) 100%),
    linear-gradient(0deg, rgba(8, 8, 8, 0.52) 0%, transparent 42%);
}

.hero-content {
  width: min(1080px, 100%);
}

.kicker {
  margin: 0 0 12px;
  color: var(--accent-2);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 8.3vw, 8.6rem);
  line-height: 0.88;
  letter-spacing: 0;
}

h1 span {
  display: block;
  white-space: nowrap;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2rem, 5vw, 5.2rem);
  line-height: 0.95;
  letter-spacing: 0;
}

h3 {
  line-height: 1.05;
  letter-spacing: 0;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-content p:not(.kicker) {
  max-width: 980px;
  margin-bottom: 7px;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0 15px;
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 0.85rem;
  font-weight: 900;
  overflow: hidden;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button::before {
  position: absolute;
  inset: -40% -20%;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(175, 27, 90, 0.62) 45%, rgba(255, 78, 148, 0.48) 55%, transparent 100%);
  opacity: 0;
  transform: translateX(-65%) skewX(-18deg);
  transition: opacity 180ms ease, transform 360ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: rgba(175, 27, 90, 0.92);
  box-shadow: 0 0 0 3px rgba(175, 27, 90, 0.18), 0 14px 34px rgba(175, 27, 90, 0.24);
}

.button:hover::before,
.button:focus-visible::before {
  opacity: 1;
  transform: translateX(35%) skewX(-18deg);
}

.button.primary {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
}

.button.ghost {
  background: rgba(255, 255, 255, 0.06);
}

.section {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(76px, 11vw, 140px) 0;
}

#reel,
#servicios {
  scroll-margin-top: -14px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(280px, 0.55fr);
  gap: clamp(24px, 6vw, 90px);
  align-items: end;
  margin-bottom: 34px;
}

.reel-section .section-heading {
  display: block;
}

.reel-section .section-heading h2 {
  font-size: clamp(1.85rem, 4.5vw, 4.6rem);
  white-space: nowrap;
}

.reel-section .section-heading .kicker {
  margin-bottom: 16px;
}

.section-heading .kicker {
  grid-column: 1 / -1;
  margin-bottom: -12px;
}

.services-section .section-heading {
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 0.73fr);
  row-gap: 8px;
  margin-bottom: 52px;
}

.services-workflow-preview {
  grid-column: 1 / -1;
  display: grid;
  gap: 0;
  margin-bottom: 18px;
}

.services-section .section-heading .services-workflow-preview h2 {
  margin-bottom: 30px;
  font-size: clamp(1.85rem, 4.5vw, 4.6rem);
}

.services-workflow-preview > p {
  margin-bottom: 48px;
  font-size: calc(1rem + 2px);
}

.services-section .section-heading h2 {
  font-size: clamp(1.6rem, 4vw, 4.16rem);
}

.services-section .section-heading .kicker {
  margin-bottom: 0;
}

.filter-bar {
  position: sticky;
  top: 94px;
  z-index: 5;
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 8px;
  margin-bottom: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(11, 11, 11, 0.72);
  backdrop-filter: blur(14px);
}

.filter {
  min-height: 40px;
  padding: 0 14px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: var(--muted);
  cursor: pointer;
  font: inherit;
  font-size: 0.88rem;
  font-weight: 900;
  white-space: nowrap;
}

.filter.is-active,
.filter:hover {
  border-color: rgba(175, 27, 90, 0.6);
  background: rgba(175, 27, 90, 0.2);
  color: #fff;
}

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

.load-more-wrap {
  display: grid;
  place-items: center;
  margin-top: 28px;
}

.load-more[hidden] {
  display: none;
}

.project-card {
  position: relative;
  min-height: 330px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--panel-solid);
  box-shadow: var(--shadow);
}

.project-card.has-media-link {
  cursor: pointer;
}

.project-card.has-media-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
}

.project-card img {
  width: 100%;
  height: 100%;
  min-height: 330px;
  object-fit: cover;
  transition: transform 500ms ease, filter 500ms ease;
}

.project-card:hover img {
  transform: scale(1.045);
  filter: saturate(1.1) contrast(1.08);
}

.project-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 64px 16px 16px;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0));
}

.project-card .project-bug {
  position: absolute;
  top: 8px;
  z-index: 2;
  width: auto;
  max-width: calc(100% - 16px);
  height: 58px;
  min-height: 0;
  object-fit: contain;
  transition: none;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.45));
}

.project-card .project-bug.is-left {
  left: 8px;
}

.project-card .project-bug.is-right {
  right: 8px;
}

.project-overlay h3 {
  margin-bottom: 8px;
  font-size: 1.25rem;
}

.project-overlay p {
  margin: 0;
  font-size: 0.82rem;
}

.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 10px;
}

.project-tags span {
  padding: 4px 7px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.11);
  color: var(--ink);
  font-size: 0.68rem;
  font-weight: 900;
}

.reel-lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: clamp(18px, 4vw, 58px);
  background: rgba(0, 0, 0, 0.86);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.reel-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.reel-lightbox-open {
  overflow: hidden;
}

.guide-image-lightbox-open {
  overflow: hidden;
}

.reel-lightbox-frame {
  position: relative;
  display: grid;
  gap: 16px;
  place-items: center;
  max-width: min(50vw, 980px);
  max-height: min(72vh, 840px);
}

.reel-lightbox-media {
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
  background: #050505;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.72);
}

.reel-lightbox-media img,
.reel-lightbox-media video {
  width: auto;
  height: auto;
  max-width: min(50vw, 980px);
  max-height: 50vh;
  object-fit: contain;
}

.reel-lightbox-media iframe {
  display: block;
  width: min(50vw, 980px);
  aspect-ratio: 16 / 9;
  border: 0;
  background: #000;
  color-scheme: dark;
}

.reel-lightbox-caption {
  width: 100%;
  color: var(--muted);
  text-align: left;
}

.reel-lightbox-caption h3 {
  margin: 0 0 6px;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.32rem);
}

.reel-lightbox-caption p {
  margin: 0;
  font-size: 0.84rem;
}

.reel-lightbox-close {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.reel-lightbox-close:hover,
.reel-lightbox-close:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(175, 27, 90, 0.48);
  transform: translateY(-1px);
}

.guide-image-lightbox {
  position: fixed;
  inset: 0;
  z-index: 90;
  display: grid;
  place-items: center;
  padding: 5vh 5vw;
  background: rgba(0, 0, 0, 0.88);
  opacity: 0;
  visibility: hidden;
  transition: opacity 220ms ease, visibility 220ms ease;
}

.guide-image-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.guide-image-lightbox-frame {
  display: grid;
  place-items: center;
  width: 90vw;
  height: 90vh;
}

.guide-image-lightbox-frame img {
  width: auto;
  height: auto;
  max-width: 90vw;
  max-height: 90vh;
  display: block;
  object-fit: contain;
  border-radius: 10px;
  background: #050505;
  box-shadow: 0 36px 120px rgba(0, 0, 0, 0.72);
}

.guide-image-lightbox-close {
  position: fixed;
  top: clamp(18px, 3vw, 34px);
  right: clamp(18px, 3vw, 34px);
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  background: rgba(18, 18, 18, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.guide-image-lightbox-close:hover,
.guide-image-lightbox-close:focus-visible {
  border-color: var(--accent);
  box-shadow: 0 0 28px rgba(175, 27, 90, 0.48);
  transform: translateY(-1px);
}

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

.service-card,
.tool-panel,
.footer,
.workflow-line,
.workflow-detail,
.dit-grid,
.dit-stations {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.workflow-detail {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.service-card {
  grid-column: span 3;
  min-height: 250px;
  padding: 22px;
  border-color: transparent;
}

.service-card > span {
  display: inline-flex;
  margin-bottom: 70px;
  color: var(--accent-2);
  font-weight: 900;
}

.service-card h3 {
  margin-bottom: 12px;
  font-size: 1.48rem;
}

.service-card .tool-card-action {
  display: grid;
  margin: 16px auto 0;
}

.service-card-dit {
  grid-column: span 3;
  background: rgba(116, 199, 211, 0.09);
}

.service-card-edit {
  grid-column: span 4;
  background: rgba(175, 27, 90, 0.11);
}

.service-card-color {
  grid-column: span 5;
  background: rgba(210, 181, 91, 0.1);
}

.service-card-post {
  grid-column: span 4;
  background: rgba(104, 115, 224, 0.09);
}

.service-card-lab {
  grid-column: span 4;
  background: rgba(74, 176, 132, 0.09);
}

.service-card-dcp {
  grid-column: span 2;
  background: rgba(229, 111, 66, 0.09);
}

.service-card-calibration {
  grid-column: span 2;
  background: rgba(156, 116, 214, 0.09);
}

.service-card-kollaborate {
  background: rgba(236, 95, 143, 0.09);
}

.studio-section {
  scroll-margin-top: 34px;
  padding-top: clamp(30px, 7vw, 85px);
  padding-bottom: clamp(58px, 7vw, 96px);
}

.dit-section {
  scroll-margin-top: -42px;
  padding-bottom: clamp(136px, 16vw, 224px);
}

.studio-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.34fr);
  gap: clamp(28px, 6vw, 92px);
  align-items: start;
  max-width: none;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.studio-heading .kicker {
  margin-bottom: 16px;
}

.studio-heading h2 {
  max-width: 920px;
  font-size: clamp(1.85rem, 4.5vw, 4.6rem);
}

.studio-heading p:not(.kicker) {
  max-width: 760px;
  color: var(--muted);
  font-size: clamp(1.02rem, 1.45vw, 1.22rem);
}

.studio-dolby-logo {
  width: min(100%, 229px);
  height: auto;
  display: block;
  align-self: start;
  justify-self: end;
  margin-top: calc(clamp(30px, 3vw, 40px) + 20px);
  margin-right: clamp(28px, 5vw, 76px);
  opacity: 0.92;
}

.studio-feature-grid,
.dit-grid {
  display: grid;
  gap: 18px;
  align-items: stretch;
}

.studio-feature-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(18px, 2.6vw, 34px);
  margin-top: clamp(30px, 5vw, 64px);
}

.dit-grid {
  grid-template-columns: minmax(0, 5fr) minmax(240px, 3fr);
}

.dit-grid {
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.dit-grid h2 {
  font-size: clamp(1.8rem, 4.5vw, 4.68rem);
}

.dit-grid > div:first-child {
  padding: clamp(24px, 4vw, 44px);
}

.studio-feature {
  display: grid;
  align-content: start;
  gap: clamp(16px, 2vw, 24px);
}

.studio-feature img {
  width: 100%;
  aspect-ratio: 16 / 10;
  display: block;
  border-radius: var(--radius);
  object-fit: contain;
}

.studio-feature h3 {
  margin: 0 0 10px;
  color: var(--ink);
  font-size: clamp(1rem, 1.6vw, 1.32rem);
  line-height: 1.08;
}

.studio-feature p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(0.9rem, 1.05vw, 1rem);
  line-height: 1.55;
}

.studio-nowrap {
  white-space: nowrap;
}

.platform-approval {
  display: grid;
  gap: 4px;
  margin-top: clamp(82px, 10vw, 132px);
}

.platform-approval p {
  margin: 0 0 0 14px;
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.25;
  text-align: left;
}

.platform-approval-box {
  padding: clamp(10px, 1.8vw, 18px) clamp(18px, 3vw, 28px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: transparent;
}

.platform-logo-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(14px, 2vw, 30px);
  overflow-x: auto;
  padding-bottom: 2px;
}

.platform-logo {
  flex: 0 0 auto;
  width: auto;
  max-width: 13%;
  height: clamp(20px, 2.5vw, 34px);
  display: block;
  object-fit: contain;
  opacity: 0.94;
}

.platform-logo-amazon {
  height: clamp(20px, 2.45vw, 34px);
  max-width: 12%;
  transform: translateY(-3px);
}

.platform-logo-a3 {
  height: clamp(30px, 3.6vw, 48px);
  max-width: 14%;
}

.platform-logo-disney {
  height: clamp(34px, 4vw, 56px);
  max-width: 15%;
}

.platform-logo-hbo {
  height: clamp(15px, 1.8vw, 25px);
  max-width: 10%;
}

.platform-logo-movistar {
  height: clamp(26px, 3.1vw, 42px);
  max-width: 14%;
}

.platform-logo-netflix {
  height: clamp(18px, 2.2vw, 30px);
  max-width: 11%;
}

.platform-logo-rtve {
  height: clamp(20px, 2.45vw, 32px);
  max-width: 11%;
}

.dit-visual img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #111;
  box-shadow: var(--shadow);
}

.workflow-line {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr 1.15fr 1.2fr 1.25fr 1.2fr 1.15fr;
  gap: 4px;
  overflow: hidden;
  padding: 10px;
  border-color: rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.05), rgba(255, 255, 255, 0)),
    rgba(5, 5, 6, 0.82);
}

.workflow-line::before {
  content: none;
}

.workflow-line::after {
  position: absolute;
  right: 10px;
  bottom: 4px;
  left: 10px;
  height: 3px;
  content: "";
  background:
    repeating-linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.16) 0 10px,
      transparent 10px 18px
    );
  opacity: 0.38;
  pointer-events: none;
}

.workflow-line button {
  position: relative;
  min-height: 92px;
  display: grid;
  align-content: space-between;
  padding: 12px 12px 14px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 7px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(116, 199, 211, 0.1);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  text-align: left;
  overflow: hidden;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    filter 180ms ease;
}

.workflow-line button::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 0;
  content: "";
  background: rgba(255, 197, 71, 0.68);
  opacity: 0;
  transition:
    width 180ms ease,
    background 180ms ease,
    opacity 180ms ease;
}

.workflow-line button::after {
  position: absolute;
  top: 0;
  right: -1px;
  width: 2px;
  height: 100%;
  content: "";
  background: rgba(0, 0, 0, 0.35);
}

.workflow-line button[data-workflow="prep"] {
  --clip-color: rgba(116, 199, 211, 0.82);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(116, 199, 211, 0.09);
}

.workflow-line button[data-workflow="set"] {
  --clip-color: rgba(83, 157, 224, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(83, 157, 224, 0.13);
}

.workflow-line button[data-workflow="lab"] {
  --clip-color: rgba(74, 176, 132, 0.84);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(74, 176, 132, 0.11);
}

.workflow-line button[data-workflow="edit"] {
  --clip-color: rgba(156, 116, 214, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(156, 116, 214, 0.12);
}

.workflow-line button[data-workflow="color"] {
  --clip-color: rgba(210, 181, 91, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(210, 181, 91, 0.12);
}

.workflow-line button[data-workflow="post"] {
  --clip-color: rgba(229, 111, 66, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(229, 111, 66, 0.11);
}

.workflow-line button[data-workflow="delivery"] {
  --clip-color: rgba(175, 27, 90, 0.86);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 38%),
    rgba(175, 27, 90, 0.13);
}

.workflow-line button:hover,
.workflow-line button.is-active {
  border-color: rgba(255, 255, 255, 0.44);
  box-shadow:
    0 0 0 2px color-mix(in srgb, var(--clip-color, var(--accent)) 36%, transparent),
    0 20px 44px rgba(0, 0, 0, 0.38),
    0 0 34px color-mix(in srgb, var(--clip-color, var(--accent)) 28%, transparent),
    inset 0 1px 0 rgba(255, 255, 255, 0.18);
  filter: saturate(1.58) brightness(1.28);
  transform: translateY(-6px);
}

.workflow-line button.is-active {
  border-color: var(--clip-color, rgba(255, 197, 71, 0.72));
}

.workflow-line button.is-active::before {
  width: 2px;
  background: rgba(255, 197, 71, 0.88);
  opacity: 1;
}

.workflow-line button:hover:not(.is-active)::before {
  width: 3px;
  background: rgba(255, 197, 71, 0.78);
  opacity: 0.95;
}

.workflow-line span {
  align-self: start;
  justify-self: start;
  color: var(--accent-2);
  font-weight: 900;
  font-size: 0.8rem;
  line-height: 1;
}

.workflow-line strong {
  margin-top: 14px;
  font-size: clamp(1.02rem, 1.42vw, 1.34rem);
  line-height: 1;
}

.workflow-line small {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 750;
  line-height: 1.15;
}

.workflow-detail {
  margin-top: 34px;
  margin-bottom: 60px;
  height: 440px;
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.6fr) minmax(220px, 0.4fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  padding: 24px;
  overflow: visible;
}

.workflow-detail::after {
  position: absolute;
  right: 6%;
  bottom: -60px;
  left: 6%;
  height: 3px;
  content: "";
  background: linear-gradient(
    90deg,
    transparent 0%,
    color-mix(in srgb, var(--active-workflow-color, rgba(116, 199, 211, 0.82)) 20%, transparent) 16%,
    var(--active-workflow-color, rgba(116, 199, 211, 0.82)) 50%,
    color-mix(in srgb, var(--active-workflow-color, rgba(116, 199, 211, 0.82)) 20%, transparent) 84%,
    transparent 100%
  );
  pointer-events: none;
}

.workflow-detail-extra {
  min-height: 170px;
  display: grid;
  place-items: center;
  align-self: stretch;
  border: 0;
  border-radius: 0;
  background: transparent;
  overflow: hidden;
}

.workflow-detail-extra img {
  width: 100%;
  height: auto;
  max-height: 230px;
  display: block;
  object-fit: contain;
}

.workflow-detail-extra > img {
  transform: translateX(-34px);
}

.workflow-detail-link {
  width: 100%;
  display: grid;
  gap: 14px;
  place-items: center;
  color: var(--muted);
  text-align: center;
  text-decoration: none;
  transition:
    color 180ms ease,
    filter 180ms ease,
    transform 180ms ease;
}

.workflow-detail-link:hover,
.workflow-detail-link:focus-visible {
  color: var(--ink);
  filter: saturate(1.12) brightness(1.08);
  transform: translateY(-2px);
}

.workflow-detail-link img {
  max-height: 190px;
}

.workflow-detail-link > p {
  max-width: 320px;
  margin: 0;
  color: var(--ink);
  font-size: 0.59rem;
  font-weight: 400;
  line-height: 1.35;
  transform: scale(0.74);
  transform-origin: top center;
}

.workflow-detail-link-entropy {
  align-content: center;
  gap: clamp(10px, 1.4vw, 16px);
  color: var(--accent-2);
}

.workflow-entropy-card {
  width: min(100%, 360px);
  display: grid;
  gap: 0;
  justify-items: center;
}

.workflow-entropy-copy {
  display: grid;
  gap: 7px;
  margin: 0;
  color: var(--accent-2);
  font-size: clamp(1.12rem, 2vw, 1.72rem);
  font-weight: 850;
  line-height: 1.14;
  text-align: center;
}

.workflow-entropy-copy small {
  color: var(--ink);
  font-size: 0.65em;
  font-weight: 400;
  letter-spacing: 0.04em;
}

.workflow-entropy-copy span:first-child {
  color: var(--ink);
  font-weight: 400;
}

.workflow-entropy-service {
  font-size: 0.8em;
}

.workflow-detail-link .workflow-entropy-card img {
  width: min(100%, 225px);
  max-height: 90px;
  margin-top: -18px;
}

.workflow-detail-link-finisgrade {
  gap: clamp(10px, 1.5vw, 18px);
  color: var(--ink);
}

.workflow-finisgrade-card {
  width: min(100%, 360px);
  display: grid;
  gap: 6px;
  justify-items: center;
  transform: translateY(-15px);
}

.workflow-detail-link .workflow-finisgrade-card img {
  width: min(100%, 198px);
  max-height: 125px;
  transform: translate(15px, -20px);
}

.workflow-finisgrade-brand {
  color: var(--ink);
  font-size: clamp(1.04rem, 1.84vw, 1.59rem);
  font-weight: 400;
  line-height: 0.95;
  margin-top: -6px;
}

.workflow-finisgrade-brand span {
  color: var(--accent);
}

.workflow-finisgrade-copy {
  display: grid;
  gap: 2px;
  margin: -2px 0 0;
  color: var(--ink);
  font-size: clamp(0.51rem, 0.9vw, 0.78rem);
  font-weight: 400;
  line-height: 1.02;
  text-align: center;
}

.workflow-detail-chip {
  width: clamp(82px, 10vw, 124px);
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border: 1px solid color-mix(in srgb, var(--active-workflow-color, var(--accent)) 52%, transparent);
  border-radius: 14px;
  color: var(--ink);
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 900;
  background: color-mix(in srgb, var(--active-workflow-color, var(--accent)) 16%, transparent);
}

.workflow-detail-copy {
  min-width: 0;
  padding-left: clamp(36px, 5vw, 76px);
}

.workflow-detail h3 {
  margin-bottom: 8px;
  font-size: clamp(1.77rem, 3.8vw, 3.04rem);
}

.workflow-detail h3.is-large-title {
  font-size: clamp(1.93rem, 4.14vw, 3.31rem);
}

.workflow-detail h3.is-set-title {
  font-size: clamp(1.68rem, 3.61vw, 2.89rem);
}

.workflow-detail p {
  max-width: none;
  margin-bottom: 0;
  font-size: 1rem;
}

.workflow-detail .workflow-finisgrade-copy {
  font-size: clamp(0.51rem, 0.9vw, 0.78rem);
}

.workflow-detail .workflow-avid-copy {
  font-size: clamp(0.51rem, 0.9vw, 0.78rem);
}

.workflow-detail-link-ditstation {
  gap: clamp(10px, 1.5vw, 18px);
  color: var(--ink);
}

.workflow-ditstation-card {
  width: min(100%, 360px);
  display: grid;
  gap: clamp(8px, 1.2vw, 14px);
  justify-items: center;
}

.workflow-detail-link .workflow-ditstation-card img {
  width: min(100%, 264px);
  max-height: 196px;
  object-fit: contain;
}

.workflow-ditstation-copy {
  display: grid;
  gap: 2px;
  margin: 0;
  color: var(--ink);
  font-size: 0.54rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  transform: scale(0.74);
  transform-origin: top center;
}

.workflow-detail-link-dcp {
  gap: clamp(10px, 1.5vw, 18px);
  color: var(--ink);
}

.workflow-dcp-card {
  width: min(100%, 360px);
  display: grid;
  gap: clamp(12px, 1.6vw, 18px);
  justify-items: center;
  transform: translateY(-20px);
}

.workflow-detail-link .workflow-dcp-card img {
  width: min(100%, 210px);
  max-height: 156px;
  object-fit: contain;
}

.workflow-dcp-copy {
  margin: 0;
  color: var(--ink);
  font-size: 0.54rem;
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
  transform: scale(0.74);
  transform-origin: top center;
}

.workflow-avid-card {
  width: min(100%, 360px);
  display: grid;
  gap: clamp(10px, 1.5vw, 18px);
  justify-items: center;
}

.workflow-detail-link .workflow-avid-card img,
.workflow-avid-card img {
  width: min(100%, 245px);
  max-height: 206px;
  border-radius: 18px;
  object-fit: contain;
}

.workflow-avid-copy {
  display: grid;
  gap: 0;
  margin: 0;
  color: var(--ink);
  font-size: clamp(0.51rem, 0.9vw, 0.78rem);
  font-weight: 400;
  line-height: 1.35;
  text-align: center;
}

.workflow-detail-list {
  margin-top: 18px;
}

.service-list-spacer {
  visibility: hidden;
}

.service-list-spacer::before {
  display: none;
}

.dit-visual {
  display: grid;
  grid-template-columns: 1fr;
  gap: 14px;
  place-items: center;
}

.dit-visual img {
  width: auto;
  height: auto;
  min-height: 0;
  max-width: none;
  max-height: none;
  object-fit: contain;
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

.kollaborate-section {
  padding-top: clamp(82px, 10vw, 130px);
}

.kollaborate-hero,
.kollab-card,
.kollab-apps {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.kollaborate-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(320px, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
  overflow: hidden;
}

.kollaborate-hero h2 {
  font-size: clamp(2.4rem, 6vw, 5.8rem);
}

.kollaborate-hero img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #080808;
}

.kollaborate-hero .button {
  margin-top: 18px;
}

.kollab-subheading {
  display: block;
  margin-top: clamp(56px, 8vw, 92px);
  margin-bottom: 24px;
}

.kollab-subheading .kicker {
  margin-bottom: 18px;
}

.kollab-subheading h2 {
  white-space: nowrap;
}

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

.kollab-card {
  overflow: hidden;
}

.kollab-images {
  position: relative;
  height: 300px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(circle at 28% 28%, rgba(175, 27, 90, 0.25), transparent 18rem),
    #0d0d0d;
}

.kollab-images img {
  position: absolute;
  max-width: 72%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.kollab-images.is-comments img:first-child {
  top: 34px;
  left: 18px;
}

.kollab-images.is-comments img:last-child {
  right: 22px;
  bottom: 34px;
}

.kollab-images.is-approval img:first-child {
  left: -24px;
  bottom: 30px;
}

.kollab-images.is-approval img:last-child {
  top: 34px;
  right: 20px;
}

.kollab-images.is-project img:first-child {
  top: 26px;
  left: 18px;
}

.kollab-images.is-project img:last-child {
  right: -18px;
  bottom: 32px;
}

.kollab-card h3,
.kollab-card p {
  padding-inline: 22px;
}

.kollab-card h3 {
  margin: 24px 0 12px;
  font-size: 1.38rem;
}

.kollab-card p:last-child {
  padding-bottom: 24px;
}

.kollab-apps {
  margin-top: 18px;
  padding: clamp(24px, 5vw, 42px);
}

.kollab-apps .section-heading {
  margin-bottom: 24px;
}

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

.app-list article {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: auto 1fr;
  gap: 16px;
  align-items: start;
  min-height: 0;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
}

.app-card-head {
  display: grid;
  grid-template-columns: 64px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
}

.app-list img {
  width: 72px;
  height: 72px;
  border-radius: 16px;
}

.app-list h3 {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  font-size: 1.1rem;
  line-height: 1.05;
}

.app-list h3 span {
  font-size: 2.2rem;
  line-height: 0.95;
}

.app-list h3 small {
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
  line-height: 1;
}

.app-list p {
  grid-column: 1 / -1;
  font-size: 0.92rem;
  margin-bottom: 0;
}

.app-list a {
  grid-column: 2;
  grid-row: 1;
  justify-self: end;
  align-self: center;
  min-height: 42px;
  padding-inline: 14px;
  font-size: 0.85rem;
  white-space: nowrap;
}

.kollaborate-page {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto;
}

.kollab-intro,
.kollab-login,
.kollab-feature-box,
.kollab-row,
.kollab-ipad-box {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.kollaborate-page .kollab-intro,
.kollaborate-page .kollab-login {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.kollab-intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(24px, 5vw, 48px);
}

.kollab-intro h1 {
  font-size: clamp(1.8rem, 4vw, 4rem);
}

.kollab-intro-media img {
  width: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.kollab-login {
  display: grid;
  justify-items: center;
  margin-top: 16px;
  padding: 10px 0 26px;
}

.kollab-flow,
.kollab-ipad {
  margin-top: 0;
}

.kollab-flow {
  padding-bottom: 24px;
}

.kollab-ipad {
  padding-top: 24px;
}

.kollab-page-heading {
  display: block;
  margin-bottom: 24px;
}

.kollab-page-heading .kicker {
  margin-bottom: 18px;
}

.kollab-page-heading h2 {
  font-size: clamp(1rem, 2.5vw, 2.6rem);
  white-space: nowrap;
}

.kollab-feature-box {
  display: grid;
  gap: 4px;
  padding: clamp(18px, 3vw, 28px);
}

.kollab-row {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(320px, 1fr);
  gap: clamp(22px, 4vw, 46px);
  align-items: center;
  margin-top: 0;
  padding: clamp(14px, 2.6vw, 26px);
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  overflow: hidden;
}

.kollab-row.is-reversed {
  grid-template-columns: minmax(320px, 1fr) minmax(0, 0.88fr);
}

.kollab-row.is-reversed .kollab-row-copy {
  order: 2;
}

.kollab-row.is-reversed .kollab-row-media {
  order: 1;
}

.kollab-row h3 {
  margin-bottom: 16px;
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
}

.kollab-row-media {
  position: relative;
  min-height: 320px;
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  background:
    radial-gradient(circle at 28% 28%, rgba(175, 27, 90, 0.2), transparent 18rem),
    #0d0d0d;
}

.kollab-row-media img {
  position: absolute;
  max-width: 74%;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 10px;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.52);
}

.kollab-row-media.is-comments img:first-child {
  top: 36px;
  left: 26px;
}

.kollab-row-media.is-comments img:last-child {
  right: 28px;
  bottom: 40px;
}

.kollab-row-media.is-approval img:first-child {
  left: -18px;
  bottom: 34px;
}

.kollab-row-media.is-approval img:last-child {
  top: 34px;
  right: 24px;
}

.kollab-row-media.is-project img:first-child {
  top: 30px;
  left: 24px;
}

.kollab-row-media.is-project img:last-child {
  right: -14px;
  bottom: 34px;
}

.kollab-ipad-box {
  padding: clamp(24px, 5vw, 42px);
}

.kollab-ipad .kollab-page-heading {
  margin-bottom: 12px;
}

.kollab-ipad-box > p {
  color: #d2cfca;
  margin-bottom: 28px;
}

.plain-legal {
  padding: 22px 0 17px;
  color: var(--muted);
  font-size: 0.82rem;
  text-align: center;
}

.plain-legal p {
  margin: 0;
}

.plain-legal a {
  color: var(--accent-2);
  font-weight: 900;
}

.legal-page {
  width: min(980px, calc(100% - 36px));
  margin: 0 auto;
  padding: clamp(28px, 5vw, 64px) 0;
}

.legal-brand {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(22px, 4vw, 38px);
}

.legal-brand img {
  width: clamp(108px, 14vw, 150px);
  height: auto;
  object-fit: contain;
}

.legal-document {
  padding: clamp(24px, 5vw, 48px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.legal-document h1 {
  margin: 0 0 24px;
  font-size: clamp(2.1rem, 5vw, 4rem);
  line-height: 0.95;
}

.legal-document h1:not(:first-child) {
  margin-top: 52px;
}

.legal-document h2 {
  margin: 34px 0 12px;
  color: var(--ink);
  font-size: clamp(1.2rem, 2vw, 1.7rem);
}

.legal-document p {
  color: #d2cfca;
}

.legal-page-footer {
  padding-top: 24px;
}

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

.feature-list li {
  position: relative;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.45;
}

.feature-list li.feature-list-highlight {
  color: var(--ink);
}

.feature-list li::before {
  position: absolute;
  top: 0.62em;
  left: 0;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--accent);
  content: "";
}

.dit-followup {
  display: grid;
  gap: 18px;
  margin-top: 4px;
}

.dit-info-row {
  display: grid;
  gap: clamp(20px, 4vw, 54px);
  align-items: center;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
}

.dit-stations-row {
  width: 94%;
  grid-template-columns: minmax(230px, 0.36fr) minmax(0, 1fr);
  gap: clamp(12px, 2.2vw, 30px);
  margin-right: auto;
  margin-left: auto;
  background: transparent;
  padding-top: clamp(24px, 2.8vw, 34px);
  padding-bottom: clamp(4px, 1.2vw, 14px);
}

.dit-qr-row {
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.36fr);
}

.metacheck-row {
  grid-template-columns: minmax(0, 0.65fr) minmax(260px, 0.35fr);
}

.dit-info-copy {
  max-width: 860px;
}

.dit-info-copy h3 {
  margin-bottom: 16px;
  font-size: 1.6rem;
}

.dit-info-copy .kicker {
  color: var(--accent-2);
}

.dit-info-copy h3 sup {
  font-size: 0.52em;
  line-height: 0;
}

.dit-info-copy p {
  color: var(--muted);
}

.dit-info-copy .feature-list a {
  color: var(--accent-2);
  font-weight: 850;
}

.dit-info-copy .feature-list a:hover {
  color: var(--ink);
}

.dit-info-copy .feature-list a span {
  display: inline-block;
  margin-left: 0.55em;
}

.dit-station-image {
  width: 220px;
  height: 244px;
  max-width: 100%;
  justify-self: center;
  object-fit: contain;
}

.qr-images {
  display: flex;
  gap: 16px;
  align-items: end;
  justify-content: center;
  margin-top: 0;
}

.qr-images img {
  width: 186px;
  max-width: calc(50% - 8px);
  height: auto;
}

.tool-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 28px;
  align-items: stretch;
  padding: clamp(24px, 5vw, 48px);
  background:
    linear-gradient(135deg, rgba(175, 27, 90, 0.26), rgba(116, 199, 211, 0.08)),
    var(--panel);
}

.tools-section .tool-panel h2 {
  font-size: clamp(1.7rem, 4.6vw, 4rem);
  line-height: 1.1;
}

.tools-section .tool-panel > div:first-child > p:not(.kicker) {
  font-size: clamp(1.02rem, 1.35vw, 1.18rem);
}

.tools-section {
  scroll-margin-top: 112px;
}

.tool-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-rows: minmax(178px, auto) minmax(142px, auto);
  gap: 12px;
  align-content: start;
}

.tool-cards article {
  display: grid;
  grid-template-rows: auto 1fr auto;
  align-content: start;
  gap: 8px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
}

.tool-cards article.tool-card-compact {
  min-height: 142px;
  padding-block: 16px;
}

.tool-cards h3 {
  font-size: 1.38em;
  margin-bottom: 8px;
}

.tool-cards p {
  margin-bottom: 0;
}

.tool-card-action {
  width: 38px;
  height: 38px;
  display: inline-grid;
  place-items: center;
  justify-self: end;
  align-self: end;
  margin-top: 10px;
  border: 1px solid rgba(175, 27, 90, 0.52);
  border-radius: 50%;
  background: rgba(175, 27, 90, 0.14);
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 900;
  line-height: 1;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.tool-card-action:hover {
  border-color: var(--accent);
  background: rgba(175, 27, 90, 0.28);
  box-shadow: 0 0 0 4px rgba(175, 27, 90, 0.16);
  transform: translateY(-2px);
}

.footer {
  width: min(1320px, calc(100% - 36px));
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.68fr);
  gap: clamp(18px, 4vw, 54px);
  margin: 0 auto 52px;
  padding: clamp(12px, 2.4vw, 24px) clamp(24px, 5vw, 48px);
  background: radial-gradient(circle at 18% 18%, rgba(175, 27, 90, 0.1), transparent 24rem);
}

#contacto {
  scroll-margin-top: -234px;
}

.contact-preimage {
  width: min(1320px, calc(100% - 36px));
  margin: 0 auto clamp(42px, 6vw, 82px);
}

.contact-preimage img {
  width: 100%;
  display: block;
  border-radius: var(--radius);
}

.subpage-main {
  padding-top: 118px;
}

.tool-page-main {
  padding-top: clamp(14px, 3vw, 34px);
}

.tool-page-main .tool-page-hero {
  min-height: auto;
  padding-top: clamp(18px, 3.5vw, 44px);
  padding-bottom: clamp(16px, 3vw, 34px);
}

.tool-page-main .tool-page-hero + .section {
  padding-top: clamp(14px, 2.6vw, 32px);
}

.tips-main .section {
  padding-top: clamp(28px, 4.5vw, 54px);
  padding-bottom: clamp(28px, 4.5vw, 54px);
}

.tips-main .page-hero + .section {
  padding-top: clamp(24px, 4vw, 44px);
}

.tips-main .clean-page-hero {
  min-height: 31svh;
}

.tips-dit-reference {
  padding-bottom: clamp(12px, 2vw, 24px);
}

.tips-dit-reference .dit-grid > div:first-child > p:not(.kicker) {
  color: var(--ink);
  font-size: clamp(1.08rem, 1.48vw, 1.28rem);
}

.tips-main .article-grid {
  padding-bottom: clamp(10px, 2vw, 20px);
}

.tips-main .article-grid .text-panel h2 {
  font-size: clamp(1.65rem, 3.1vw, 3rem);
}

.tips-main .article-grid .text-panel h2.tips-tool-title-small {
  font-size: clamp(1.32rem, 2.48vw, 2.4rem);
}

.tips-qr-section {
  padding-top: 0;
  scroll-margin-top: 112px;
}

#adl-qrtrack {
  padding-top: clamp(10px, 2vw, 20px);
}

.tips-qr-section .dit-info-copy h3 {
  font-size: 2.08rem;
}

.metacheck-title {
  display: inline-block;
  font-size: 1.3em;
}

.metacheck-launcher {
  display: grid;
  grid-template-columns: 1fr;
  justify-items: center;
  align-items: center;
  gap: 14px;
  width: min(347px, 100%);
  min-height: 322px;
  justify-self: center;
  margin-inline: auto;
  padding: clamp(18px, 3vw, 30px);
  border: 2px dashed rgba(255, 255, 255, 0.28);
  border-radius: 10px;
  background: rgba(19, 19, 19, 0.78);
  color: var(--ink);
  text-align: center;
}

.metacheck-launcher__mark {
  display: grid;
  place-items: center;
  width: 92px;
  aspect-ratio: 1;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 10px;
  background: #7b133c;
  color: var(--ink);
  font-weight: 900;
}

.metacheck-launcher__input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.metacheck-launcher h2 {
  margin: 0;
  color: var(--ink);
  font-size: 1rem;
}

.metacheck-launcher p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 0.78rem;
}

.metacheck-launcher__button {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 41px;
  padding: 0 16px;
  border: 1px solid var(--line);
  border-radius: 10px;
  overflow: hidden;
  background: #7b133c;
  color: #fff;
  font: inherit;
  font-size: 0.85rem;
  font-weight: 900;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease, color 180ms ease;
}

.metacheck-launcher__button::before {
  position: absolute;
  inset: -40% -20%;
  z-index: -1;
  content: "";
  background: linear-gradient(110deg, transparent 0%, rgba(175, 27, 90, 0.62) 45%, rgba(255, 78, 148, 0.48) 55%, transparent 100%);
  opacity: 0;
  transform: translateX(-65%) skewX(-18deg);
  transition: opacity 180ms ease, transform 360ms ease;
}

.metacheck-launcher__button:hover,
.metacheck-launcher__button:focus-visible {
  border-color: rgba(175, 27, 90, 0.92);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 0 3px rgba(175, 27, 90, 0.18), 0 14px 34px rgba(175, 27, 90, 0.24);
  transform: translateY(-2px);
}

.metacheck-launcher__button:hover::before,
.metacheck-launcher__button:focus-visible::before {
  opacity: 1;
  transform: translateX(35%) skewX(-18deg);
}

.external-tools-section {
  padding-top: 0;
}

.external-tools-panel {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 38px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.external-tools-panel .kicker {
  color: var(--muted);
}

.external-tool-cards {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.external-tool-cards article {
  display: grid;
  grid-template-rows: auto 1fr auto;
  gap: 8px;
  min-height: 168px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
}

.external-tool-cards h3 {
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.05;
}

.external-tool-cards p {
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.45;
}

.external-tool-cards .tool-card-action {
  width: 30px;
  height: 30px;
  font-size: 0.9rem;
}

.external-tool-cards-compact {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2px;
}

.external-tool-cards-compact article {
  min-height: 76px;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-rows: 1fr;
  align-items: center;
  padding-block: 14px;
}

.external-tool-cards-compact h3 {
  margin: 0;
}

.page-hero {
  width: min(1320px, calc(100% - 36px));
  min-height: 58svh;
  position: relative;
  display: grid;
  align-content: end;
  margin: 0 auto;
  padding: clamp(80px, 12vw, 150px) clamp(22px, 5vw, 56px) clamp(36px, 6vw, 70px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(175, 27, 90, 0.26), rgba(116, 199, 211, 0.06)),
    rgba(17, 17, 17, 0.72);
  box-shadow: var(--shadow);
}

.page-hero h1 {
  margin-bottom: 16px;
}

.page-hero p:not(.kicker) {
  max-width: 760px;
  font-size: clamp(1.05rem, 1.8vw, 1.34rem);
}

.tool-page-hero h1 {
  font-size: clamp(2.6rem, 9vw, 7rem);
}

.tool-page-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: clamp(22px, 5vw, 70px);
}

.tool-hero-copy {
  min-width: 0;
}

.tool-hero-logo-link {
  display: inline-flex;
  justify-self: end;
  margin-top: clamp(14px, 3vw, 36px);
}

.tool-hero-logo {
  width: auto;
  height: auto;
  display: block;
}

.magenta-text {
  color: var(--accent);
}

.registered-mark {
  margin-left: 0.12em;
  color: var(--ink);
  font-size: 0.26em;
  line-height: 0;
  vertical-align: super;
}

.white-text {
  color: var(--ink);
}

.joined-title {
  word-spacing: 0;
  white-space: nowrap;
}

.joined-title span {
  display: inline;
}

.av-title-prefix {
  display: inline-block;
  font-size: 0.5em;
}

.clean-page-hero,
.dcp-hero {
  min-height: 35svh;
  padding-top: clamp(36px, 7vw, 90px);
  border-color: transparent;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
}

.clean-page-hero > * {
  position: relative;
  z-index: 2;
}

.dcp-hero > :not(.dcp-hero-projector) {
  position: relative;
  z-index: 2;
  transform: translateY(-18px);
}

.dcp-hero-projector {
  position: absolute;
  top: clamp(14px, 2.6vw, 34px);
  right: clamp(42px, 7vw, 112px);
  z-index: 1;
  width: clamp(150px, 25vw, 330px);
  max-width: 42%;
  height: auto;
  pointer-events: none;
  filter: saturate(1.08) contrast(1.08);
}

.article-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.merged-info-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.merged-info-panel .text-panel {
  min-height: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.text-panel {
  min-height: 320px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.text-panel h2 {
  font-size: clamp(1.8rem, 3.4vw, 3.2rem);
}

.visually-hidden-space {
  visibility: hidden;
}

.faq-section {
  width: min(1220px, calc(100% - clamp(28px, 6vw, 96px)));
  padding-top: clamp(46px, 8vw, 92px);
}

.faq-section > .section-heading {
  gap: 16px;
  margin-bottom: clamp(2px, 0.8vw, 10px);
}

.faq-section > .section-heading h2 {
  font-size: clamp(1.52rem, 3.62vw, 2.9rem);
}

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

.faq-item {
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(17, 17, 17, 0.58);
  overflow: hidden;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.faq-item[open] {
  border-color: rgba(255, 197, 71, 0.36);
  background: rgba(24, 24, 24, 0.74);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.2);
}

.faq-item summary {
  position: relative;
  display: block;
  padding: 20px 58px 20px clamp(18px, 3vw, 30px);
  color: var(--ink);
  font-size: clamp(0.96rem, 1.36vw, 1.2rem);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item summary::after {
  position: absolute;
  top: 50%;
  right: clamp(18px, 3vw, 28px);
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 197, 71, 0.38);
  border-radius: 50%;
  color: var(--accent-2);
  content: "+";
  font-size: 1.1rem;
  line-height: 1;
  transform: translateY(-50%);
}

.faq-item[open] summary::after {
  content: "-";
}

.faq-item p {
  max-width: none;
  margin: 0;
  padding: 0 clamp(18px, 3vw, 30px) 18px;
  color: var(--muted);
}

.faq-item p + p {
  padding-top: 0;
}

.faq-item .link-pills,
.faq-item .feature-list {
  margin: 0 clamp(18px, 3vw, 30px) 18px;
}

.faq-item .feature-list li {
  color: var(--muted);
}

.faq-item .feature-list a {
  color: var(--accent-2);
  font-weight: 850;
}

.faq-reference-content {
  width: 100%;
  max-width: none;
  padding: 0 clamp(18px, 3vw, 30px) 20px;
  color: var(--muted);
  font-size: clamp(0.88rem, 1vw, 0.98rem);
  line-height: 1.7;
  text-align: left;
}

.faq-reference-content.link-pills {
  max-width: none;
  margin: 0 clamp(18px, 3vw, 30px) 20px;
  padding: 0;
}

.faq-reference-content h2,
.faq-reference-content h3,
.faq-reference-content h6 {
  margin: 18px 0 8px;
  color: var(--ink);
  line-height: 1.12;
}

.faq-reference-content h2 {
  font-size: clamp(1.1rem, 1.9vw, 1.55rem);
}

.faq-reference-content h3 {
  font-size: clamp(1rem, 1.5vw, 1.26rem);
}

.faq-reference-content h6 {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.faq-reference-content li {
  margin: 4px 0 4px 1.1rem;
  color: var(--muted);
}

.faq-reference-content img {
  display: block;
  max-width: min(100%, 700px);
  height: auto;
  margin: 16px 0;
  border-radius: 8px;
}

.aces-workflow-note {
  margin-top: 24px;
}

.aces-guide-links {
  margin: 0 auto;
  text-align: center;
}

.faq-centered-links {
  margin: 0 auto;
  text-align: center;
}

.faq-bottom-link {
  margin-top: 22px;
}

.aces-workflow-note p {
  margin: 0 0 14px;
  padding: 0;
  color: inherit;
  line-height: inherit;
  text-align: inherit;
}

.aces-workflow-note img {
  width: auto;
  max-width: 100%;
  margin: 22px auto 0;
  border-radius: 0;
}

.faq-reference-content img.faq-centered-image {
  margin-right: auto;
  margin-left: auto;
}

.faq-image-download {
  display: block;
  width: fit-content;
  max-width: 100%;
  margin: 16px auto 4px;
}

.faq-image-download img {
  margin: 0;
}

.faq-reference-content .highlight a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  margin: 4px 6px 4px 0;
  padding: 8px 12px;
  border: 1px solid rgba(175, 27, 90, 0.5);
  border-radius: 999px;
  background: rgba(175, 27, 90, 0.14);
  color: var(--accent-2);
  font-size: 0.82rem;
  font-weight: 900;
  line-height: 1.15;
  text-transform: uppercase;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.faq-reference-content .highlight a:hover {
  border-color: var(--accent);
  background: rgba(175, 27, 90, 0.3);
  box-shadow:
    0 0 0 4px rgba(175, 27, 90, 0.15),
    0 14px 30px rgba(175, 27, 90, 0.2);
  color: var(--ink);
  transform: translateY(-2px);
}

.copy-tool-section {
  padding-top: clamp(28px, 5vw, 58px);
}

.guide-main .section {
  padding-top: clamp(14px, 2.6vw, 32px);
}

.guide-hero {
  position: relative;
  min-height: auto;
  padding-right: clamp(190px, 24vw, 300px);
  padding-top: clamp(18px, 3.5vw, 44px);
  padding-bottom: clamp(16px, 3vw, 34px);
}

.guide-hero .tool-hero-logo-link {
  position: absolute;
  top: clamp(8px, 1.2vw, 16px);
  right: clamp(22px, 5vw, 70px);
  margin-top: 0;
}

.guide-hero h1 {
  max-width: 920px;
  font-size: clamp(1.5rem, 4.14vw, 3.45rem);
}

.guide-layout {
  width: min(1120px, calc(100% - 36px));
  display: grid;
  gap: 16px;
}

.guide-panel {
  padding: clamp(22px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.guide-reference {
  display: grid;
  grid-template-columns: minmax(0, 0.65fr) minmax(220px, 0.35fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.guide-reference-copy {
  min-width: 0;
}

.guide-reference-image {
  width: 100%;
  min-height: 160px;
  display: grid;
  place-items: center;
  align-self: center;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.24);
  cursor: zoom-in;
  overflow: hidden;
  transform: translateY(8px);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.guide-reference-image:hover,
.guide-reference-image:focus-visible {
  border-color: rgba(175, 27, 90, 0.72);
  box-shadow:
    0 0 0 4px rgba(175, 27, 90, 0.14),
    0 18px 44px rgba(0, 0, 0, 0.28);
  transform: translateY(6px);
}

.guide-reference-image img {
  width: 100%;
  height: auto;
  max-height: 240px;
  display: block;
  object-fit: contain;
}

.guide-warning {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr);
  gap: 16px;
  align-items: center;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 197, 71, 0.46);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 197, 71, 0.16), rgba(175, 27, 90, 0.14)),
    rgba(0, 0, 0, 0.22);
}

.guide-warning span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 197, 71, 0.58);
  border-radius: 50%;
  color: var(--accent-2);
  font-size: 1.55rem;
  font-weight: 900;
  line-height: 1;
}

.guide-warning p {
  margin: 0;
  color: var(--ink);
  font-size: inherit;
  line-height: 1.55;
}

.guide-intro {
  display: grid;
  gap: clamp(12px, 2vw, 22px);
}

.guide-intro h2 {
  margin-bottom: clamp(4px, 1vw, 10px);
}

.guide-intro h2,
.guide-section-heading h2,
.guide-reference h2 {
  max-width: 860px;
  font-size: clamp(1.24rem, 3.04vw, 2.56rem);
  line-height: 0.98;
}

.guide-intro h2 {
  max-width: none;
}

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

.guide-option {
  display: grid;
  gap: 12px;
  padding: clamp(18px, 3vw, 28px);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
}

.guide-option span {
  justify-self: end;
  color: var(--accent-2);
  font-size: clamp(2.7rem, 7vw, 5.8rem);
  font-weight: 900;
  line-height: 0.82;
}

.guide-option h3 {
  font-size: clamp(1.12rem, 2vw, 1.52rem);
}

.guide-panel p,
.guide-option p,
.guide-checklist li {
  color: var(--muted);
}

.guide-reference {
  background:
    linear-gradient(135deg, rgba(175, 27, 90, 0.2), rgba(116, 199, 211, 0.06)),
    var(--panel);
}

.guide-section-heading {
  margin-bottom: clamp(18px, 3vw, 28px);
}

.guide-checklist {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.guide-checklist li {
  position: relative;
  padding-left: 22px;
  line-height: 1.55;
}

.guide-checklist li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  content: "";
}

.guide-naming {
  border-color: rgba(255, 197, 71, 0.3);
}

.guide-naming .kicker {
  color: var(--accent-2);
}

.guide-aaf-reference {
  overflow: hidden;
}

.guide-aaf-reference .guide-section-heading h2,
.guide-media-reference .guide-section-heading h2 {
  font-size: clamp(0.62rem, 1.52vw, 1.28rem);
  line-height: 1.08;
}

.guide-aaf-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
}

.guide-aaf-grid img {
  width: auto;
  max-width: min(100%, 990px);
  height: auto;
  display: block;
  justify-self: center;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.28);
}

.guide-aaf-grid p {
  margin-top: clamp(18px, 3vw, 28px);
}

.guide-aaf-grid .guide-note {
  color: var(--accent-2);
}

.guide-media-reference .guide-note {
  margin-top: clamp(18px, 3vw, 28px);
  color: var(--accent-2);
}

.copy-tool-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.42fr);
  gap: 18px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.copy-tool-form {
  display: grid;
  gap: 18px;
}

.copy-fieldset {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(190px, 0.45fr);
  gap: 12px;
}

.copy-tool-form label {
  display: grid;
  gap: 8px;
}

.copy-tool-form label span {
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.copy-tool-form input,
.copy-tool-form select {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
  color: var(--ink);
  font: inherit;
}

.copy-tool-form input:disabled {
  opacity: 0.45;
}

.custom-speed {
  opacity: 0.58;
}

.custom-speed.is-active {
  opacity: 1;
}

.custom-av-values {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.shooting-storage-section {
  padding-top: clamp(8px, 2vw, 22px);
}

.shooting-title {
  margin: 0 0 clamp(18px, 3vw, 28px);
  color: var(--ink);
  font-size: clamp(0.91rem, 3.15vw, 2.45rem);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: 0;
}

.shooting-basic-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.dailies-box {
  display: grid;
  gap: 14px;
  padding: clamp(18px, 3vw, 26px);
  border: 1px solid rgba(255, 197, 71, 0.2);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.035);
}

.dailies-box .kicker {
  margin: 0;
  color: var(--ink);
}

.dailies-custom-resolution {
  opacity: 0.58;
}

.dailies-custom-resolution.is-active {
  opacity: 1;
}

.dailies-day-result,
.project-copies-result {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 14px;
  padding-top: 12px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.dailies-day-result span,
.project-copies-result span {
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.dailies-day-result output,
.project-copies-result strong {
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.45rem);
  font-weight: 900;
  text-align: right;
}

.shooting-result {
  align-content: center;
}

.shooting-result output span:last-child {
  color: var(--accent-2);
  font-size: clamp(1.05rem, 2.5vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.copy-result {
  display: grid;
  align-content: center;
  gap: 14px;
  padding: clamp(22px, 3vw, 34px);
  border: 1px solid rgba(255, 197, 71, 0.28);
  border-radius: 12px;
  background:
    linear-gradient(135deg, rgba(255, 197, 71, 0.14), rgba(175, 27, 90, 0.16)),
    rgba(0, 0, 0, 0.26);
}

.copy-result output {
  display: grid;
  gap: 4px;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 4.7rem);
  font-weight: 900;
  line-height: 0.95;
}

.bitrate-tool-panel .copy-result output span:last-child {
  color: var(--accent-2);
  font-size: clamp(1.05rem, 2.5vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.av-tool-panel .copy-result output span:last-child {
  color: var(--accent-2);
  font-size: clamp(1.05rem, 2.5vw, 2rem);
  line-height: 1;
  text-transform: uppercase;
}

.av-audio-row {
  display: grid;
  grid-template-columns: minmax(82px, 0.2fr) minmax(82px, 0.2fr) minmax(120px, 0.34fr) minmax(220px, 0.9fr);
  gap: 12px;
  align-items: end;
}

.checkbox-field {
  min-height: 52px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.32);
}

.checkbox-field input {
  width: 18px;
  height: 18px;
  margin: 0;
  accent-color: var(--accent);
}

.av-audio-row > label {
  display: grid;
  gap: 8px;
}

.copy-result p:not(.kicker) {
  color: var(--muted);
}

.bottleneck-card {
  display: grid;
  gap: 7px;
  margin-top: 4px;
  padding-top: 14px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.bottleneck-card span {
  color: var(--accent-2);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.bottleneck-card strong {
  color: var(--ink);
  font-size: clamp(1rem, 2vw, 1.38rem);
  font-weight: 900;
}

.bottleneck-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.88rem;
}

.link-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}

.link-pills a {
  padding: 9px 12px;
  border: 1px solid rgba(175, 27, 90, 0.5);
  border-radius: 999px;
  background: rgba(175, 27, 90, 0.14);
  font-size: 0.82rem;
  font-weight: 900;
}

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

.conform-guide-buttons a {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 12px 8px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.065);
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.conform-guide-buttons a:hover {
  border-color: var(--accent);
  background: rgba(175, 27, 90, 0.28);
  box-shadow:
    0 0 0 4px rgba(175, 27, 90, 0.15),
    0 14px 30px rgba(175, 27, 90, 0.2);
  transform: translateY(-2px);
}

.conform-guide-buttons img {
  width: 38px;
  height: 38px;
  display: block;
}

.conform-guide-buttons span {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 500;
  line-height: 1;
}

.viewing-room-buttons {
  display: grid;
  grid-template-columns: repeat(2, minmax(130px, 30%));
  justify-content: space-evenly;
  gap: 10px;
}

.viewing-room-buttons a {
  min-height: 92px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  padding: 12px 8px;
  border-color: rgba(255, 255, 255, 0.13);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.065);
  color: var(--ink);
  font-weight: 500;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.viewing-room-buttons a:hover {
  border-color: var(--accent);
  background: rgba(175, 27, 90, 0.28);
  box-shadow:
    0 0 0 4px rgba(175, 27, 90, 0.15),
    0 14px 30px rgba(175, 27, 90, 0.2);
  transform: translateY(-2px);
}

.viewing-room-buttons img {
  width: 42px;
  height: 42px;
  display: block;
  object-fit: contain;
}

.viewing-room-buttons span {
  line-height: 1;
}

.manager-page {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  height: 100vh;
  height: 100dvh;
  min-height: 0;
  overflow: hidden;
  padding: clamp(18px, 3vw, 34px);
}

.manager-header,
.manager-shell,
.manager-sidebar,
.manager-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--panel);
  box-shadow: var(--shadow);
}

.manager-header {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px 18px;
  align-items: end;
  padding: clamp(12px, 2vw, 22px);
}

.manager-header h1 {
  margin-bottom: 8px;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
}

.manager-header .kicker {
  margin-bottom: 5px;
}

.manager-header > div:first-child > p:last-child {
  margin-bottom: 0;
}

.manager-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.manager-status {
  grid-column: 1 / -1;
  min-height: 22px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 800;
}

.manager-status[data-type="success"] {
  color: #77d887;
}

.manager-status[data-type="error"] {
  color: #ff8a8a;
}

.manager-status[data-type="pending"] {
  color: #e0b6c8;
}

.manager-actions #exportData[data-dirty="false"] {
  border-color: rgba(255, 255, 255, 0.18);
  background: #4a4a4a;
  color: #f3f3f3;
}

.manager-actions #exportData[data-dirty="true"] {
  border-color: var(--accent);
  background: var(--accent);
  color: #fff;
  box-shadow: 0 0 24px rgba(175, 27, 90, 0.34);
}

.manager-actions .button[data-linked="true"] {
  border-color: rgba(119, 216, 135, 0.55);
  background: rgba(119, 216, 135, 0.14);
  color: #77d887;
  cursor: default;
}

.manager-shell {
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 16px;
  min-height: 0;
  margin-top: 16px;
  padding: 16px;
  overflow: hidden;
}

.manager-sidebar {
  position: sticky;
  top: 16px;
  align-self: start;
  display: grid;
  gap: 16px;
  padding: 18px;
}

.manager-sidebar input,
.manager-sidebar select,
.manager-fields input,
.manager-fields select {
  width: 100%;
  min-height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #111;
  color: var(--ink);
  padding: 0 10px;
}

.manager-bug-preview {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
}

.manager-bug-preview img {
  width: auto;
  max-width: min(180px, 60%);
  height: 32px;
  object-fit: contain;
}

.manager-count {
  padding: 12px;
  border-radius: 10px;
  background: rgba(175, 27, 90, 0.16);
  color: var(--ink);
  font-weight: 900;
}

.manager-list {
  display: grid;
  min-height: 0;
  gap: 12px;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
  padding-right: 6px;
}

.manager-page > .plain-legal {
  padding: 12px 0 0;
}

.manager-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr) 110px;
  gap: 16px;
  padding: 14px;
}

.manager-card.is-hidden {
  opacity: 0.52;
}

.manager-thumb {
  min-height: 220px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #0c0c0c;
  color: var(--muted);
  font-weight: 900;
}

.manager-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.manager-fields {
  display: grid;
  gap: 10px;
}

.manager-row {
  display: grid;
  grid-template-columns: 0.4fr 0.6fr;
  gap: 10px;
}

.service-checks {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.check-label {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  min-height: 34px;
  padding: 0 10px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--ink);
  font-size: 0.8rem;
  font-weight: 900;
}

.check-label input {
  accent-color: var(--accent);
}

.manager-card-actions {
  display: grid;
  gap: 8px;
  align-content: start;
}

.manager-card-actions button {
  min-height: 36px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
}

.manager-card-actions button:hover {
  border-color: var(--accent);
  background: rgba(175, 27, 90, 0.2);
}

.export-dialog {
  width: min(980px, calc(100% - 28px));
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: #101010;
  color: var(--ink);
  box-shadow: var(--shadow);
}

.export-dialog::backdrop {
  background: rgba(0, 0, 0, 0.76);
}

.dialog-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-bottom: 14px;
}

.dialog-head h2 {
  margin: 0;
  font-size: 1.8rem;
}

.dialog-head button {
  min-height: 38px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--ink);
  cursor: pointer;
  font: inherit;
  font-weight: 900;
}

.export-dialog textarea {
  width: 100%;
  min-height: 60vh;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #050505;
  color: var(--ink);
  padding: 14px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.78rem;
  line-height: 1.5;
}

.contact-list {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: clamp(18px, 3vw, 34px);
  align-items: center;
  justify-items: start;
  text-align: left;
}

.contact-locations {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  column-gap: clamp(18px, 4vw, 54px);
  row-gap: 4px;
  align-content: start;
}

.contact-locations .kicker {
  grid-column: 1 / -1;
  margin-bottom: 0;
  transform: translateY(-8px);
}

.contact-locations address {
  display: grid;
  gap: 3px;
  color: var(--muted);
  font-style: normal;
  line-height: 1.35;
}

.contact-locations address strong {
  color: var(--ink);
  font-size: clamp(1rem, 2.2vw, 2.3rem);
  font-weight: 800;
  line-height: 1;
  margin-bottom: 6px;
}

.contact-locations address span {
  font-size: 0.9rem;
}

.contact-list a {
  color: var(--ink);
  font-weight: 400;
}

.contact-links {
  display: grid;
  gap: 8px;
  justify-items: start;
}

.contact-logo-link {
  display: block;
}

.contact-logo-link img {
  width: clamp(75px, 7.5vw, 111px);
  height: auto;
  opacity: 0.92;
}

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

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

@keyframes scan {
  0%,
  100% {
    transform: translateX(-45%);
    opacity: 0.35;
  }
  50% {
    transform: translateX(45%);
    opacity: 0.95;
  }
}

@keyframes slow-push {
  from {
    transform: scale(1.02);
  }
  to {
    transform: scale(1.08) translate3d(-1.2%, -0.8%, 0);
  }
}

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

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

  .mobile-menu-toggle {
    display: grid;
  }

  .site-header.is-mobile-open .mobile-nav {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .service-grid .service-card {
    grid-column: auto;
  }

  .section-heading,
  .studio-feature-grid,
  .dit-grid,
  .dit-info-row,
  .kollaborate-hero,
  .kollaborate-grid,
  .kollab-intro,
  .kollab-row,
  .kollab-row.is-reversed,
  .tool-panel,
  .footer,
  .article-grid,
  .merged-info-panel,
  .copy-tool-panel,
  .manager-header,
  .manager-shell,
  .manager-card {
    grid-template-columns: minmax(0, 1fr);
  }

  .studio-dolby-logo {
    justify-self: start;
    margin-top: clamp(10px, 2vw, 18px);
  }

  .manager-sidebar {
    position: static;
  }

  .manager-shell {
    grid-template-rows: auto minmax(0, 1fr);
  }

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

  .app-list article {
    grid-template-columns: 72px minmax(0, 1fr);
  }

  .kollab-row.is-reversed .kollab-row-copy,
  .kollab-row.is-reversed .kollab-row-media {
    order: initial;
  }

  .app-list a {
    grid-column: 2;
  }

  .workflow-line {
    grid-template-columns: minmax(0, 1fr);
    gap: 6px;
  }

  .workflow-line::before {
    width: 1px;
    height: calc(100% - 20px);
    left: 18px;
    top: 10px;
  }

  .workflow-line button {
    min-height: 92px;
    padding-left: 28px;
  }

  .workflow-detail {
    height: auto;
    min-height: 440px;
    grid-template-columns: minmax(0, 1fr);
  }

  .services-section .section-heading {
    grid-template-columns: minmax(0, 1fr);
  }

  .workflow-detail-extra {
    min-height: 150px;
  }

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

  .external-tool-cards {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .copy-fieldset {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-option-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-reference {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-aaf-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .guide-hero {
    padding-right: 0;
  }

  .dcp-hero > :not(.dcp-hero-projector) {
    transform: translateY(-28px);
  }

  .guide-hero .tool-hero-logo-link {
    position: static;
    margin-top: clamp(16px, 4vw, 26px);
  }

  .tool-page-hero {
    grid-template-columns: minmax(0, 1fr);
  }

  .tool-hero-logo-link {
    justify-self: start;
    margin-top: 0;
  }

  .tool-hero-logo {
    width: auto;
    max-width: 100%;
  }

  .shooting-basic-row,
  .av-audio-row {
    grid-template-columns: minmax(0, 1fr);
  }
}

@media (max-width: 700px) {
  .manager-page {
    padding: 10px;
  }

  .manager-header {
    gap: 8px;
    padding: 10px 12px;
  }

  .manager-header h1 {
    margin-bottom: 5px;
    font-size: 1.8rem;
  }

  .manager-shell {
    margin-top: 10px;
    padding: 10px;
  }

  .manager-sidebar {
    gap: 10px;
    padding: 12px;
  }

  .manager-sidebar > p {
    display: none;
  }

  .manager-page > .plain-legal {
    display: none;
  }

  .hero {
    min-height: 92svh;
    padding-top: 96px;
    padding-inline: 18px;
    align-items: center;
  }

  .hero-content {
    width: min(100%, calc(100vw - 36px));
  }

  .brand span {
    display: none;
  }

  .site-header.is-mobile-open .mobile-nav {
    grid-template-columns: minmax(0, 1fr);
  }

  .hero-strip,
  .reel-grid,
  .service-grid,
  .tool-cards,
  .external-tool-cards,
  .tips-dit-reference .dit-grid,
  .dit-visual,
  .app-list,
  .app-list article,
  .studio-feature-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .dit-visual img {
    width: 100%;
    max-width: 100%;
  }

  .platform-logo-row {
    flex-wrap: wrap;
    justify-content: center;
    overflow-x: visible;
    gap: 14px 18px;
  }

  .platform-logo {
    max-width: 30%;
  }

  .section,
  .section-heading,
  .services-workflow-preview,
  .workflow-line,
  .workflow-detail,
  .dit-grid,
  .tool-panel,
  .text-panel,
  .kollab-ipad-box,
  .app-list article {
    min-width: 0;
    max-width: 100%;
  }

  .tips-dit-reference .dit-grid > div:first-child {
    max-width: 100%;
    padding-inline: 0;
  }

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

  .viewing-room-buttons {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    justify-content: stretch;
  }

  .app-list a {
    grid-column: auto;
    justify-self: stretch;
    white-space: normal;
  }

  .app-card-head {
    grid-template-columns: 56px minmax(0, 1fr);
  }

  .app-list img {
    width: 56px;
    height: 56px;
  }

  .app-list h3 span {
    font-size: 1.62rem;
    overflow-wrap: anywhere;
  }

  .app-list h3 small {
    font-size: 0.92rem;
    overflow-wrap: anywhere;
  }

  .kollab-subheading h2 {
    white-space: normal;
  }

  .kollab-page-heading h2 {
    white-space: normal;
  }

  .project-card,
  .project-card img {
    min-height: 380px;
  }

  .reel-lightbox-frame,
  .reel-lightbox-media img,
  .reel-lightbox-media video {
    max-width: 88vw;
  }

  .reel-lightbox-media img,
  .reel-lightbox-media video {
    max-height: 68vh;
  }

  .reel-lightbox-media iframe {
    width: 88vw;
  }

  .filter-bar {
    top: 86px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.05rem);
  }
}

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