:root {
  color-scheme: dark;
  --bg: #08090a;
  --ink: #f6f3eb;
  --muted: #a9aaa5;
  --line: rgba(246, 243, 235, 0.16);
  --amber: #f7ad4b;
  --cyan: #79d8ff;
  --red: #e7503d;
  --green: #b7d45b;
  --panel: rgba(246, 243, 235, 0.06);
  --max: 1480px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body::selection {
  background: var(--amber);
  color: #101010;
}

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

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

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.cursor-light {
  position: fixed;
  inset: auto;
  width: 28rem;
  height: 28rem;
  border-radius: 50%;
  pointer-events: none;
  z-index: 2;
  opacity: 0.22;
  background: radial-gradient(circle, rgba(121, 216, 255, 0.28), transparent 64%);
  transform: translate3d(-50%, -50%, 0);
  transition: opacity 200ms ease;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 1rem;
  padding: 1.2rem clamp(1rem, 3vw, 3rem);
  color: var(--ink);
  mix-blend-mode: difference;
  border-bottom: 1px solid transparent;
  background: transparent;
  transition:
    background 320ms ease,
    border-color 320ms ease,
    backdrop-filter 320ms ease,
    mix-blend-mode 320ms ease;
}

.site-header.is-scrolled {
  background: rgba(5, 6, 7, 0.72);
  border-bottom-color: rgba(246, 243, 235, 0.1);
  mix-blend-mode: normal;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.mobile-menu-toggle {
  display: none;
  position: relative;
  z-index: 12;
  flex: 0 0 2rem;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  width: 2rem;
  height: 2rem;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  padding: 0;
}

.mobile-menu-toggle span {
  display: block;
  width: 1.25rem;
  min-width: 1.25rem;
  max-width: 1.25rem;
  flex: 0 0 auto;
  height: 1px;
  background: currentColor;
  transform-origin: center;
  transition: transform 240ms ease, opacity 240ms ease;
}

.mobile-menu-toggle span + span {
  margin-top: 0;
}

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

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

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

.mobile-menu {
  position: absolute;
  z-index: 11;
  top: calc(100% + 0.55rem);
  left: clamp(1rem, 3vw, 3rem);
  right: clamp(1rem, 3vw, 3rem);
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.15rem;
  padding: 0.65rem;
  border: 1px solid rgba(246, 243, 235, 0.12);
  border-radius: 0.9rem;
  background: rgba(5, 6, 7, 0.82);
  box-shadow: 0 1.5rem 4rem rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-0.35rem);
  transition: opacity 240ms ease, transform 240ms ease;
}

.mobile-menu a {
  display: block;
  padding: 0.95rem 1rem;
  border-radius: 0.65rem;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mobile-menu a:hover {
  background: rgba(246, 243, 235, 0.08);
}

.site-header.menu-open {
  background: rgba(5, 6, 7, 0.78);
  border-bottom-color: rgba(246, 243, 235, 0.1);
  mix-blend-mode: normal;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

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

.brand {
  display: flex;
  flex-direction: column;
  width: max-content;
  font-weight: 800;
  font-size: 0.95rem;
  line-height: 0.9;
  text-transform: uppercase;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1rem, 3vw, 3rem);
  font-size: 0.78rem;
  letter-spacing: 0;
  text-transform: uppercase;
}

.nav a,
.header-cta,
.site-footer a {
  position: relative;
}

.nav a::after,
.header-cta::after,
.site-footer a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.nav a:hover::after,
.header-cta:hover::after,
.site-footer a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(0.7rem, 1.4vw, 1.1rem);
}

.header-social {
  display: flex;
  align-items: center;
  gap: 0.45rem;
}

.header-social .social-link {
  display: inline-grid;
  place-items: center;
  width: 2.15rem;
  height: 2.15rem;
  border: 1px solid rgba(246, 243, 235, 0.18);
  border-radius: 0.65rem;
  color: var(--ink);
  background: rgba(8, 9, 10, 0.22);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.header-social .social-link:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #090909;
  transform: translateY(-0.12rem);
}

.header-social .social-link svg {
  width: 1rem;
  height: 1rem;
}

.header-cta {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: 94vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 8rem clamp(1rem, 4vw, 4rem) 4rem;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url("assets/cinematic-filmmaker-hero.png") center / cover no-repeat;
  transform:
    translate3d(
      var(--hero-mouse-x, 0),
      calc(var(--hero-parallax, 0) + var(--hero-mouse-y, 0)),
      0
    )
    scale(1.04);
  transform-origin: center;
  will-change: transform;
  transition: transform 220ms ease-out;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 72% 45%, rgba(247, 173, 75, 0.22), transparent 28%),
    linear-gradient(90deg, rgba(8, 9, 10, 0.9) 0%, rgba(8, 9, 10, 0.62) 42%, rgba(8, 9, 10, 0.2) 100%),
    linear-gradient(0deg, rgba(8, 9, 10, 0.98) 0%, rgba(8, 9, 10, 0.42) 34%, transparent 68%);
  pointer-events: none;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.98) contrast(1.08) brightness(0.78);
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 0.22;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, transparent, #000 18%, #000 78%, transparent);
}

.hero-content {
  position: relative;
  z-index: 3;
  width: min(100%, var(--max));
  margin: 0 auto;
}

.eyebrow,
.section-kicker,
.work-meta span,
.service-card span {
  margin: 0 0 1.2rem;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  line-height: 1.35;
}

.hero .eyebrow {
  margin-bottom: clamp(1.7rem, 2.5vw, 2.6rem);
}

.hero-title {
  max-width: 1120px;
  margin: 0;
  font-weight: 900;
  text-transform: uppercase;
}

.hero-name {
  display: block;
  width: min(100%, clamp(18rem, 42vw, 42rem));
  height: auto;
  filter: drop-shadow(0 1.2rem 1.2rem rgba(0, 0, 0, 0.38));
}

.hero-title span {
  display: block;
  margin-top: clamp(1.25rem, 2.5vw, 2.1rem);
  max-width: 700px;
  color: var(--amber);
  font-size: clamp(1.08rem, 2.55vw, 2.85rem);
  line-height: 1.14;
}

.hero-bottom {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  margin-top: clamp(2rem, 6vw, 5rem);
}

.hero-bottom p {
  max-width: 570px;
  margin: 0;
  color: rgba(246, 243, 235, 0.78);
  font-size: clamp(1rem, 1.7vw, 1.35rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.2rem;
}

.magnetic-link {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  min-width: 13.5rem;
  min-height: 3.75rem;
  justify-content: center;
  border: 1px solid rgba(246, 243, 235, 0.52);
  border-radius: 0.8rem;
  padding: 0.95rem 1.35rem;
  background: rgba(246, 243, 235, 0.06);
  box-shadow: inset 0 1px 0 rgba(246, 243, 235, 0.16);
  font-weight: 800;
  text-transform: uppercase;
  transition: color 320ms ease, background 320ms ease, border-color 320ms ease, transform 320ms ease;
  text-align: center;
}

.magnetic-link:hover {
  color: #0b0b0b;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-0.18rem);
}

.secondary-link {
  position: relative;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.secondary-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.35rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 220ms ease;
}

.secondary-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.ticker {
  overflow: hidden;
  border-block: 1px solid rgba(183, 212, 91, 0.38);
  background:
    linear-gradient(90deg, rgba(183, 212, 91, 0.1), transparent 18%, transparent 82%, rgba(183, 212, 91, 0.1)),
    radial-gradient(circle at 18% 50%, rgba(121, 216, 255, 0.08), transparent 22%),
    #111315;
}

.ticker-track {
  display: flex;
  width: max-content;
  align-items: center;
  gap: 0;
  padding: clamp(0.85rem, 1.4vw, 1.25rem) 0;
  animation-name: ticker;
  animation-duration: 60s;
  animation-timing-function: linear;
  animation-iteration-count: infinite;
  animation-fill-mode: none;
}

.ticker-set {
  display: flex;
  align-items: center;
  gap: clamp(1.4rem, 3vw, 3rem);
  padding-right: clamp(1.4rem, 3vw, 3rem);
}

.ticker-logo {
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  width: clamp(10.5rem, 15vw, 17rem);
  height: clamp(5rem, 6vw, 6.4rem);
  padding: clamp(0.65rem, 1vw, 0.95rem);
  border: 1px solid rgba(183, 212, 91, 0.24);
  border-radius: 0.85rem;
  background:
    linear-gradient(135deg, rgba(246, 243, 235, 0.075), rgba(246, 243, 235, 0.025)),
    rgba(8, 9, 10, 0.62);
  box-shadow: inset 0 1px 0 rgba(246, 243, 235, 0.08), 0 1.2rem 3rem rgba(0, 0, 0, 0.18);
  overflow: hidden;
}

.ticker-logo img {
  width: auto;
  height: auto;
  max-width: 78%;
  max-height: 64%;
  object-fit: contain;
  object-position: center;
  margin: auto;
  transform: translateY(var(--logo-y, 0)) scale(var(--logo-scale, 1));
  transform-origin: center;
}

.ticker-logo.logo-wide img {
  max-width: 84%;
  max-height: 56%;
}

.ticker-logo.logo-mark img {
  max-width: 48%;
  max-height: 68%;
}

.ticker-logo.logo-brand img {
  max-width: 82%;
  max-height: 76%;
}

.ticker-logo.logo-streaming img {
  max-width: 82%;
  max-height: 70%;
}

.ticker-logo.logo-tall img {
  max-width: 52%;
  max-height: 80%;
}

.ticker-logo.logo-cacereno img {
  --logo-y: -21%;
  --logo-scale: 0.96;
  max-width: 86%;
  max-height: 82%;
}

.ticker-logo.logo-streaming img {
  --logo-y: 4%;
  --logo-scale: 1.12;
  max-width: 88%;
  max-height: 78%;
}

.ticker-logo.logo-superwagen img {
  --logo-y: -13%;
  --logo-scale: 1.34;
  max-width: 86%;
  max-height: 68%;
}

.ticker-logo.logo-volkswagen img {
  --logo-y: -32%;
  --logo-scale: 0.9;
  max-width: 54%;
  max-height: 76%;
}

.ticker-logo.logo-audi img {
  --logo-y: -9%;
  --logo-scale: 1.14;
  max-width: 74%;
  max-height: 58%;
}

.ticker-logo.logo-hoodie img {
  --logo-y: -34%;
  --logo-scale: 0.92;
  max-width: 58%;
  max-height: 84%;
}

.section {
  width: min(100% - 2rem, var(--max));
  margin: 0 auto;
  padding: clamp(5rem, 9vw, 9rem) 0;
}

.intro-grid,
.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(20rem, 0.78fr);
  gap: clamp(2rem, 5.4vw, 5.8rem);
  align-items: start;
}

.intro-side {
  display: grid;
  gap: clamp(1.3rem, 2.3vw, 1.8rem);
  align-self: center;
  max-width: 640px;
  justify-self: end;
}

.intro-portrait {
  position: relative;
  aspect-ratio: 4 / 3;
  min-height: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #101113;
}

.intro-portrait::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(246, 243, 235, 0.22);
  pointer-events: none;
}

.intro-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% 28%;
  filter: saturate(0.94) contrast(1.04) brightness(0.92);
}

.intro h2,
.section-head h2,
.contact h2 {
  margin: 0;
  font-size: clamp(2.4rem, 7vw, 7rem);
  line-height: 0.92;
  text-transform: uppercase;
}

.intro-copy {
  padding-top: 0.45rem;
  color: var(--muted);
  font-size: clamp(1rem, 1.18vw, 1.2rem);
  line-height: 1.55;
}

.intro-copy p,
.contact-copy p {
  margin: 0 0 1.25rem;
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.45fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.section-head p,
.contact-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.work-list {
  display: grid;
  gap: clamp(1rem, 1.8vw, 1.6rem);
  background: transparent;
}

.work-item {
  display: grid;
  grid-template-columns: minmax(18rem, 0.9fr) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 5rem);
  align-items: center;
  padding: clamp(1rem, 2vw, 2rem);
  background: transparent;
  overflow: hidden;
  transition: background 420ms ease;
}

.work-item.is-visible {
  background: transparent;
}

.work-media {
  min-height: clamp(18rem, 38vw, 40rem);
  overflow: hidden;
  background: #151719;
  cursor: default;
}

.work-media img {
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.08);
  transition: transform 700ms cubic-bezier(0.22, 1, 0.36, 1), filter 700ms ease;
}

.work-item:hover .work-media img {
  transform: scale(1.055);
  filter: saturate(1.18) contrast(1.12) brightness(1.06);
}

.work-item-reels:hover .reels-preview img {
  transform: none;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
}

.work-item:hover {
  background: rgba(246, 243, 235, 0.025);
}

.work-media-alt img {
  object-position: 68% center;
}

.work-media-third img {
  object-position: 35% center;
}

.thumbnail-lab {
  position: relative;
  display: block;
  min-height: clamp(22rem, 38vw, 40rem);
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(231, 80, 61, 0.12), transparent 30%),
    radial-gradient(circle at 78% 24%, rgba(183, 212, 91, 0.14), transparent 28%),
    #111315;
}

.thumbnail-lab::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: 0;
  border: 1px solid rgba(246, 243, 235, 0.08);
  pointer-events: none;
}

.thumbnail-lab::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 72% 22%, rgba(231, 80, 61, 0.22), transparent 24%),
    linear-gradient(120deg, transparent 10%, rgba(231, 80, 61, 0.15) 11%, transparent 20%),
    linear-gradient(90deg, transparent 0 58%, rgba(246, 243, 235, 0.06) 58% 59%, transparent 59%),
    repeating-linear-gradient(0deg, rgba(246, 243, 235, 0.035) 0 1px, transparent 1px 3.2rem);
  opacity: 0.62;
  animation: youtubeGlow 8.5s ease-in-out infinite;
  pointer-events: none;
}

.thumb-card {
  position: absolute;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(246, 243, 235, 0.18);
  background: #08090a;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.46);
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 720ms ease,
    filter 720ms ease,
    border-color 720ms ease;
}

.thumb-card img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.94) contrast(1.08) brightness(0.82);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 720ms ease;
}

.thumb-main {
  left: 14%;
  top: 23%;
  width: 68%;
  z-index: 3;
  transform: rotate(-1deg);
}

.thumb-left {
  left: 7%;
  bottom: 13%;
  width: 50%;
  z-index: 2;
  transform: rotate(3deg);
}

.thumb-right {
  right: 5%;
  top: 10%;
  width: 50%;
  z-index: 1;
  transform: rotate(-4deg);
}

.thumb-cursor {
  position: absolute;
  left: 18%;
  top: 72%;
  z-index: 9;
  width: 2.7rem;
  height: 2.7rem;
  color: var(--green);
  filter: drop-shadow(0 0.8rem 1.4rem rgba(0, 0, 0, 0.55));
  animation: thumbCursor 5.2s cubic-bezier(0.76, 0, 0.24, 1) infinite;
  pointer-events: none;
}

.thumb-cursor svg {
  width: 100%;
  height: 100%;
  fill: currentColor;
  stroke: #08090a;
  stroke-width: 1.2;
  stroke-linejoin: round;
}

.thumbnail-lab:hover .thumb-card {
  opacity: 0.62;
}

.thumbnail-lab.has-active .thumb-card {
  opacity: 0.62;
}

.thumbnail-lab:hover .thumb-card:hover {
  z-index: 8;
  opacity: 1;
  border-color: rgba(183, 212, 91, 0.55);
  transform: rotate(0deg) translateY(-0.55rem) scale(1.06);
}

.thumbnail-lab.has-active .thumb-card.is-active {
  z-index: 8;
  opacity: 1;
  border-color: rgba(183, 212, 91, 0.55);
  transform: rotate(0deg) translateY(-0.55rem) scale(1.06);
}

.thumbnail-lab:hover .thumb-card:hover img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.14) brightness(0.98);
}

.thumbnail-lab.has-active .thumb-card.is-active img {
  transform: scale(1.055);
  filter: saturate(1.12) contrast(1.14) brightness(0.98);
}

.work-item:hover .thumbnail-lab img {
  transform: none;
}

.photo-editorial {
  position: relative;
  display: block;
  min-height: clamp(22rem, 38vw, 40rem);
  padding: clamp(1rem, 2.6vw, 2.4rem);
  isolation: isolate;
  background:
    radial-gradient(circle at 18% 78%, rgba(231, 80, 61, 0.16), transparent 28%),
    radial-gradient(circle at 80% 20%, rgba(121, 216, 255, 0.14), transparent 32%),
    #111315;
}

.photo-editorial::before {
  content: "";
  position: absolute;
  inset: 7%;
  z-index: 0;
  border: 1px solid rgba(246, 243, 235, 0.08);
  pointer-events: none;
}

.photo-editorial::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 20% 22%, rgba(246, 243, 235, 0.34) 0 0.25rem, transparent 0.32rem),
    radial-gradient(circle at 20% 22%, rgba(246, 243, 235, 0.22), transparent 18%),
    repeating-radial-gradient(circle at 77% 21%, rgba(121, 216, 255, 0.12) 0 1px, transparent 1px 1.25rem),
    linear-gradient(110deg, transparent 30%, rgba(246, 243, 235, 0.08) 44%, transparent 58%);
  opacity: 0.58;
  animation: cameraFlash 7.8s ease-in-out infinite;
  pointer-events: none;
}

.photo-frame,
.photo-strip {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.16);
  background: #08090a;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
  transition:
    transform 720ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 720ms ease,
    opacity 720ms ease,
    border-color 720ms ease;
}

.photo-frame img,
.photo-strip img {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.08) brightness(0.84);
  transition: transform 900ms cubic-bezier(0.22, 1, 0.36, 1), filter 720ms ease;
}

.photo-main {
  left: 5%;
  top: 9%;
  width: 56%;
  aspect-ratio: 16 / 9;
  z-index: 2;
  transform: rotate(-1deg);
}

.photo-side-top {
  right: 6%;
  top: 8%;
  width: 27%;
  aspect-ratio: 4 / 5;
  z-index: 3;
  transform: rotate(1deg);
}

.photo-side-bottom {
  right: 9%;
  bottom: 8%;
  width: 30%;
  aspect-ratio: 4 / 5;
  z-index: 4;
  transform: rotate(1.2deg);
}

.photo-strip {
  left: 11%;
  bottom: 8%;
  width: 54%;
  aspect-ratio: 16 / 9;
  z-index: 5;
  transform: rotate(-1.2deg);
}

.photo-main img,
.photo-strip img {
  object-fit: cover;
  background: #08090a;
}

.photo-editorial:hover .photo-frame,
.photo-editorial:hover .photo-strip {
  opacity: 0.62;
}

.photo-editorial.has-active .photo-frame,
.photo-editorial.has-active .photo-strip {
  opacity: 0.62;
}

.photo-editorial:hover .photo-frame:hover,
.photo-editorial:hover .photo-strip:hover {
  z-index: 8;
  opacity: 1;
  border-color: rgba(121, 216, 255, 0.48);
  transform: rotate(0deg) translateY(-0.45rem) scale(1.08);
}

.photo-editorial.has-active .photo-frame.is-active,
.photo-editorial.has-active .photo-strip.is-active {
  z-index: 8;
  opacity: 1;
  border-color: rgba(121, 216, 255, 0.48);
  transform: rotate(0deg) translateY(-0.45rem) scale(1.08);
}

.photo-editorial:hover .photo-frame:hover img,
.photo-editorial:hover .photo-strip:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.12) brightness(0.98);
}

.photo-editorial.has-active .photo-frame.is-active img,
.photo-editorial.has-active .photo-strip.is-active img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.12) brightness(0.98);
}

.work-item:hover .photo-editorial img {
  transform: none;
}

.event-stage {
  position: relative;
  display: block;
  min-height: clamp(22rem, 38vw, 40rem);
  overflow: hidden;
  isolation: isolate;
  contain: paint;
  clip-path: inset(0);
  background: transparent;
}

.event-bg {
  position: absolute;
  inset: -2px;
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  object-fit: cover;
  filter: saturate(0.95) contrast(1.08) brightness(0.52);
  transform: scale(1.04);
  transition: filter 700ms ease, transform 900ms cubic-bezier(0.22, 1, 0.36, 1);
}

.event-stage::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(8, 9, 10, 0.72), transparent 42%, rgba(8, 9, 10, 0.54)),
    linear-gradient(0deg, rgba(8, 9, 10, 0.78), transparent 46%);
  pointer-events: none;
}

.event-glow {
  position: absolute;
  inset: 12% 18%;
  z-index: 2;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(247, 173, 75, 0.28), transparent 64%);
  filter: blur(20px);
  opacity: 0.65;
  animation: eventPulse 4.8s ease-in-out infinite;
}

.event-photo,
.event-live {
  position: absolute;
  z-index: 3;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.2);
  background: rgba(8, 9, 10, 0.72);
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.48);
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 650ms ease,
    filter 650ms ease;
}

.event-photo img,
.event-live video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.86);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), filter 650ms ease;
}

.event-photo::after,
.event-live::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.72), transparent 50%);
  pointer-events: none;
}

.event-photo span,
.event-live span {
  position: absolute;
  left: 1rem;
  bottom: 0.9rem;
  z-index: 2;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.event-photo-toast {
  left: 8%;
  bottom: 10%;
  width: 30%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: translateY(0) rotate(-8deg);
}

.event-photo-music {
  right: 9%;
  top: 8%;
  width: 28%;
  aspect-ratio: 1;
  border-radius: 50%;
  transform: rotate(7deg);
}

.event-live {
  left: 46%;
  top: 18%;
  width: min(24%, 13rem);
  aspect-ratio: 9 / 16;
  border-radius: 1.3rem;
  transform: translateX(-50%) rotate(2deg);
}

.event-wave {
  position: absolute;
  left: 9%;
  right: 9%;
  bottom: 10%;
  z-index: 4;
  display: flex;
  align-items: end;
  justify-content: center;
  gap: 0.5rem;
  height: 4.4rem;
  pointer-events: none;
}

.event-wave i {
  display: block;
  width: clamp(0.28rem, 0.5vw, 0.5rem);
  height: 45%;
  border-radius: 999px;
  background: rgba(183, 212, 91, 0.82);
  transform-origin: bottom;
  animation: waveBeat 1.6s ease-in-out infinite;
}

.event-wave i:nth-child(2) { animation-delay: 120ms; height: 72%; }
.event-wave i:nth-child(3) { animation-delay: 240ms; height: 38%; }
.event-wave i:nth-child(4) { animation-delay: 360ms; height: 86%; }
.event-wave i:nth-child(5) { animation-delay: 480ms; height: 54%; }
.event-wave i:nth-child(6) { animation-delay: 600ms; height: 78%; }
.event-wave i:nth-child(7) { animation-delay: 720ms; height: 44%; }
.event-wave i:nth-child(8) { animation-delay: 840ms; height: 68%; }

.event-stage:hover .event-bg {
  filter: saturate(1.05) contrast(1.12) brightness(0.6);
  transform: scale(1.08);
}

.event-photo:hover,
.event-live:hover {
  z-index: 6;
  border-color: rgba(247, 173, 75, 0.55);
  transform: rotate(0deg) translateY(-0.55rem) scale(1.18);
}

.event-stage.has-active .event-photo.is-active,
.event-stage.has-active .event-live.is-active {
  z-index: 6;
  border-color: rgba(247, 173, 75, 0.55);
  transform: rotate(0deg) translateY(-0.55rem) scale(1.18);
}

.event-live:hover {
  transform: translateX(-50%) rotate(0deg) translateY(-0.55rem) scale(1.18);
}

.event-stage.has-active .event-live.is-active {
  transform: translateX(-50%) rotate(0deg) translateY(-0.55rem) scale(1.18);
}

.event-photo:hover img,
.event-live:hover video {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.12) brightness(0.98);
}

.event-stage.has-active .event-photo.is-active img,
.event-stage.has-active .event-live.is-active video {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.12) brightness(0.98);
}

.auto-showcase {
  position: relative;
  display: block;
  min-height: clamp(22rem, 38vw, 40rem);
  padding: clamp(1rem, 2.4vw, 2.2rem);
  isolation: isolate;
  background:
    radial-gradient(circle at 26% 24%, rgba(183, 212, 91, 0.12), transparent 28%),
    radial-gradient(circle at 76% 80%, rgba(247, 173, 75, 0.12), transparent 32%),
    #111315;
}

.auto-showcase::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 0;
  border: 1px solid rgba(246, 243, 235, 0.08);
  pointer-events: none;
}

.auto-showcase::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 16% 78%, rgba(247, 173, 75, 0.18), transparent 28%),
    radial-gradient(ellipse at 72% 22%, rgba(121, 216, 255, 0.13), transparent 26%),
    repeating-linear-gradient(112deg, transparent 0 2.2rem, rgba(246, 243, 235, 0.055) 2.35rem, transparent 2.55rem),
    linear-gradient(112deg, transparent 0 18%, rgba(183, 212, 91, 0.14) 21%, transparent 27%);
  opacity: 0.68;
  transform: translateX(-2%);
  animation: speedLines 9s ease-in-out infinite;
  pointer-events: none;
}

.auto-panel {
  position: absolute;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.18);
  background: #08090a;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.42);
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 650ms ease,
    opacity 650ms ease,
    border-color 650ms ease;
}

.auto-panel img,
.auto-panel video {
  width: 100%;
  height: 100%;
  min-height: 0;
  filter: saturate(0.95) contrast(1.08) brightness(0.82);
  transition: transform 850ms cubic-bezier(0.22, 1, 0.36, 1), filter 650ms ease;
}

.auto-panel img {
  object-fit: cover;
}

.auto-panel video {
  object-fit: cover;
  background: #08090a;
}

.auto-panel span {
  position: absolute;
  left: 0.9rem;
  bottom: 0.85rem;
  z-index: 2;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.auto-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(8, 9, 10, 0.64), transparent 45%);
  pointer-events: none;
}

.auto-panel-main {
  left: 5%;
  top: 10%;
  width: 54%;
  height: 62%;
  z-index: 1;
  transform: rotate(-2deg);
}

.auto-panel-video {
  right: 12%;
  top: 6%;
  width: min(30%, 15.5rem);
  aspect-ratio: 9 / 16;
  height: auto;
  z-index: 3;
  border-radius: 1.5rem;
  transform: rotate(3deg);
}

.auto-panel-photo {
  left: 14%;
  bottom: 7%;
  width: 34%;
  height: 34%;
  z-index: 4;
  border-radius: 0.9rem;
  transform: rotate(4deg);
}

.auto-panel-video-secondary {
  right: 3%;
  bottom: 6%;
  width: min(24%, 12rem);
  aspect-ratio: 9 / 16;
  height: auto;
  z-index: 2;
  border-radius: 1.2rem;
  transform: rotate(-5deg);
}

.auto-showcase:hover .auto-panel {
  opacity: 0.72;
}

.auto-showcase.has-active .auto-panel {
  opacity: 0.72;
}

.auto-showcase:hover .auto-panel:hover {
  z-index: 8;
  opacity: 1;
  border-color: rgba(183, 212, 91, 0.5);
  transform: rotate(0deg) translateY(-0.45rem) scale(1.045);
}

.auto-showcase.has-active .auto-panel.is-active {
  z-index: 8;
  opacity: 1;
  border-color: rgba(183, 212, 91, 0.5);
  transform: rotate(0deg) translateY(-0.45rem) scale(1.045);
}

.auto-showcase:hover .auto-panel:hover img,
.auto-showcase:hover .auto-panel:hover video {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.12) brightness(0.98);
}

.auto-showcase.has-active .auto-panel.is-active img,
.auto-showcase.has-active .auto-panel.is-active video {
  transform: scale(1.07);
  filter: saturate(1.12) contrast(1.12) brightness(0.98);
}

.work-item:hover .auto-showcase img,
.work-item:hover .auto-showcase video {
  transform: none;
}

.reels-preview {
  position: relative;
  display: grid;
  place-items: center;
  min-height: clamp(20rem, 38vw, 40rem);
  padding: clamp(1rem, 3vw, 2.6rem);
  isolation: isolate;
  background:
    radial-gradient(circle at 50% 42%, rgba(183, 212, 91, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(246, 243, 235, 0.035), transparent),
    #111315;
}

.reels-preview::before {
  content: "";
  position: absolute;
  inset: 8%;
  z-index: 0;
  border: 1px solid rgba(246, 243, 235, 0.08);
  pointer-events: none;
}

.reels-preview::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 50%, rgba(183, 212, 91, 0.18), transparent 26%),
    radial-gradient(circle at 28% 30%, rgba(231, 80, 61, 0.16), transparent 18%),
    radial-gradient(circle at 74% 68%, rgba(121, 216, 255, 0.14), transparent 20%),
    repeating-linear-gradient(90deg, transparent 0 3.2rem, rgba(246, 243, 235, 0.055) 3.25rem, transparent 3.35rem),
    repeating-linear-gradient(0deg, transparent 0 2.6rem, rgba(246, 243, 235, 0.035) 2.65rem, transparent 2.75rem);
  opacity: 0.58;
  animation: socialDrift 10s ease-in-out infinite;
  pointer-events: none;
}

.reel-card {
  position: absolute;
  width: clamp(8.2rem, 13vw, 14.5rem);
  aspect-ratio: 9 / 16;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.22);
  border-radius: clamp(1.15rem, 2vw, 1.8rem);
  background: #08090a;
  box-shadow: 0 2rem 5rem rgba(0, 0, 0, 0.48);
  transform: translateX(var(--x)) rotate(var(--r)) scale(var(--s, 1));
  transition:
    transform 650ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 650ms ease,
    opacity 650ms ease,
    box-shadow 650ms ease;
}

.reel-card img,
.reel-card video {
  width: 100%;
  height: 100%;
  min-height: 0;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
  transition: transform 800ms cubic-bezier(0.22, 1, 0.36, 1), filter 650ms ease;
}

.reel-card-one {
  --x: -58%;
  --r: -9deg;
  --s: 0.92;
  z-index: 1;
}

.reel-card-two {
  --x: 0%;
  --r: 0deg;
  --s: 1.05;
  z-index: 3;
}

.reel-card-three {
  --x: 58%;
  --r: 9deg;
  --s: 0.92;
  z-index: 2;
}

.reel-badge,
.reel-label {
  position: absolute;
  z-index: 2;
  color: var(--ink);
  font-weight: 900;
  text-transform: uppercase;
}

.reel-badge {
  top: 0.85rem;
  left: 0.85rem;
  color: var(--green);
  font-size: 0.75rem;
}

.reel-label {
  left: 0.85rem;
  right: 0.85rem;
  bottom: 0.85rem;
  font-size: clamp(0.9rem, 1.3vw, 1.2rem);
  line-height: 0.95;
}

.reels-preview:hover .reel-card {
  opacity: 0.62;
}

.reels-preview.has-active .reel-card {
  opacity: 0.62;
}

.reels-preview:hover .reel-card:hover {
  z-index: 4;
  opacity: 1;
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, 0.6);
  transform: translateX(var(--x)) rotate(0deg) scale(1.14) translateY(-0.55rem);
}

.reels-preview.has-active .reel-card.is-active {
  z-index: 4;
  opacity: 1;
  box-shadow: 0 2.4rem 6rem rgba(0, 0, 0, 0.6);
  transform: translateX(var(--x)) rotate(0deg) scale(1.14) translateY(-0.55rem);
}

.reels-preview:hover .reel-card:hover img,
.reels-preview:hover .reel-card:hover video {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.12) brightness(0.96);
}

.reels-preview.has-active .reel-card.is-active img,
.reels-preview.has-active .reel-card.is-active video {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.12) brightness(0.96);
}

.work-meta h3 {
  margin: 0 0 1rem;
  max-width: 100%;
  font-size: clamp(2rem, 4.15vw, 4.45rem);
  line-height: 0.94;
  text-transform: uppercase;
  overflow-wrap: anywhere;
  hyphens: auto;
}

.work-meta {
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1), opacity 420ms ease;
}

.work-meta p {
  max-width: 540px;
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  opacity: 0.78;
  transition: opacity 420ms ease;
}

.project-more {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  min-height: 3.1rem;
  margin-top: 1.65rem;
  border: 1px solid rgba(246, 243, 235, 0.28);
  border-radius: 0.72rem;
  padding: 0 1.25rem;
  background: rgba(246, 243, 235, 0.06);
  color: var(--ink);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  transition:
    color 260ms ease,
    background 260ms ease,
    border-color 260ms ease,
    transform 260ms ease;
}

.project-more::after {
  display: none;
}

.project-more::before {
  content: "";
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.65rem;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 1rem rgba(80, 192, 229, 0.7);
}

.project-more:hover {
  color: #08090a;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-0.16rem);
}

.work-item:hover .work-meta {
  transform: translateX(0.45rem);
}

.work-item:hover .work-meta p {
  opacity: 1;
}

.archive-page {
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 10%, rgba(80, 192, 229, 0.08), transparent 28rem),
    radial-gradient(circle at 85% 4%, rgba(247, 168, 67, 0.08), transparent 26rem),
    var(--bg);
}

.archive-page .site-header {
  background: rgba(5, 6, 7, 0.72);
  border-bottom-color: rgba(246, 243, 235, 0.1);
  mix-blend-mode: normal;
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.archive-main {
  padding-top: clamp(7rem, 10vw, 9rem);
}

.archive-hero {
  width: min(100% - clamp(2rem, 6vw, 6rem), 92rem);
  margin: 0 auto clamp(2.5rem, 6vw, 6rem);
}

.archive-back {
  display: inline-flex;
  margin-bottom: clamp(2rem, 4vw, 3.5rem);
}

.archive-title {
  max-width: 12ch;
  margin: 0;
  font-size: clamp(3.8rem, 12vw, 13rem);
  line-height: 0.82;
  text-transform: uppercase;
}

.archive-copy {
  max-width: 42rem;
  margin: 1.6rem 0 0 auto;
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  line-height: 1.45;
}

.archive-switcher {
  position: sticky;
  top: 4.5rem;
  z-index: 5;
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  width: min(100% - clamp(2rem, 6vw, 6rem), 92rem);
  margin: 0 auto 1rem;
  padding: 0.8rem;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(5, 6, 7, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.archive-switcher a {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0 0.95rem;
  border: 1px solid rgba(246, 243, 235, 0.12);
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  transition:
    color 240ms ease,
    background 240ms ease,
    border-color 240ms ease,
    transform 240ms ease;
}

.archive-switcher a:hover,
.archive-switcher a.is-active {
  color: #090909;
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-0.08rem);
}

.archive-overview .archive-switcher {
  display: none;
}

.archive-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: clamp(8rem, 10vw, 14rem);
  gap: clamp(0.45rem, 0.65vw, 0.8rem);
  width: 100%;
  padding: 0 clamp(0.45rem, 0.7vw, 0.8rem) clamp(0.45rem, 0.7vw, 0.8rem);
}

.archive-grid[data-category="reels"] {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: auto;
  width: min(100% - clamp(1rem, 2vw, 2rem), 118rem);
  margin-inline: auto;
}

.archive-grid[data-category="miniaturas"] {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-auto-rows: auto;
  width: min(100% - clamp(1rem, 2vw, 2rem), 112rem);
  margin-inline: auto;
}

.archive-grid[data-category="overview"] {
  grid-template-columns: 1fr;
  grid-auto-rows: clamp(12rem, 18vw, 22rem);
  gap: 0;
  width: 100%;
  padding-inline: 0;
  margin-inline: auto;
}

.archive-card {
  position: relative;
  display: block;
  grid-column: span 4;
  grid-row: span 2;
  overflow: hidden;
  min-width: 0;
  border: 0;
  border-radius: 0;
  padding: 0;
  background: #111315;
  color: var(--ink);
  cursor: pointer;
  isolation: isolate;
}

.archive-card-wide {
  grid-column: span 6;
  grid-row: span 2;
}

.archive-card-tall,
.archive-card-portrait {
  grid-column: span 3;
  grid-row: span 3;
}

.archive-card-square {
  grid-column: span 3;
  grid-row: span 2;
}

.archive-card-reels {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 9 / 16;
}

.archive-card-miniaturas {
  grid-column: auto;
  grid-row: auto;
  aspect-ratio: 16 / 9;
}

.archive-category-card {
  grid-column: auto;
  grid-row: auto;
  text-decoration: none;
}

.archive-category-card .archive-card-label {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: min(90%, 42rem);
  display: grid;
  place-items: center;
  opacity: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.archive-category-card .archive-card-label strong {
  max-width: none;
  font-size: clamp(3rem, 7vw, 9rem);
}

.archive-category-automocion,
.archive-category-fotografia {
  grid-column: auto;
}

.archive-category-eventos {
  grid-column: auto;
  grid-row: auto;
}

.archive-category-reels {
  grid-column: auto;
  grid-row: auto;
}

.archive-category-miniaturas {
  grid-column: auto;
}

.archive-card img,
.archive-card video {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  filter: saturate(0.92) contrast(1.08) brightness(0.78);
  transition:
    transform 900ms cubic-bezier(0.22, 1, 0.36, 1),
    filter 900ms ease;
}

.archive-card-reels video,
.archive-card-miniaturas img {
  object-fit: contain;
}

.archive-grid[data-category="reels"] .archive-card-label strong {
  max-width: 9ch;
  font-size: clamp(1.7rem, 3.4vw, 4rem);
}

.archive-grid[data-category="miniaturas"] .archive-card-label strong {
  max-width: 13ch;
  font-size: clamp(1.5rem, 2.7vw, 3.4rem);
}

.archive-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(5, 6, 7, 0.02), rgba(5, 6, 7, 0.42)),
    linear-gradient(90deg, rgba(5, 6, 7, 0.22), transparent 48%);
  pointer-events: none;
}

.archive-card-label {
  position: absolute;
  z-index: 2;
  left: clamp(0.9rem, 1.6vw, 1.5rem);
  right: clamp(0.9rem, 1.6vw, 1.5rem);
  bottom: clamp(0.9rem, 1.6vw, 1.5rem);
  display: grid;
  gap: 0.3rem;
  text-align: left;
  transform: translateY(0.5rem);
  opacity: 0;
  transition:
    opacity 520ms ease,
    transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.archive-card-label small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.archive-card-label strong {
  max-width: 11ch;
  font-size: clamp(1.4rem, 2.9vw, 3.4rem);
  line-height: 0.9;
  text-transform: uppercase;
}

.archive-grid[data-category="overview"] .archive-category-card .archive-card-label {
  left: 50%;
  right: auto;
  top: 50%;
  bottom: auto;
  width: min(92vw, 70rem);
  justify-items: center;
  opacity: 1;
  text-align: center;
  transform: translate(-50%, -50%);
}

.archive-grid[data-category="overview"] .archive-category-card .archive-card-label strong {
  max-width: none;
  font-size: clamp(3rem, 7vw, 9rem);
}

.archive-grid[data-category="overview"] .archive-category-card .archive-card-label small {
  text-align: center;
}

.archive-card:hover img,
.archive-card:hover video,
.archive-card:focus-visible img,
.archive-card:focus-visible video {
  transform: scale(1.055);
  filter: saturate(1.05) contrast(1.12) brightness(0.98);
}

.archive-card:hover .archive-card-label,
.archive-card:focus-visible .archive-card-label {
  opacity: 1;
  transform: translateY(0);
}

.archive-category-card:hover .archive-card-label,
.archive-category-card:focus-visible .archive-card-label {
  transform: translate(-50%, -50%);
}

.archive-category-fotografia img {
  object-position: center 45%;
}

.archive-category-miniaturas img {
  object-position: center 34%;
}

.project-lightbox {
  position: fixed;
  inset: 0;
  z-index: 30;
  display: grid;
  place-items: center;
  padding: clamp(1rem, 3vw, 3rem);
  background: rgba(0, 0, 0, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 260ms ease;
}

.project-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.lightbox-stage {
  display: grid;
  place-items: center;
  width: 100%;
  height: 100%;
}

.lightbox-stage img,
.lightbox-stage video {
  max-width: 100%;
  max-height: 86vh;
  width: auto;
  height: auto;
  object-fit: contain;
  box-shadow: 0 2rem 6rem rgba(0, 0, 0, 0.56);
}

.lightbox-stage video {
  background: #000;
}

.lightbox-close {
  position: fixed;
  top: clamp(1rem, 2vw, 1.5rem);
  right: clamp(1rem, 2vw, 1.5rem);
  z-index: 2;
  min-height: 2.7rem;
  border: 1px solid rgba(246, 243, 235, 0.18);
  border-radius: 0.7rem;
  padding: 0 1rem;
  background: rgba(8, 9, 10, 0.72);
  color: var(--ink);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.lightbox-meta {
  position: fixed;
  left: clamp(1rem, 2vw, 1.5rem);
  bottom: clamp(1rem, 2vw, 1.5rem);
  display: grid;
  gap: 0.25rem;
  color: var(--ink);
  text-transform: uppercase;
}

.lightbox-meta span {
  color: var(--cyan);
  font-size: 0.75rem;
  font-weight: 900;
}

.lightbox-meta strong {
  font-size: clamp(1.2rem, 2.4vw, 2.8rem);
  line-height: 0.9;
}

body.lightbox-open {
  overflow: hidden;
}

.archive-contact-footer {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(22rem, 0.72fr);
  gap: clamp(2rem, 5vw, 6rem);
  align-items: start;
  width: min(100% - clamp(2rem, 6vw, 6rem), 92rem);
  margin: clamp(4rem, 8vw, 8rem) auto 0;
  padding: clamp(2rem, 5vw, 4rem) 0;
  border-top: 1px solid var(--line);
}

.archive-contact-footer h2 {
  max-width: 11ch;
  margin: 0;
  font-size: clamp(3rem, 8vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.archive-contact-footer p:not(.section-kicker):not(.archive-email) {
  max-width: 42rem;
  margin: 1.3rem 0 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.2rem);
  line-height: 1.48;
}

.archive-email {
  display: block;
  width: max-content;
  max-width: 100%;
  margin: 0.55rem 0 2.15rem;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.3rem);
  font-weight: 900;
  line-height: 1;
}

.archive-contact-footer .archive-email {
  margin: 0.55rem 0 2.15rem;
  color: var(--ink);
}

.archive-contact-footer .contact-links {
  justify-content: flex-start;
  margin-top: 0;
}

.archive-contact-form {
  align-self: start;
}

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

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.8rem, 1.4vw, 1.2rem);
  background: transparent;
}

.service-card {
  min-height: 22rem;
  padding: clamp(1.2rem, 2.2vw, 2rem);
  background: #101113;
  transition: background 240ms ease, transform 240ms ease;
}

.service-card:nth-child(2) span {
  color: var(--amber);
}

.service-card:nth-child(3) span {
  color: var(--red);
}

.service-card:nth-child(4) span {
  color: var(--green);
}

.service-card:nth-child(5) span {
  color: var(--cyan);
}

.service-card:nth-child(6) span {
  color: var(--amber);
}

.service-card:hover {
  background: #181b1e;
  transform: translateY(-0.35rem);
}

.service-card h3 {
  margin: 4rem 0 1rem;
  font-size: clamp(1.6rem, 2.6vw, 2.8rem);
  line-height: 0.98;
  text-transform: uppercase;
}

.service-card p {
  margin: 0;
  color: var(--muted);
}

.concept-lab {
  width: min(100% - 2rem, var(--max));
  border-top: 1px solid var(--line);
}

.concept-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(246, 243, 235, 0.14);
  background:
    linear-gradient(135deg, rgba(121, 216, 255, 0.1), transparent 28%),
    linear-gradient(235deg, rgba(247, 173, 75, 0.12), transparent 34%),
    repeating-linear-gradient(90deg, rgba(246, 243, 235, 0.025) 0 1px, transparent 1px 5.5rem),
    #0d0f11;
  box-shadow: inset 0 1px 0 rgba(246, 243, 235, 0.08), 0 2rem 6rem rgba(0, 0, 0, 0.28);
}

.concept-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(246, 243, 235, 0.05), transparent 30%),
    repeating-linear-gradient(0deg, transparent 0 3.6rem, rgba(246, 243, 235, 0.045) 3.6rem calc(3.6rem + 1px));
  opacity: 0.64;
  pointer-events: none;
}

.concept-intro {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(18rem, 0.55fr);
  gap: clamp(1.6rem, 5vw, 5rem);
  align-items: end;
  padding: clamp(1.2rem, 4vw, 4rem);
}

.concept-intro h2 {
  max-width: 13ch;
  margin: 0;
  font-size: clamp(2.6rem, 7.8vw, 8rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.concept-intro p:not(.section-kicker) {
  max-width: 42rem;
  margin: 0;
  color: rgba(246, 243, 235, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.concept-intro-actions {
  display: grid;
  gap: 1rem;
  justify-items: start;
}

.concept-start,
.concept-next,
.concept-back,
.concept-reset {
  min-height: 3.4rem;
  border: 1px solid rgba(246, 243, 235, 0.24);
  border-radius: 0.45rem;
  padding: 0.95rem 1.2rem;
  color: var(--ink);
  background: rgba(246, 243, 235, 0.06);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
  cursor: pointer;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background 220ms ease,
    color 220ms ease,
    opacity 220ms ease;
}

.concept-start,
.concept-next {
  border-color: rgba(121, 216, 255, 0.56);
  background: rgba(121, 216, 255, 0.14);
  box-shadow: 0 0 2rem rgba(121, 216, 255, 0.12);
}

.concept-start:hover,
.concept-next:hover,
.concept-back:hover,
.concept-reset:hover {
  transform: translateY(-0.15rem);
  border-color: var(--cyan);
  background: var(--ink);
  color: #08090a;
}

.concept-next:disabled,
.concept-back:disabled {
  cursor: not-allowed;
  opacity: 0.42;
  transform: none;
}

.concept-intro-actions span {
  max-width: 23rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.concept-builder[hidden] {
  display: none;
}

.concept-builder {
  position: relative;
  z-index: 1;
  padding: 0 clamp(1rem, 4vw, 4rem) clamp(1rem, 4vw, 4rem);
}

.concept-workbench {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(19rem, 0.42fr);
  gap: clamp(1rem, 2.4vw, 2rem);
  align-items: stretch;
}

.concept-editor,
.concept-preview {
  border: 1px solid rgba(246, 243, 235, 0.13);
  background: rgba(5, 6, 7, 0.64);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.concept-editor {
  min-height: 39rem;
  padding: clamp(1rem, 2.2vw, 2rem);
}

.concept-progress {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: clamp(1.5rem, 3vw, 2.4rem);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concept-progress-bar {
  flex: 1;
  height: 0.36rem;
  overflow: hidden;
  border: 1px solid rgba(121, 216, 255, 0.22);
  background: rgba(246, 243, 235, 0.06);
}

.concept-progress-bar i {
  display: block;
  width: 20%;
  height: 100%;
  background: linear-gradient(90deg, var(--cyan), var(--amber));
  box-shadow: 0 0 1.4rem rgba(121, 216, 255, 0.52);
  transition: width 360ms ease;
}

.concept-step,
.concept-result {
  display: none;
}

.concept-step.is-active,
.concept-result.is-active {
  display: block;
  animation: conceptStepIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.concept-step-label {
  display: inline-flex;
  margin-bottom: 0.75rem;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concept-step h3,
.concept-result h3 {
  max-width: 14ch;
  margin: 0 0 clamp(1.2rem, 2.3vw, 2rem);
  font-size: clamp(2.1rem, 5vw, 5.6rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.concept-step-copy {
  max-width: 38rem;
  margin: -0.7rem 0 1.4rem;
  color: var(--muted);
}

.concept-options {
  display: grid;
  gap: 0.78rem;
}

.concept-options button {
  position: relative;
  overflow: hidden;
  min-height: 6.9rem;
  border: 1px solid rgba(246, 243, 235, 0.13);
  border-radius: 0.45rem;
  padding: 1rem;
  color: var(--ink);
  background:
    linear-gradient(135deg, rgba(246, 243, 235, 0.065), rgba(246, 243, 235, 0.02)),
    #111315;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease,
    box-shadow 240ms ease;
}

.concept-options button::after {
  content: "";
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 0.74rem;
  height: 2px;
  background: linear-gradient(90deg, var(--cyan), transparent);
  opacity: 0;
  transform: scaleX(0.45);
  transform-origin: left;
  transition: opacity 220ms ease, transform 220ms ease;
}

.concept-options button:hover,
.concept-options button:focus-visible {
  border-color: rgba(121, 216, 255, 0.52);
  transform: translateY(-0.16rem);
  outline: none;
}

.concept-options button.is-selected {
  border-color: var(--cyan);
  background:
    linear-gradient(135deg, rgba(121, 216, 255, 0.18), rgba(247, 173, 75, 0.07)),
    #12161a;
  box-shadow: 0 0 0 1px rgba(121, 216, 255, 0.16), 0 1.1rem 3rem rgba(0, 0, 0, 0.28), inset 0 1px 0 rgba(246, 243, 235, 0.12);
}

.concept-options button.is-selected::after {
  opacity: 1;
  transform: scaleX(1);
}

.concept-options strong {
  display: block;
  font-size: clamp(1rem, 1.4vw, 1.22rem);
  line-height: 1.05;
  text-transform: uppercase;
}

.concept-options small {
  display: block;
  margin-top: 0.55rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.concept-options-objective,
.concept-options-format {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.concept-options-objective button > span {
  display: block;
  margin-bottom: 1.8rem;
  color: var(--cyan);
  font-size: 0.74rem;
  font-weight: 900;
}

.concept-options-mood {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concept-options-mood button {
  min-height: 8rem;
}

.concept-options-mood button > span {
  display: block;
  width: 100%;
  height: 2.4rem;
  margin-bottom: 1rem;
  border: 1px solid rgba(246, 243, 235, 0.12);
  background:
    linear-gradient(90deg, rgba(121, 216, 255, 0.44), transparent),
    linear-gradient(135deg, transparent 45%, rgba(247, 173, 75, 0.34) 46% 54%, transparent 55%);
}

.concept-options-mood button:nth-child(3) > span,
.concept-options-mood button:nth-child(5) > span {
  background:
    repeating-linear-gradient(90deg, rgba(121, 216, 255, 0.6) 0 0.5rem, transparent 0.5rem 0.86rem),
    rgba(231, 80, 61, 0.16);
}

.concept-options-mood button:nth-child(4) > span,
.concept-options-mood button:nth-child(8) > span {
  background:
    linear-gradient(90deg, rgba(247, 173, 75, 0.42), rgba(246, 243, 235, 0.08)),
    repeating-linear-gradient(0deg, transparent 0 0.46rem, rgba(246, 243, 235, 0.08) 0.46rem 0.5rem);
}

.concept-options-mood button:nth-child(6) > span,
.concept-options-mood button:nth-child(7) > span {
  background:
    linear-gradient(90deg, rgba(246, 243, 235, 0.42), transparent 55%),
    linear-gradient(135deg, rgba(121, 216, 255, 0.22), rgba(247, 173, 75, 0.15));
}

.concept-options-rhythm {
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.concept-options-rhythm button {
  min-height: 11rem;
  display: grid;
  align-content: space-between;
  gap: 1.2rem;
}

.rhythm-line {
  display: flex;
  align-items: end;
  gap: 0.35rem;
  width: 100%;
  min-height: 4rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(246, 243, 235, 0.12);
}

.rhythm-line i {
  display: block;
  flex: 1;
  height: 1.4rem;
  background: rgba(121, 216, 255, 0.72);
  box-shadow: 0 0 1rem rgba(121, 216, 255, 0.24);
}

.rhythm-slow i:nth-child(1) {
  flex: 2.2;
  height: 1rem;
}

.rhythm-slow i:nth-child(2) {
  flex: 3;
  height: 1.35rem;
}

.rhythm-slow i:nth-child(3) {
  flex: 2.6;
  height: 0.9rem;
}

.rhythm-dynamic i:nth-child(odd),
.rhythm-narrative i:nth-child(even) {
  height: 2.8rem;
  background: rgba(247, 173, 75, 0.78);
}

.rhythm-fast {
  gap: 0.18rem;
}

.rhythm-fast i {
  height: 3.2rem;
  background: rgba(231, 80, 61, 0.86);
}

.rhythm-fast i:nth-child(even) {
  height: 1.4rem;
}

.rhythm-clean i {
  background: rgba(246, 243, 235, 0.72);
}

.rhythm-clean i:nth-child(2) {
  flex: 2.8;
  height: 1.1rem;
}

.concept-options-ingredients {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.concept-options-ingredients button {
  min-height: 4.2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.concept-options-ingredients button::before {
  content: "";
  flex: 0 0 0.56rem;
  width: 0.56rem;
  height: 0.56rem;
  background: var(--amber);
  box-shadow: 0 0 1rem rgba(247, 173, 75, 0.35);
}

.concept-controls {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(1.3rem, 2.4vw, 2rem);
  padding-top: 1rem;
  border-top: 1px solid rgba(246, 243, 235, 0.1);
}

.concept-preview {
  position: sticky;
  top: 6rem;
  align-self: start;
  display: grid;
  gap: 1rem;
  padding: 1rem;
}

.preview-monitor {
  position: relative;
  min-height: 18rem;
  overflow: hidden;
  border: 1px solid rgba(121, 216, 255, 0.2);
  background:
    linear-gradient(120deg, rgba(121, 216, 255, 0.14), transparent 34%),
    repeating-linear-gradient(0deg, rgba(246, 243, 235, 0.035) 0 1px, transparent 1px 0.48rem),
    #070809;
}

.preview-monitor::after {
  content: "";
  position: absolute;
  inset: 1rem;
  border: 1px solid rgba(246, 243, 235, 0.12);
  pointer-events: none;
}

.preview-rec {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-rec::before {
  content: "";
  display: inline-block;
  width: 0.44rem;
  height: 0.44rem;
  margin-right: 0.38rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow: 0 0 0.8rem currentColor;
  animation: conceptRec 1.45s ease-in-out infinite;
}

.preview-frame {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1.1rem;
  z-index: 2;
  display: grid;
  gap: 0.35rem;
}

.preview-frame span,
.preview-frame small {
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.preview-frame strong {
  max-width: 9ch;
  font-size: clamp(2rem, 4.5vw, 4.6rem);
  line-height: 0.86;
  text-transform: uppercase;
}

.preview-timeline {
  display: grid;
  gap: 0.64rem;
  padding: 0.8rem;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.04);
}

.timeline-track {
  display: grid;
  grid-template-columns: 4rem minmax(0, 1fr);
  align-items: center;
  gap: 0.6rem;
}

.timeline-track span {
  color: var(--muted);
  font-size: 0.68rem;
  font-weight: 900;
}

.timeline-track i {
  display: block;
  width: 24%;
  height: 1.35rem;
  border: 1px solid rgba(246, 243, 235, 0.11);
  background: rgba(246, 243, 235, 0.06);
  transition: width 300ms ease, background 300ms ease, border-color 300ms ease;
}

.timeline-track.is-filled i {
  border-color: rgba(121, 216, 255, 0.44);
  background: linear-gradient(90deg, rgba(121, 216, 255, 0.58), rgba(247, 173, 75, 0.3));
}

.timeline-ingredients {
  display: flex;
  flex-wrap: wrap;
  gap: 0.42rem;
  min-height: 4.2rem;
  padding-top: 0.4rem;
  border-top: 1px solid rgba(246, 243, 235, 0.1);
}

.timeline-ingredients span,
.result-ingredients div span {
  display: inline-flex;
  align-items: center;
  min-height: 1.85rem;
  border: 1px solid rgba(247, 173, 75, 0.34);
  padding: 0.35rem 0.48rem;
  background: rgba(247, 173, 75, 0.1);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: conceptClipIn 220ms ease;
}

.concept-preview p {
  margin: 0;
  color: rgba(246, 243, 235, 0.72);
  font-size: 0.95rem;
}

.concept-result p {
  max-width: 54rem;
  margin: 0 0 1.3rem;
  color: rgba(246, 243, 235, 0.78);
  font-size: clamp(1rem, 1.4vw, 1.22rem);
}

.result-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.72rem;
  margin: 1.6rem 0;
}

.result-grid div,
.result-ingredients,
.result-director-note {
  border: 1px solid rgba(246, 243, 235, 0.12);
  background: rgba(246, 243, 235, 0.045);
  padding: 1rem;
}

.result-grid span,
.result-ingredients > span,
.result-director-note > span {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--cyan);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.result-grid strong {
  display: block;
  font-size: clamp(1rem, 1.5vw, 1.35rem);
  line-height: 1.08;
  text-transform: uppercase;
}

.result-ingredients div {
  display: flex;
  flex-wrap: wrap;
  gap: 0.46rem;
}

.result-director-note {
  margin-top: 0.72rem;
}

.result-director-note p {
  margin: 0;
}

.result-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1.1rem;
  align-items: center;
  margin-top: 1.5rem;
}

.concept-reset.secondary-link {
  border: 0;
  min-height: auto;
  padding: 0;
  background: transparent;
  color: var(--ink);
}

@keyframes conceptStepIn {
  from {
    opacity: 0;
    transform: translateY(0.7rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes conceptClipIn {
  from {
    opacity: 0;
    transform: translateY(0.35rem) scale(0.96);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes conceptRec {
  0%,
  100% {
    opacity: 0.45;
  }
  50% {
    opacity: 1;
  }
}

.concept-intro {
  display: block;
  min-height: auto;
}

.concept-intro .section-kicker {
  margin-bottom: clamp(1rem, 2vw, 1.6rem);
}

.concept-intro h2 {
  max-width: 880px;
  font-size: clamp(2rem, 4vw, 4.45rem);
  line-height: 1;
  text-wrap: balance;
}

.concept-intro-bottom {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(1.5rem, 4vw, 4rem);
  margin-top: clamp(1.4rem, 3vw, 2.4rem);
}

.concept-intro-bottom p {
  max-width: 42rem;
  margin: 0;
  color: rgba(246, 243, 235, 0.76);
  font-size: clamp(1rem, 1.35vw, 1.22rem);
}

.concept-workbench {
  grid-template-columns: 1fr;
}

.concept-editor {
  min-height: auto;
}

.concept-step h3,
.concept-result h3,
.concept-thinking h3 {
  max-width: 20ch;
  font-size: clamp(1.8rem, 3.25vw, 3.45rem);
  line-height: 0.96;
}

.concept-thinking {
  display: none;
}

.concept-thinking.is-active {
  display: block;
  min-height: 16rem;
  animation: conceptStepIn 360ms cubic-bezier(0.22, 1, 0.36, 1);
}

.concept-thinking p {
  max-width: 42rem;
  margin: 0;
  color: rgba(246, 243, 235, 0.78);
  font-size: clamp(1rem, 1.3vw, 1.15rem);
}

.thinking-timeline {
  position: relative;
  display: grid;
  gap: 0.7rem;
  max-width: 58rem;
  margin-top: 2rem;
  padding: 1.1rem;
  border: 1px solid rgba(246, 243, 235, 0.12);
  background:
    repeating-linear-gradient(90deg, rgba(246, 243, 235, 0.045) 0 1px, transparent 1px 4rem),
    rgba(246, 243, 235, 0.035);
  overflow: hidden;
}

.thinking-timeline::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 28%;
  background: linear-gradient(90deg, transparent, rgba(121, 216, 255, 0.18), transparent);
  animation: timelineScan 1.25s ease-in-out infinite;
}

.thinking-timeline i {
  display: block;
  height: 1.8rem;
  border: 1px solid rgba(121, 216, 255, 0.28);
  background: linear-gradient(90deg, rgba(121, 216, 255, 0.45), rgba(247, 173, 75, 0.16));
}

.thinking-timeline i:nth-child(1) {
  width: 78%;
}

.thinking-timeline i:nth-child(2) {
  width: 52%;
  margin-left: 11%;
  background: linear-gradient(90deg, rgba(247, 173, 75, 0.46), rgba(121, 216, 255, 0.14));
}

.thinking-timeline i:nth-child(3) {
  width: 64%;
  margin-left: 24%;
}

.thinking-timeline i:nth-child(4) {
  width: 38%;
  margin-left: 7%;
  background: linear-gradient(90deg, rgba(231, 80, 61, 0.4), rgba(246, 243, 235, 0.12));
}

.concept-options-ingredients button {
  display: grid;
  grid-template-columns: 0.56rem minmax(0, 1fr);
  justify-content: start;
  align-items: center;
  gap: 1rem;
  text-align: left;
}

.concept-options-ingredients button::before {
  grid-column: 1;
  margin: 0;
}

.concept-preview {
  position: relative;
  top: auto;
  align-self: stretch;
  gap: 1rem;
}

.preview-monitor {
  display: none;
}

.timeline-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  padding-bottom: 0.9rem;
  border-bottom: 1px solid rgba(246, 243, 235, 0.1);
}

.timeline-head > span {
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-head p {
  max-width: 34rem;
  margin: 0;
  color: rgba(246, 243, 235, 0.72);
  font-size: 0.95rem;
  text-align: right;
}

.preview-timeline {
  gap: 0.52rem;
  padding: 0;
  border: 0;
  background: transparent;
}

.timeline-track,
.timeline-layer {
  display: grid;
  grid-template-columns: minmax(7rem, 10rem) minmax(0, 1fr);
  align-items: stretch;
  gap: 0;
  min-height: 2.9rem;
  border: 1px solid rgba(246, 243, 235, 0.1);
  background: rgba(246, 243, 235, 0.032);
}

.timeline-track > span,
.timeline-layer > span {
  display: flex;
  align-items: center;
  padding: 0 0.85rem;
  border-right: 1px solid rgba(246, 243, 235, 0.1);
  color: rgba(246, 243, 235, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-lane,
.timeline-layer div {
  position: relative;
  display: flex;
  align-items: center;
  gap: 0.45rem;
  min-width: 0;
  padding: 0.42rem;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(246, 243, 235, 0.04) 0 1px, transparent 1px 4.6rem),
    rgba(5, 6, 7, 0.42);
}

.timeline-lane::after,
.timeline-layer div::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 62%;
  width: 1px;
  background: rgba(247, 173, 75, 0.42);
  opacity: 0.5;
}

.timeline-track i {
  position: relative;
  z-index: 1;
  width: 0;
  height: 1.8rem;
  border: 1px solid rgba(246, 243, 235, 0.11);
  background: rgba(246, 243, 235, 0.06);
  box-shadow: none;
}

.timeline-track.is-filled i {
  border-color: rgba(121, 216, 255, 0.5);
  background: linear-gradient(90deg, rgba(121, 216, 255, 0.58), rgba(247, 173, 75, 0.3));
  box-shadow: 0 0 1.2rem rgba(121, 216, 255, 0.12);
}

.timeline-ingredients {
  display: grid;
  gap: 0.52rem;
  min-height: 0;
  padding-top: 0.35rem;
  border-top: 1px solid rgba(246, 243, 235, 0.1);
}

.timeline-ingredients span,
.result-ingredients div span {
  animation: conceptClipIn 220ms ease;
}

.timeline-layer div span {
  position: relative;
  z-index: 1;
  flex: 0 0 auto;
  min-height: 1.85rem;
  border: 1px solid rgba(247, 173, 75, 0.34);
  padding: 0.35rem 0.55rem;
  background: rgba(247, 173, 75, 0.1);
  color: var(--ink);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.timeline-layer div span.clip-video {
  min-width: clamp(8rem, 18vw, 15rem);
  border-color: rgba(121, 216, 255, 0.38);
  background: rgba(121, 216, 255, 0.13);
}

.timeline-layer div span.clip-audio {
  min-width: clamp(6rem, 14vw, 12rem);
  border-color: rgba(247, 173, 75, 0.42);
  background: rgba(247, 173, 75, 0.12);
}

.timeline-layer div span.clip-text {
  min-width: clamp(5rem, 11vw, 9rem);
  border-color: rgba(246, 243, 235, 0.28);
  background: rgba(246, 243, 235, 0.08);
}

.timeline-layer div span.clip-fx {
  min-width: clamp(4.5rem, 10vw, 8rem);
  border-color: rgba(231, 80, 61, 0.38);
  background: rgba(231, 80, 61, 0.1);
}

.timeline-ingredients .timeline-layer > span {
  display: flex;
  min-height: auto;
  border: 0;
  border-right: 1px solid rgba(246, 243, 235, 0.1);
  padding: 0 0.85rem;
  background: transparent;
  color: rgba(246, 243, 235, 0.68);
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
  animation: none;
  box-shadow: none;
}

@keyframes timelineScan {
  from {
    transform: translateX(-120%);
  }
  to {
    transform: translateX(380%);
  }
}

.statement {
  min-height: 75vh;
  display: grid;
  place-items: center;
  padding: clamp(4rem, 8vw, 7rem) 1rem;
  background:
    radial-gradient(circle at 18% 25%, rgba(231, 80, 61, 0.22), transparent 28%),
    radial-gradient(circle at 82% 72%, rgba(121, 216, 255, 0.18), transparent 30%),
    #121416;
}

.statement p {
  max-width: 1120px;
  margin: 0;
  text-align: center;
  color: var(--ink);
  font-size: clamp(2.35rem, 6.7vw, 6.6rem);
  line-height: 1.08;
  font-weight: 900;
  text-transform: uppercase;
  text-wrap: balance;
  overflow-wrap: normal;
}

.contact {
  width: min(100% - 2rem, var(--max));
}

.contact-copy {
  position: sticky;
  top: 7rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 2rem;
}

.contact-email {
  margin: 1.3rem 0 0;
  color: var(--ink);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
  font-weight: 900;
}

.contact-links a {
  display: inline-grid;
  place-items: center;
  width: 3.4rem;
  height: 3.4rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  padding: 0;
  background: rgba(255, 255, 255, 0.03);
  color: var(--ink);
  transition: background 260ms ease, color 260ms ease, border-color 260ms ease, transform 260ms ease;
}

.contact-links a:hover {
  background: var(--ink);
  border-color: var(--ink);
  color: #090909;
  transform: translateY(-0.18rem);
}

.social-link svg {
  width: 1.35rem;
  height: 1.35rem;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-link[aria-label="YouTube"] svg path:last-child {
  fill: currentColor;
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: clamp(1rem, 2.4vw, 2rem);
  border: 1px solid var(--line);
  background: var(--panel);
}

.botcheck {
  position: absolute;
  left: -9999px;
  opacity: 0;
  pointer-events: none;
}

.contact-form label {
  display: grid;
  gap: 0.5rem;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(246, 243, 235, 0.18);
  border-radius: 0;
  background: rgba(8, 9, 10, 0.72);
  color: var(--ink);
  font: inherit;
  padding: 1rem;
  outline: none;
  resize: vertical;
  transition: border-color 180ms ease, background 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--cyan);
  background: rgba(8, 9, 10, 0.92);
}

.contact-form button {
  min-height: 3.4rem;
  border: 0;
  background: var(--ink);
  color: #0b0b0b;
  cursor: pointer;
  font: inherit;
  font-weight: 900;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease;
}

.contact-form button:hover {
  background: var(--amber);
  transform: translateY(-0.15rem);
}

.contact-form button:disabled {
  cursor: wait;
  opacity: 0.58;
  transform: none;
}

.form-note {
  min-height: 1.4rem;
  margin: 0;
  color: var(--cyan);
  font-size: 0.92rem;
}

.form-note a {
  color: var(--ink);
  font-weight: 900;
  text-decoration: underline;
  text-decoration-color: var(--cyan);
  text-underline-offset: 0.22rem;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem clamp(1rem, 4vw, 4rem);
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.9rem;
}

.reveal {
  opacity: 0;
  transform: translateY(2rem);
  transition:
    opacity 760ms ease,
    transform 920ms cubic-bezier(0.22, 1, 0.36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

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

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-25%);
  }
}

@keyframes eventPulse {
  0%,
  100% {
    opacity: 0.4;
    transform: scale(0.92);
  }
  50% {
    opacity: 0.72;
    transform: scale(1.08);
  }
}

@keyframes waveBeat {
  0%,
  100% {
    transform: scaleY(0.55);
    opacity: 0.5;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes thumbCursor {
  0%,
  100% {
    transform: translate(0, 0) rotate(-12deg) scale(0.92);
  }
  28% {
    transform: translate(15rem, -8.8rem) rotate(-7deg) scale(1);
  }
  56% {
    transform: translate(28rem, -2.2rem) rotate(-4deg) scale(1.05);
  }
  74% {
    transform: translate(13rem, -3.4rem) rotate(-9deg) scale(0.98);
  }
}

@keyframes speedLines {
  0%,
  100% {
    opacity: 0.56;
    transform: translateX(-2%);
  }
  50% {
    opacity: 0.78;
    transform: translateX(2%);
  }
}

@keyframes socialDrift {
  0%,
  100% {
    opacity: 0.48;
    transform: translateY(0);
  }
  50% {
    opacity: 0.66;
    transform: translateY(-0.55rem);
  }
}

@keyframes cameraFlash {
  0%,
  100% {
    opacity: 0.45;
  }
  42% {
    opacity: 0.45;
  }
  50% {
    opacity: 0.76;
  }
  58% {
    opacity: 0.5;
  }
}

@keyframes youtubeGlow {
  0%,
  100% {
    opacity: 0.5;
    transform: translateY(0);
  }
  50% {
    opacity: 0.72;
    transform: translateY(-0.35rem);
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }

  .hero-bg {
    transform: scale(1.04) !important;
  }

  .event-glow,
  .event-wave i,
  .thumb-cursor,
  .auto-showcase::after,
  .reels-preview::after,
  .photo-editorial::after,
  .thumbnail-lab::after,
  .preview-rec::before {
    animation: none;
  }

  .ticker-track {
    animation-duration: 60s !important;
    animation-play-state: paused;
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: auto 1fr auto;
  }

  .mobile-menu-toggle {
    display: inline-flex;
  }

  .brand {
    justify-self: start;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 92vh;
    padding-bottom: 3rem;
  }

  .hero-bottom,
  .intro-grid,
  .section-head,
  .contact,
  .concept-intro,
  .concept-workbench {
    grid-template-columns: 1fr;
  }

  .hero-bottom {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .magnetic-link {
    min-width: 12.5rem;
    min-height: 3.5rem;
  }

  .work-item,
  .services-grid {
    grid-template-columns: 1fr;
  }

  .archive-main {
    padding-top: 6.5rem;
  }

  .archive-title {
    font-size: clamp(3rem, 14vw, 7rem);
  }

  .archive-copy {
    margin-left: 0;
  }

  .archive-switcher {
    top: 4.2rem;
    overflow-x: auto;
    flex-wrap: nowrap;
    width: calc(100% - 2rem);
    scrollbar-width: none;
  }

  .archive-switcher::-webkit-scrollbar {
    display: none;
  }

  .archive-switcher a {
    white-space: nowrap;
  }

  .archive-grid {
    grid-template-columns: repeat(6, minmax(0, 1fr));
    grid-auto-rows: clamp(7rem, 19vw, 11rem);
  }

  .archive-grid[data-category="reels"] {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-auto-rows: auto;
    width: calc(100% - 1rem);
  }

  .archive-grid[data-category="miniaturas"] {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: auto;
    width: calc(100% - 1rem);
  }

  .archive-grid[data-category="overview"] {
    grid-template-columns: 1fr;
    grid-auto-rows: clamp(11rem, 24vw, 18rem);
    width: 100%;
  }

  .archive-card,
  .archive-card-wide {
    grid-column: span 6;
    grid-row: span 2;
  }

  .archive-card-tall,
  .archive-card-portrait,
  .archive-card-square {
    grid-column: span 3;
    grid-row: span 3;
  }

  .archive-card-reels,
  .archive-card-miniaturas {
    grid-column: auto;
    grid-row: auto;
  }

  .archive-category-card,
  .archive-category-automocion,
  .archive-category-eventos,
  .archive-category-fotografia {
    grid-column: auto;
    grid-row: auto;
  }

  .archive-category-reels,
  .archive-category-miniaturas {
    grid-column: auto;
    grid-row: auto;
  }

  .work-meta h3 {
    font-size: clamp(2rem, 10vw, 4.35rem);
  }

  .reels-preview {
    min-height: clamp(21rem, 72vw, 34rem);
  }

  .auto-showcase {
    min-height: clamp(24rem, 74vw, 36rem);
  }

  .event-stage {
    min-height: clamp(24rem, 74vw, 36rem);
  }

  .photo-editorial {
    min-height: clamp(24rem, 74vw, 36rem);
  }

  .thumbnail-lab {
    min-height: clamp(24rem, 74vw, 36rem);
  }

  .thumb-main {
    left: 11%;
    width: 72%;
  }

  .thumb-left {
    width: 54%;
  }

  .thumb-right {
    right: 3%;
    width: 54%;
  }

  .thumb-cursor {
    width: 2.2rem;
    height: 2.2rem;
  }

  .photo-main {
    left: 4%;
    top: 8%;
    width: 60%;
  }

  .photo-side-top {
    right: 4%;
    width: 31%;
  }

  .photo-side-bottom {
    right: 5%;
    width: 34%;
  }

  .photo-strip {
    left: 6%;
    width: 60%;
  }

  .event-photo-toast {
    left: 5%;
    width: 36%;
  }

  .event-photo-music {
    right: 5%;
    width: 34%;
  }

  .event-live {
    left: 50%;
    width: min(28%, 10.5rem);
  }

  .auto-panel-main {
    left: 4%;
    top: 9%;
    width: 58%;
    height: 54%;
  }

  .auto-panel-video {
    right: 7%;
    top: 10%;
    width: min(34%, 12rem);
  }

  .auto-panel-photo {
    left: 10%;
    bottom: 8%;
    width: 42%;
    height: 34%;
  }

  .auto-panel-video-secondary {
    right: 6%;
    bottom: 7%;
    width: min(30%, 10rem);
  }

  .reel-card {
    width: clamp(7.5rem, 27vw, 10.5rem);
  }

  .service-card {
    min-height: 16rem;
  }

  .concept-preview {
    position: static;
  }

  .concept-options-objective,
  .concept-options-format {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .concept-options-ingredients {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .contact-copy {
    position: static;
  }

  .archive-contact-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .archive-contact-footer .contact-links {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 0.95rem 1rem;
  }

  .header-cta {
    display: none;
  }

  .header-social {
    gap: 0.35rem;
  }

  .header-social .social-link {
    width: 2rem;
    height: 2rem;
  }

  .hero {
    min-height: 90vh;
    padding-inline: 1rem;
  }

  .hero-title {
    max-width: 100%;
  }

  .hero-name {
    width: min(100%, 39rem);
  }

  .hero-title span {
    max-width: 92vw;
    margin-top: 1.35rem;
    font-size: clamp(1rem, 5vw, 1.55rem);
    line-height: 1.18;
  }

  .ticker-set {
    gap: 1rem;
    padding-right: 1rem;
  }

  .ticker-logo {
    width: clamp(8.4rem, 42vw, 12rem);
    height: 5rem;
    padding: 0.65rem;
  }

  .work-item {
    padding: 0;
  }

  .work-meta {
    padding: 1.2rem;
  }

  .project-more {
    margin-top: 1rem;
  }

  .archive-main {
    padding-top: 5.9rem;
  }

  .archive-hero {
    width: calc(100% - 2rem);
    margin-bottom: 2.2rem;
  }

  .archive-back {
    margin-bottom: 1.6rem;
  }

  .archive-title {
    font-size: clamp(2.8rem, 17vw, 5.6rem);
    line-height: 0.86;
  }

  .archive-switcher {
    top: 4rem;
  }

  .archive-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 0.5rem;
    padding-inline: 0.5rem;
  }

  .archive-grid[data-category="reels"],
  .archive-grid[data-category="miniaturas"],
  .archive-grid[data-category="overview"] {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .archive-card,
  .archive-card-wide,
  .archive-card-tall,
  .archive-card-portrait,
  .archive-card-square {
    grid-column: auto;
    grid-row: auto;
    min-height: 70vw;
  }

  .archive-card-portrait {
    min-height: 118vw;
  }

  .archive-card-reels {
    width: min(100%, 24rem);
    min-height: auto;
    aspect-ratio: 9 / 16;
    justify-self: center;
  }

  .archive-card-miniaturas {
    min-height: auto;
    aspect-ratio: 16 / 9;
  }

  .archive-category-card,
  .archive-category-automocion,
  .archive-category-eventos,
  .archive-category-reels,
  .archive-category-fotografia,
  .archive-category-miniaturas {
    grid-column: auto;
    grid-row: auto;
    min-height: clamp(10rem, 42vw, 16rem);
  }

  .archive-category-reels {
    min-height: clamp(10rem, 42vw, 16rem);
  }

  .archive-card-label {
    opacity: 1;
    transform: none;
  }

  .archive-category-card .archive-card-label {
    left: 50%;
    right: auto;
    top: 50%;
    bottom: auto;
    width: min(90%, 24rem);
    text-align: center;
    transform: translate(-50%, -50%);
  }

  .archive-category-card .archive-card-label strong {
    font-size: clamp(2.2rem, 14vw, 5rem);
  }

  .lightbox-stage img,
  .lightbox-stage video {
    max-height: 82vh;
  }

  .lightbox-close {
    min-height: 2.45rem;
  }

  .work-meta h3 {
    font-size: clamp(1.75rem, 12vw, 3.35rem);
    line-height: 0.98;
  }

  .reels-preview {
    min-height: 23rem;
  }

  .auto-showcase {
    min-height: 24rem;
  }

  .event-stage {
    min-height: 24rem;
  }

  .photo-editorial {
    min-height: 30rem;
  }

  .thumbnail-lab {
    min-height: 24rem;
  }

  .thumb-main {
    left: 5%;
    top: 22%;
    width: 78%;
  }

  .thumb-left {
    left: 4%;
    bottom: 12%;
    width: 60%;
  }

  .thumb-right {
    right: 4%;
    top: 8%;
    width: 62%;
  }

  .thumb-cursor {
    left: 14%;
    top: 73%;
  }

  @keyframes thumbCursor {
    0%,
    100% {
      transform: translate(0, 0) rotate(-12deg) scale(0.9);
    }
    35% {
      transform: translate(8rem, -7.2rem) rotate(-6deg) scale(1);
    }
    68% {
      transform: translate(12rem, -1.6rem) rotate(-4deg) scale(1.02);
    }
  }

  .photo-main {
    left: 3%;
    top: 5%;
    width: 70%;
  }

  .photo-side-top {
    right: 3%;
    top: 18%;
    width: 38%;
  }

  .photo-side-bottom {
    right: 4%;
    bottom: 6%;
    width: 42%;
  }

  .photo-strip {
    left: 4%;
    bottom: 9%;
    width: 66%;
  }

  .event-wave {
    bottom: 7%;
    height: 3.2rem;
  }

  .auto-panel span {
    font-size: 0.65rem;
  }

  .reel-card-one {
    --x: -46%;
    --r: -7deg;
  }

  .reel-card-three {
    --x: 46%;
    --r: 7deg;
  }

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .concept-lab {
    width: min(100% - 1rem, var(--max));
  }

  .concept-intro {
    padding: 1rem;
  }

  .concept-intro h2 {
    font-size: clamp(2.5rem, 15vw, 4.8rem);
  }

  .concept-builder {
    padding: 0 0.5rem 0.5rem;
  }

  .concept-editor,
  .concept-preview {
    padding: 0.85rem;
  }

  .concept-editor {
    min-height: 0;
  }

  .concept-step h3,
  .concept-result h3 {
    max-width: 10ch;
    font-size: clamp(2rem, 12vw, 3.6rem);
  }

  .concept-options-objective,
  .concept-options-format,
  .concept-options-mood,
  .concept-options-rhythm,
  .concept-options-ingredients,
  .result-grid {
    grid-template-columns: 1fr;
  }

  .concept-options button {
    min-height: 5.6rem;
  }

  .concept-options-mood button,
  .concept-options-rhythm button {
    min-height: 7rem;
  }

  .concept-options-ingredients button {
    min-height: 3.8rem;
  }

  .concept-controls,
  .result-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .concept-back,
  .concept-next,
  .concept-start {
    width: 100%;
  }

  .preview-monitor {
    min-height: 15rem;
  }

  .preview-frame strong {
    max-width: 10ch;
    font-size: clamp(2rem, 13vw, 3.4rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .thinking-timeline::after {
    animation: none;
    opacity: 0;
  }
}

@media (max-width: 980px) {
  .concept-intro-bottom {
    align-items: start;
    flex-direction: column;
  }

  .concept-intro-actions {
    width: min(100%, 26rem);
  }

  .timeline-head {
    align-items: start;
    flex-direction: column;
  }

  .timeline-head p {
    max-width: 100%;
    text-align: left;
  }

  .timeline-track,
  .timeline-layer {
    grid-template-columns: minmax(6.8rem, 8rem) minmax(0, 1fr);
  }
}

@media (max-width: 620px) {
  .concept-intro h2 {
    max-width: 100%;
    font-size: clamp(2.15rem, 11.5vw, 3.65rem);
    line-height: 1.02;
  }

  .concept-step h3,
  .concept-result h3,
  .concept-thinking h3 {
    max-width: 100%;
    font-size: clamp(1.9rem, 10vw, 3.1rem);
    line-height: 0.98;
  }

  .timeline-track,
  .timeline-layer {
    grid-template-columns: 5.8rem minmax(14rem, 1fr);
    min-height: 2.7rem;
  }

  .timeline-track > span,
  .timeline-ingredients .timeline-layer > span {
    padding: 0 0.55rem;
    font-size: 0.62rem;
  }

  .timeline-lane,
  .timeline-layer div {
    overflow-x: auto;
    scrollbar-width: none;
  }

  .timeline-lane::-webkit-scrollbar,
  .timeline-layer div::-webkit-scrollbar {
    display: none;
  }

  .timeline-layer div span.clip-video,
  .timeline-layer div span.clip-audio,
  .timeline-layer div span.clip-text,
  .timeline-layer div span.clip-fx {
    min-width: 7rem;
  }
}

.concept-preview {
  padding: clamp(0.7rem, 1.1vw, 0.95rem);
  border-color: rgba(121, 216, 255, 0.28);
  background:
    linear-gradient(135deg, rgba(121, 216, 255, 0.055), transparent 30%),
    rgba(5, 7, 9, 0.78);
  box-shadow: 0 0 0 1px rgba(121, 216, 255, 0.04), 0 1.5rem 5rem rgba(0, 0, 0, 0.24);
}

.timeline-head {
  align-items: center;
  padding: 0 0 0.85rem;
}

.edit-timeline {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(121, 216, 255, 0.22);
  background:
    linear-gradient(180deg, rgba(246, 243, 235, 0.045), transparent 10%),
    repeating-linear-gradient(90deg, rgba(121, 216, 255, 0.035) 0 1px, transparent 1px 7.2%),
    #080b0d;
  box-shadow:
    inset 0 1px 0 rgba(246, 243, 235, 0.06),
    0 1.5rem 4rem rgba(0, 0, 0, 0.28);
}

.edit-timeline-top {
  display: grid;
  grid-template-columns: 13.4rem auto 1fr;
  align-items: center;
  min-height: 2.25rem;
  border-bottom: 1px solid rgba(246, 243, 235, 0.08);
  background:
    linear-gradient(90deg, rgba(121, 216, 255, 0.08), transparent 28%),
    rgba(246, 243, 235, 0.025);
}

.edit-timecode {
  display: flex;
  align-items: center;
  height: 100%;
  padding: 0 0.8rem;
  border-right: 1px solid rgba(246, 243, 235, 0.08);
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 900;
  font-variant-numeric: tabular-nums;
}

.edit-tools {
  display: flex;
  align-items: center;
  gap: 0.58rem;
  height: 100%;
  padding: 0 1rem;
  border-right: 1px solid rgba(246, 243, 235, 0.08);
}

.edit-tools span {
  width: 0.46rem;
  height: 0.46rem;
  border: 1px solid rgba(246, 243, 235, 0.45);
  transform: rotate(45deg);
}

.edit-tools span:nth-child(2) {
  border-radius: 50%;
  transform: none;
}

.edit-tools span:nth-child(3) {
  width: 0.8rem;
  height: 0.34rem;
  transform: none;
}

.edit-status {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0.55rem;
  min-width: 0;
  padding: 0 1rem;
  color: rgba(246, 243, 235, 0.68);
  font-size: 0.88rem;
}

.edit-status i {
  flex: 0 0 0.45rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: 0 0 0.9rem rgba(121, 216, 255, 0.7);
}

.edit-ruler {
  display: grid;
  grid-template-columns: repeat(13, minmax(0, 1fr));
  margin-left: 13.4rem;
  min-height: 1.75rem;
  border-bottom: 1px solid rgba(246, 243, 235, 0.08);
  background:
    repeating-linear-gradient(90deg, rgba(246, 243, 235, 0.13) 0 1px, transparent 1px 0.62rem),
    rgba(0, 0, 0, 0.1);
}

.edit-ruler span {
  position: relative;
  display: flex;
  align-items: center;
  padding-left: 0.42rem;
  color: rgba(246, 243, 235, 0.64);
  font-size: 0.66rem;
  font-variant-numeric: tabular-nums;
}

.edit-ruler span::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 1px;
  height: 0.74rem;
  background: rgba(246, 243, 235, 0.28);
}

.edit-stage {
  position: relative;
  display: grid;
}

.edit-track {
  display: grid;
  grid-template-columns: 13.4rem minmax(0, 1fr);
  min-height: clamp(2.15rem, 3vw, 2.55rem);
  border-bottom: 1px solid rgba(246, 243, 235, 0.065);
}

.edit-track:last-child {
  border-bottom: 0;
}

.edit-track-label {
  display: grid;
  grid-template-columns: 1.8rem minmax(0, 1fr) 0.8rem 0.8rem;
  align-items: center;
  gap: 0.55rem;
  padding: 0 0.78rem;
  border-right: 1px solid rgba(121, 216, 255, 0.12);
  background:
    linear-gradient(90deg, rgba(246, 243, 235, 0.06), rgba(246, 243, 235, 0.02)),
    rgba(4, 6, 8, 0.74);
}

.edit-track-label strong,
.edit-track-label span {
  font-size: 0.62rem;
  font-weight: 900;
  text-transform: uppercase;
}

.edit-track-label strong {
  color: var(--ink);
}

.edit-track-label span {
  overflow: hidden;
  color: rgba(246, 243, 235, 0.74);
  white-space: nowrap;
  text-overflow: ellipsis;
}

.edit-track-label i,
.edit-track-label b {
  width: 0.58rem;
  height: 0.58rem;
  border: 1px solid rgba(246, 243, 235, 0.5);
  border-radius: 50%;
  opacity: 0.75;
}

.edit-track-label b {
  border-radius: 0.12rem;
}

.edit-track-lane {
  position: relative;
  min-width: 0;
  overflow: hidden;
  background:
    repeating-linear-gradient(90deg, rgba(246, 243, 235, 0.04) 0 1px, transparent 1px 7.692%),
    linear-gradient(180deg, rgba(246, 243, 235, 0.03), transparent);
}

.edit-track-lane::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0 49.9%, rgba(121, 216, 255, 0.08) 50%, transparent 50.15%);
  pointer-events: none;
}

.edit-playhead {
  position: absolute;
  z-index: 8;
  top: 0;
  bottom: 0;
  left: calc(13.4rem + 31%);
  width: 2px;
  background: var(--cyan);
  box-shadow: 0 0 1.2rem rgba(121, 216, 255, 0.85);
  pointer-events: none;
}

.edit-playhead::before {
  content: "";
  position: absolute;
  top: -0.7rem;
  left: 50%;
  width: 0.9rem;
  height: 0.9rem;
  background: var(--cyan);
  clip-path: polygon(50% 100%, 0 0, 100% 0);
  transform: translateX(-50%);
  box-shadow: 0 0 1rem rgba(121, 216, 255, 0.62);
}

.edit-clip {
  position: absolute;
  top: 0.36rem;
  bottom: 0.36rem;
  z-index: 2;
  border: 1px solid rgba(246, 243, 235, 0.22);
  border-radius: 0.18rem;
  box-shadow:
    inset 0 1px 0 rgba(246, 243, 235, 0.2),
    inset 0 -0.9rem 1.4rem rgba(0, 0, 0, 0.18),
    0 0.8rem 1.6rem rgba(0, 0, 0, 0.25);
  animation: editClipIn 280ms ease var(--clip-delay, 0ms) both;
}

.edit-clip::before {
  content: "";
  position: absolute;
  inset: 0.2rem;
  border-top: 1px solid rgba(246, 243, 235, 0.15);
  opacity: 0.8;
}

.edit-clip.has-wave::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  right: 0.28rem;
  top: 50%;
  height: 0.55rem;
  background:
    repeating-linear-gradient(90deg, rgba(246, 243, 235, 0.28) 0 1px, transparent 1px 0.35rem),
    linear-gradient(180deg, transparent 0 35%, rgba(246, 243, 235, 0.14) 35% 65%, transparent 65%);
  transform: translateY(-50%);
  opacity: 0.72;
}

.edit-clip.is-compact::before {
  inset: 0.12rem;
}

.clip-video-main {
  background: linear-gradient(180deg, rgba(121, 216, 255, 0.78), rgba(37, 99, 132, 0.82));
  border-color: rgba(121, 216, 255, 0.56);
}

.clip-video-broll {
  background: linear-gradient(180deg, rgba(82, 213, 222, 0.54), rgba(26, 95, 100, 0.74));
  border-color: rgba(121, 216, 255, 0.36);
}

.clip-overlay,
.clip-title {
  background: linear-gradient(180deg, rgba(246, 243, 235, 0.82), rgba(140, 145, 146, 0.86));
  border-color: rgba(246, 243, 235, 0.44);
}

.clip-audio-music,
.clip-audio-ambient,
.clip-audio-fx {
  background: linear-gradient(180deg, rgba(247, 173, 75, 0.78), rgba(118, 66, 12, 0.82));
  border-color: rgba(247, 173, 75, 0.46);
}

.clip-audio-ambient {
  background: linear-gradient(180deg, rgba(209, 126, 32, 0.58), rgba(82, 47, 12, 0.76));
}

.clip-audio-fx {
  background: linear-gradient(180deg, rgba(247, 173, 75, 0.52), rgba(101, 55, 11, 0.8));
}

.clip-transition {
  top: 0.46rem;
  bottom: 0.46rem;
  background: linear-gradient(135deg, rgba(121, 216, 255, 0.55), rgba(247, 173, 75, 0.25));
  border-color: rgba(121, 216, 255, 0.4);
  transform: skewX(-14deg);
}

.concept-builder.is-rendering .concept-editor {
  display: none;
}

.concept-lab.is-rendering .concept-intro {
  display: none;
}

.concept-lab.is-rendering .concept-builder {
  padding-top: clamp(1rem, 4vw, 4rem);
}

.concept-builder.is-rendering .concept-preview {
  min-height: min(72vh, 46rem);
  display: grid;
  align-content: center;
  box-shadow:
    0 0 0 1px rgba(121, 216, 255, 0.32),
    0 2rem 7rem rgba(0, 0, 0, 0.45),
    0 0 4rem rgba(121, 216, 255, 0.12);
}

.concept-builder.is-rendering .timeline-head p {
  color: var(--cyan);
}

.concept-lab.has-started .concept-intro {
  display: none;
}

.concept-lab.has-started .concept-builder {
  padding-top: clamp(0.7rem, 1.4vw, 1.1rem);
}

.concept-lab.has-started .concept-editor {
  padding: clamp(0.8rem, 1.35vw, 1.15rem);
}

.concept-lab.has-started .concept-progress {
  margin-bottom: clamp(0.8rem, 1.5vw, 1.15rem);
}

.concept-lab.has-started .concept-step-label {
  margin-bottom: 0.38rem;
}

.concept-lab.has-started .concept-step h3 {
  margin-bottom: clamp(0.85rem, 1.35vw, 1.15rem);
  font-size: clamp(1.55rem, 2.7vw, 2.9rem);
  line-height: 0.98;
}

.concept-lab.has-started .concept-options {
  gap: 0.58rem;
}

.concept-lab.has-started .concept-options button {
  min-height: 5rem;
  padding: 0.82rem;
}

.concept-lab.has-started .concept-options-objective button > span {
  margin-bottom: 0.75rem;
}

.concept-lab.has-started .concept-options-mood button {
  min-height: 5.65rem;
}

.concept-lab.has-started .concept-options-mood button > span {
  height: 1.55rem;
  margin-bottom: 0.65rem;
}

.concept-lab.has-started .concept-options-rhythm button {
  min-height: 7.45rem;
  gap: 0.65rem;
}

.concept-lab.has-started .rhythm-line {
  min-height: 2.85rem;
  padding-top: 0.7rem;
}

.concept-lab.has-started .concept-options-ingredients button {
  min-height: 3.35rem;
}

.concept-lab.has-started .concept-controls {
  margin-top: 0.85rem;
  padding-top: 0.75rem;
}

.concept-lab.has-started .edit-timeline-top {
  min-height: 2rem;
}

.concept-lab.has-started .edit-ruler {
  min-height: 1.48rem;
}

.concept-lab.has-started .edit-track {
  min-height: clamp(1.88rem, 2.35vw, 2.28rem);
}

.concept-lab.has-started .edit-clip {
  top: 0.3rem;
  bottom: 0.3rem;
}

.concept-lab.has-started .timeline-head {
  padding-bottom: 0.55rem;
}

.concept-lab.has-started .timeline-head p {
  font-size: 0.82rem;
}

.concept-preview.is-compiling .edit-playhead {
  animation: editPlayhead 1.55s cubic-bezier(0.65, 0, 0.35, 1) both;
}

.concept-preview.is-compiling .edit-clip {
  animation:
    editClipPulse 1.35s ease-in-out var(--clip-delay, 0ms) both,
    editClipIn 260ms ease var(--clip-delay, 0ms) both;
}

.concept-preview.is-compiling .edit-timeline::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 10;
  background: linear-gradient(90deg, transparent, rgba(121, 216, 255, 0.16), transparent);
  animation: editRenderSweep 1.55s ease both;
  pointer-events: none;
}

@keyframes editClipIn {
  from {
    opacity: 0;
    transform: translateY(0.35rem) scaleX(0.92);
  }
  to {
    opacity: 1;
    transform: translateY(0) scaleX(1);
  }
}

@keyframes editClipPulse {
  0%,
  100% {
    filter: brightness(1);
  }
  45% {
    filter: brightness(1.28);
  }
}

@keyframes editPlayhead {
  from {
    left: calc(13.4rem + 6%);
  }
  to {
    left: calc(13.4rem + 88%);
  }
}

@keyframes editRenderSweep {
  from {
    transform: translateX(-80%);
  }
  to {
    transform: translateX(95%);
  }
}

@media (prefers-reduced-motion: reduce) {
  .edit-clip,
  .concept-preview.is-compiling .edit-playhead,
  .concept-preview.is-compiling .edit-clip,
  .concept-preview.is-compiling .edit-timeline::after {
    animation: none;
  }
}

@media (max-width: 980px) {
  .edit-timeline {
    overflow-x: auto;
  }

  .edit-timeline-top,
  .edit-track {
    grid-template-columns: 10.4rem minmax(46rem, 1fr);
  }

  .edit-ruler {
    margin-left: 10.4rem;
    min-width: 46rem;
  }

  .edit-track-label {
    grid-template-columns: 1.5rem minmax(0, 1fr) 0.65rem 0.65rem;
    padding-inline: 0.6rem;
  }

  .edit-playhead {
    left: calc(10.4rem + 31%);
  }

  @keyframes editPlayhead {
    from {
      left: calc(10.4rem + 6%);
    }
    to {
      left: calc(10.4rem + 88%);
    }
  }
}

@media (max-width: 620px) {
  .edit-timeline-top {
    grid-template-columns: 8.2rem minmax(4rem, auto) minmax(24rem, 1fr);
  }

  .edit-track {
    grid-template-columns: 8.2rem minmax(38rem, 1fr);
  }

  .edit-ruler {
    margin-left: 8.2rem;
    min-width: 38rem;
  }

  .edit-status {
    justify-content: flex-start;
    font-size: 0.75rem;
  }

  .edit-track-label {
    grid-template-columns: 1.35rem minmax(0, 1fr);
  }

  .edit-track-label i,
  .edit-track-label b {
    display: none;
  }

  .edit-track-label span {
    font-size: 0.58rem;
  }

  .edit-playhead {
    left: calc(8.2rem + 31%);
  }

  @keyframes editPlayhead {
    from {
      left: calc(8.2rem + 6%);
    }
    to {
      left: calc(8.2rem + 88%);
    }
  }
}

.concept-preview {
  --track-head-width: 13.4rem;
  --playhead-x: 36%;
}

.edit-playhead {
  left: var(--playhead-left, calc(var(--track-head-width) + var(--playhead-x)));
  transition: none;
}

.concept-preview.is-compiling .edit-playhead {
  transition: none;
}

.concept-lab.is-result .concept-preview,
.concept-lab.is-result .concept-progress,
.concept-lab.is-result .concept-controls,
.concept-lab.is-result .result-grid,
.concept-lab.is-result .result-ingredients {
  display: none;
}

.concept-lab.is-result .concept-builder {
  padding-top: clamp(1rem, 2vw, 1.6rem);
}

.concept-lab.is-result .concept-workbench {
  display: block;
}

.concept-lab.is-result .concept-editor {
  width: min(100%, 58rem);
  min-height: auto;
  margin: 0 auto;
  padding: clamp(1rem, 2vw, 1.6rem);
}

.concept-lab.is-result .concept-result h3 {
  max-width: 15ch;
  margin-bottom: 0.85rem;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.concept-lab.is-result .concept-result p {
  max-width: 44rem;
  margin-bottom: 1rem;
  font-size: clamp(1rem, 1.25vw, 1.14rem);
}

.concept-lab.is-result .result-director-note {
  margin-top: 1rem;
}

.concept-lab.is-result .result-director-note p {
  font-size: clamp(1rem, 1.2vw, 1.12rem);
}

.concept-lab.is-result .result-actions {
  margin-top: 1.2rem;
}

.concept-options-mood button > span {
  position: relative;
  overflow: hidden;
  background-color: rgba(5, 10, 12, 0.78);
  box-shadow: inset 0 0 1.4rem rgba(0, 0, 0, 0.3);
}

.concept-options-mood button > span::before,
.concept-options-mood button > span::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.concept-options-mood button[data-value="cinematic"] > span {
  background:
    linear-gradient(0deg, rgba(0, 0, 0, 0.78) 0 18%, transparent 18% 82%, rgba(0, 0, 0, 0.72) 82% 100%),
    linear-gradient(90deg, rgba(121, 216, 255, 0.55), rgba(246, 243, 235, 0.1) 42%, rgba(247, 173, 75, 0.18));
}

.concept-options-mood button[data-value="cinematic"] > span::after {
  inset: -40% 38%;
  width: 1.2rem;
  transform: rotate(42deg);
  background: rgba(247, 173, 75, 0.34);
  filter: blur(0.02rem);
}

.concept-options-mood button[data-value="elegant"] > span {
  background:
    linear-gradient(90deg, transparent 0 38%, rgba(246, 243, 235, 0.32) 38% 39%, transparent 39% 100%),
    linear-gradient(90deg, rgba(121, 216, 255, 0.42), rgba(246, 243, 235, 0.08), rgba(247, 173, 75, 0.24));
}

.concept-options-mood button[data-value="elegant"] > span::after {
  top: 50%;
  right: 0.9rem;
  left: 0.9rem;
  height: 1px;
  transform: translateY(-50%);
  background: rgba(246, 243, 235, 0.34);
}

.concept-options-mood button[data-value="urban"] > span {
  background:
    linear-gradient(0deg, rgba(121, 216, 255, 0.46) 0 0.35rem, transparent 0.35rem 100%),
    repeating-linear-gradient(90deg, rgba(121, 216, 255, 0.45) 0 0.34rem, rgba(40, 58, 62, 0.9) 0.34rem 0.68rem, rgba(231, 80, 61, 0.36) 0.68rem 0.9rem, transparent 0.9rem 1.32rem);
}

.concept-options-mood button[data-value="urban"] > span::before {
  top: auto;
  height: 70%;
  background:
    linear-gradient(90deg, transparent 0 8%, rgba(246, 243, 235, 0.16) 8% 10%, transparent 10% 21%, rgba(246, 243, 235, 0.12) 21% 23%, transparent 23% 100%),
    repeating-linear-gradient(90deg, transparent 0 1.6rem, rgba(0, 0, 0, 0.28) 1.6rem 1.7rem);
}

.concept-options-mood button[data-value="emotional"] > span {
  background:
    linear-gradient(0deg, transparent 0 30%, rgba(247, 173, 75, 0.2) 30% 34%, transparent 34% 66%, rgba(246, 243, 235, 0.12) 66% 70%, transparent 70% 100%),
    linear-gradient(90deg, rgba(247, 173, 75, 0.48), rgba(140, 87, 49, 0.28), rgba(246, 243, 235, 0.08));
}

.concept-options-mood button[data-value="emotional"] > span::after {
  top: 45%;
  left: 8%;
  width: 68%;
  height: 0.38rem;
  transform: skewX(-22deg);
  background: linear-gradient(90deg, transparent, rgba(247, 173, 75, 0.46), transparent);
}

.concept-options-mood button[data-value="energetic"] > span {
  background:
    repeating-linear-gradient(115deg, transparent 0 0.72rem, rgba(231, 80, 61, 0.55) 0.72rem 1.18rem, transparent 1.18rem 1.7rem),
    linear-gradient(90deg, rgba(121, 216, 255, 0.36), rgba(247, 173, 75, 0.2));
}

.concept-options-mood button[data-value="energetic"] > span::before {
  inset: auto 0.55rem 0.36rem 0.55rem;
  height: 0.58rem;
  background:
    linear-gradient(90deg, rgba(121, 216, 255, 0.74) 0 14%, transparent 14% 20%, rgba(247, 173, 75, 0.78) 20% 34%, transparent 34% 42%, rgba(231, 80, 61, 0.82) 42% 55%, transparent 55% 62%, rgba(121, 216, 255, 0.68) 62% 100%);
}

.concept-options-mood button[data-value="minimal"] > span {
  background:
    linear-gradient(90deg, rgba(246, 243, 235, 0.38) 0 0.52rem, transparent 0.52rem 100%),
    linear-gradient(90deg, rgba(246, 243, 235, 0.2), rgba(246, 243, 235, 0.06), transparent 72%);
}

.concept-options-mood button[data-value="minimal"] > span::after {
  top: 50%;
  right: 1rem;
  left: 2.4rem;
  height: 1px;
  background: rgba(246, 243, 235, 0.38);
}

.concept-options-mood button[data-value="premium"] > span {
  border-color: rgba(247, 173, 75, 0.42);
  background:
    linear-gradient(90deg, rgba(121, 216, 255, 0.3), rgba(246, 243, 235, 0.14) 50%, rgba(247, 173, 75, 0.34)),
    linear-gradient(0deg, rgba(247, 173, 75, 0.22), transparent 34% 66%, rgba(121, 216, 255, 0.16));
}

.concept-options-mood button[data-value="premium"] > span::before {
  inset: 0.32rem;
  border: 1px solid rgba(246, 243, 235, 0.22);
}

.concept-options-mood button[data-value="premium"] > span::after {
  inset: 0 42%;
  background: linear-gradient(90deg, transparent, rgba(246, 243, 235, 0.34), transparent);
}

.concept-options-mood button[data-value="human"] > span {
  background:
    radial-gradient(circle at 18% 50%, rgba(247, 173, 75, 0.48) 0 0.24rem, transparent 0.26rem),
    radial-gradient(circle at 36% 50%, rgba(246, 243, 235, 0.34) 0 0.18rem, transparent 0.2rem),
    radial-gradient(circle at 56% 50%, rgba(247, 173, 75, 0.42) 0 0.24rem, transparent 0.26rem),
    radial-gradient(circle at 76% 50%, rgba(121, 216, 255, 0.3) 0 0.18rem, transparent 0.2rem),
    linear-gradient(90deg, rgba(247, 173, 75, 0.28), rgba(246, 243, 235, 0.08));
}

.concept-options-mood button[data-value="human"] > span::after {
  top: 50%;
  right: 10%;
  left: 10%;
  height: 1px;
  background: rgba(246, 243, 235, 0.2);
}

@media (max-width: 980px) {
  .concept-preview {
    --track-head-width: 10.4rem;
  }
}

@media (max-width: 620px) {
  .concept-preview {
    --track-head-width: 8.2rem;
  }

  .concept-lab.is-result .concept-result h3 {
    font-size: clamp(2rem, 12vw, 3.4rem);
  }
}
