:root {
  --bg: #05070b;
  --bg-2: #090d13;
  --ink: #f7f4ec;
  --muted: #a8a59d;
  --soft: rgba(247, 244, 236, 0.72);
  --line: rgba(247, 244, 236, 0.13);
  --panel: rgba(247, 244, 236, 0.055);
  --panel-strong: rgba(247, 244, 236, 0.095);
  --cyan: #52e3f6;
  --warm: #08d7d0;
  --rose: #ff7f9e;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background:
    radial-gradient(circle at 18% 12%, rgba(82, 227, 246, 0.12), transparent 26%),
    radial-gradient(circle at 82% 24%, rgba(255, 127, 158, 0.08), transparent 28%),
    linear-gradient(180deg, var(--bg), var(--bg-2) 42%, #06080b);
  color: var(--ink);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -2;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 244, 236, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 244, 236, 0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.8), transparent 78%);
}

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

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

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

.signal-canvas {
  position: fixed;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
  opacity: 0.36;
  pointer-events: none;
}

.section-shell {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px max(24px, calc((100vw - var(--max)) / 2));
  border-bottom: 1px solid var(--line);
  background: rgba(5, 7, 11, 0.7);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 0;
}

.logo-slot {
  width: 240px;
  min-height: 76px;
  justify-content: flex-start;
}

.logo-slot img {
  display: block;
  max-width: 100%;
  max-height: 82px;
  object-fit: contain;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-nav a {
  transition: color 180ms ease, border-color 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--ink);
}

.nav-cta {
  padding: 13px 18px;
  border: 1px solid rgba(247, 244, 236, 0.22);
  border-radius: 8px;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(247, 244, 236, 0.22);
  border-radius: 8px;
  background: transparent;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.hero {
  min-height: 100vh;
}

.hero-zoom {
  height: 300vh;
  width: 100%;
}

.hero-zoom-sticky {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  padding-top: 150px;
  padding-bottom: 76px;
}

.hero-zoom-sticky::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(circle at 50% 41%, rgba(5, 7, 11, calc(var(--zoom-image-progress, 0) * 1.18)), transparent 28%),
    rgba(5, 7, 11, calc(var(--zoom-image-progress, 0) * 0.46));
  pointer-events: none;
}

.hero-scene {
  position: absolute;
  inset: 0;
  z-index: -1;
  overflow: hidden;
  background: #05070b;
}

.hero-scene::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 7, 11, 0.84), rgba(5, 7, 11, 0.34) 36%, rgba(5, 7, 11, 0.08)),
    linear-gradient(0deg, rgba(5, 7, 11, 0.5), rgba(5, 7, 11, 0.02) 52%, rgba(5, 7, 11, 0.28));
}

.hero-stage {
  position: absolute;
  inset: 0;
  transform:
    translate3d(0, calc(var(--zoom-image-progress, 0) * 13vh), 0)
    scale(calc(1 + (var(--zoom-image-progress, 0) * 7.1)));
  transform-origin: 50% 39%;
  transition: transform 80ms linear;
}

.hero-scene img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 50%;
  filter: saturate(calc(0.88 + (var(--zoom-image-progress, 0) * 0.16))) contrast(calc(1.03 + (var(--zoom-image-progress, 0) * 0.14))) blur(calc(var(--zoom-image-progress, 0) * 0.22px));
  transition: filter 80ms linear;
}

.monitor-interface {
  position: absolute;
  left: 37.25%;
  top: 25.25%;
  width: 26%;
  height: 28.35%;
  display: grid;
  align-content: center;
  gap: 5.2%;
  padding: 2.8% 3.1%;
  border-radius: 5px;
  background:
    radial-gradient(circle at 72% 22%, rgba(8, 215, 208, 0.22), transparent 30%),
    linear-gradient(145deg, rgba(4, 8, 13, 0.92), rgba(2, 5, 9, 0.94));
  color: var(--ink);
  opacity: calc(0.82 + (var(--zoom-image-progress, 0) * 0.12));
  overflow: hidden;
}

.monitor-interface::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.026) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.026) 1px, transparent 1px);
  background-size: 7% 12%;
  opacity: 0.22;
}

.monitor-topline,
.monitor-title,
.monitor-grid,
.monitor-timeline {
  position: relative;
  z-index: 1;
}

.monitor-topline {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: var(--cyan);
  font-size: clamp(4px, 0.52vw, 10px);
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.monitor-topline i {
  width: 12%;
  height: 5px;
  border-radius: 999px;
  background: var(--cyan);
  box-shadow: 0 0 10px rgba(8, 215, 208, 0.55);
}

.monitor-title {
  max-width: 82%;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(8px, 1.22vw, 22px);
  font-weight: 800;
  line-height: 0.98;
}

.monitor-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.5%;
}

.monitor-grid span {
  min-height: 3.4vw;
  border: 1px solid rgba(247, 244, 236, 0.1);
  border-radius: 4px;
  background:
    linear-gradient(160deg, rgba(8, 215, 208, 0.2), rgba(247, 244, 236, 0.045)),
    rgba(255, 255, 255, 0.025);
}

.monitor-timeline {
  display: grid;
  grid-template-columns: 1.3fr 0.8fr 1fr 0.7fr;
  gap: 2.6%;
}

.monitor-timeline b {
  height: 6px;
  border-radius: 999px;
  background: rgba(8, 215, 208, 0.58);
}

.hero-bokeh {
  position: absolute;
  inset: 0;
  opacity: calc(0.18 + (var(--zoom-image-progress, 0) * 0.4));
  background:
    radial-gradient(circle at 16% 26%, rgba(8, 215, 208, 0.24), transparent 8%),
    radial-gradient(circle at 78% 22%, rgba(8, 215, 208, 0.2), transparent 10%),
    radial-gradient(circle at 62% 78%, rgba(247, 244, 236, 0.13), transparent 9%),
    radial-gradient(circle at 88% 68%, rgba(8, 215, 208, 0.15), transparent 12%);
  filter: blur(28px);
  mix-blend-mode: screen;
}

.monitor-glow {
  position: absolute;
  left: 34.5%;
  top: 25%;
  width: 31%;
  height: 24%;
  opacity: calc(0.04 + (var(--zoom-image-progress, 0) * 0.78));
  border-radius: 18px;
  background: radial-gradient(circle, rgba(8, 215, 208, 0.32), rgba(8, 215, 208, 0.08) 48%, transparent 72%);
  filter: blur(28px);
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Space Grotesk", Inter, sans-serif;
  letter-spacing: 0;
}

h1 {
  max-width: 1120px;
  font-size: clamp(48px, 6.6vw, 82px);
  line-height: 0.94;
}

h2 {
  font-size: clamp(34px, 5.4vw, 72px);
  line-height: 0.93;
}

h3 {
  font-size: clamp(24px, 2.5vw, 34px);
  line-height: 1.02;
}

.hero-reserved {
  position: relative;
  z-index: 1;
  max-width: 290px;
  margin-left: max(24px, calc((100vw - var(--max)) / 2));
  margin-right: auto;
  padding: 26px 0 26px;
  transform:
    translateY(var(--hero-text-y, 0))
    translateX(var(--hero-text-x, 0))
    scale(var(--hero-text-scale, 1));
  opacity: var(--hero-text-opacity, 1);
  pointer-events: none;
}

.hero-zoom h1 {
  max-width: 290px;
  font-size: clamp(34px, 3.5vw, 46px);
  line-height: 0.96;
}

.hero-copy {
  max-width: 290px;
  margin: 28px 0 0;
  color: var(--soft);
  font-size: 15px;
}

.scroll-cue {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 32px 0 0;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.scroll-cue::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  background: currentColor;
  animation: cueSlide 1600ms ease-in-out infinite;
}

@keyframes cueSlide {
  0%,
  100% {
    transform: scaleX(0.45);
    transform-origin: left;
    opacity: 0.5;
  }

  50% {
    transform: scaleX(1);
    opacity: 1;
  }
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 900;
}

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

.button.ghost {
  color: var(--ink);
  border-color: rgba(247, 244, 236, 0.25);
  background: rgba(247, 244, 236, 0.035);
}

.vision-comparison {
  position: relative;
  margin-top: 42px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  --split: 0%;
  background:
    radial-gradient(circle at 74% 28%, rgba(8, 215, 208, 0.16), transparent 30%),
    rgba(247, 244, 236, 0.045);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  cursor: ew-resize;
  touch-action: none;
  user-select: none;
}

.comparison-image {
  width: 100%;
  aspect-ratio: 16 / 8.55;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.before-image {
  filter: saturate(0.9);
}

.after-image-wrap {
  position: absolute;
  inset: 0;
  overflow: hidden;
  clip-path: inset(0 calc(100% - var(--split)) 0 0);
}

.after-image {
  height: 100%;
}

.comparison-handle {
  position: absolute;
  z-index: 4;
  top: 0;
  bottom: 0;
  left: clamp(26px, var(--split), calc(100% - 26px));
  width: 2px;
  transform: translateX(-1px);
  background: linear-gradient(180deg, transparent, rgba(247, 244, 236, 0.95), transparent);
  pointer-events: none;
}

.comparison-handle span {
  position: absolute;
  top: 50%;
  left: 50%;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  transform: translate(-50%, -50%);
  border-radius: 999px;
  background: var(--ink);
  box-shadow: 0 0 30px rgba(8, 215, 208, 0.34);
}

.comparison-handle span::before {
  content: "↔";
  color: var(--bg);
  font-weight: 900;
}

.comparison-hint {
  position: absolute;
  z-index: 4;
  left: 58px;
  bottom: 24px;
  padding: 10px 13px;
  border: 1px solid rgba(8, 215, 208, 0.28);
  border-radius: 999px;
  color: var(--warm);
  background: rgba(5, 7, 11, 0.72);
  box-shadow: 0 0 28px rgba(8, 215, 208, 0.16);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  animation: hintPulse 1800ms ease-in-out infinite;
  pointer-events: none;
}

.vision-comparison.has-compared .comparison-hint {
  opacity: 0;
  animation: none;
}

@keyframes hintPulse {
  0%,
  100% {
    transform: translateX(0);
    opacity: 0.72;
  }

  50% {
    transform: translateX(8px);
    opacity: 1;
  }
}

.comparison-range {
  position: absolute;
  z-index: 5;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}

.proof-bar {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-bottom: 120px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.proof-item {
  min-height: 190px;
  padding: 24px;
  background: rgba(8, 11, 16, 0.9);
}

.proof-item span,
.service-card span {
  display: block;
  margin-bottom: 22px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.proof-item strong {
  display: block;
  margin-bottom: 12px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: 22px;
  line-height: 1.02;
}

.proof-item p,
.body-copy p,
.work-card p,
.service-card p,
.cta-section p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.work-card p {
  font-size: 15px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1fr);
  gap: 72px;
  align-items: start;
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.body-copy {
  display: grid;
  gap: 22px;
}

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

.work-heading {
  margin-bottom: 42px;
}

.work-heading h2 {
  font-size: clamp(40px, 5.2vw, 72px);
  line-height: 0.96;
}

.work-section .section-heading h3,
.video-section .section-heading h3 {
  max-width: 820px;
  font-size: clamp(28px, 4vw, 54px);
}

.work-section,
.video-section {
  padding: 120px 0;
  border-top: 1px solid var(--line);
}

.work-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}

.web-work-list {
  grid-template-columns: 1fr;
}

.work-card {
  display: grid;
  grid-template-columns: 190px minmax(0, 1fr) auto;
  gap: 22px;
  align-items: center;
  min-height: 132px;
  padding: 14px 18px 14px 14px;
  border: 0;
  border-radius: 0;
  background: rgba(8, 11, 16, 0.92);
  transition: background 180ms ease, transform 180ms ease;
}

.work-card.feature {
  background:
    radial-gradient(circle at 88% 12%, rgba(82, 227, 246, 0.1), transparent 30%),
    rgba(8, 11, 16, 0.92);
}

.work-card:hover {
  background:
    radial-gradient(circle at 90% 20%, rgba(82, 227, 246, 0.12), transparent 30%),
    rgba(247, 244, 236, 0.075);
}

.project-thumb {
  overflow: hidden;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.04);
}

.project-thumb img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  object-position: top center;
  transition: transform 220ms ease;
}

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

.project-copy {
  display: grid;
  gap: 10px;
}

.project-copy h3 {
  font-size: clamp(24px, 2.4vw, 32px);
}

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

.work-card li {
  padding: 6px 9px;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 999px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 800;
}

.work-arrow {
  justify-self: end;
  padding: 8px 12px;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: 999px;
  color: var(--soft);
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.video-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(320px, 0.88fr);
  gap: 18px;
}

.reel-card,
.edit-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.reel-card {
  min-height: 520px;
  display: grid;
  gap: 24px;
  padding: 22px;
}

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

.home-short-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  background: rgba(247, 244, 236, 0.04);
}

.home-short-card::after,
.short-card::after {
  content: "Watch";
  position: absolute;
  right: 10px;
  bottom: 10px;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.78);
  color: var(--ink);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-short-card::after {
  content: none;
}

.motion-card::after {
  content: "Motion";
}

.home-short-card.motion-card::after {
  content: none;
}

.home-short-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.78);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-short-card span + img {
  filter: saturate(1.05);
}

.home-short-card img,
.short-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.home-short-card:hover img,
.short-card:hover img {
  transform: scale(1.05);
  filter: saturate(1.08) contrast(1.05);
}

.video-frame {
  min-height: 380px;
  display: grid;
  align-content: end;
  padding: 28px;
  border: 1px solid rgba(247, 244, 236, 0.12);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(82, 227, 246, 0.13), rgba(243, 177, 106, 0.07)),
    repeating-linear-gradient(90deg, rgba(247, 244, 236, 0.05) 0 1px, transparent 1px 86px),
    rgba(247, 244, 236, 0.045);
}

.video-frame span,
.edit-card span {
  display: block;
  margin-bottom: 14px;
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.video-frame strong {
  max-width: 520px;
  font-family: "Space Grotesk", Inter, sans-serif;
  font-size: clamp(28px, 4vw, 52px);
  line-height: 0.96;
}

.reel-card p,
.edit-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

.inline-link {
  align-self: end;
  display: inline-flex;
  width: fit-content;
  padding: 11px 14px;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.edit-grid {
  display: grid;
  gap: 18px;
}

.edit-card {
  min-height: 160px;
  padding: 24px;
}

.edit-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.services-section {
  padding: 120px 0;
  background: rgba(247, 244, 236, 0.94);
  color: #0a0d12;
}

.services-section .eyebrow {
  color: #0d7f8c;
}

.services-section .section-heading {
  max-width: 900px;
}

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

.service-card {
  min-height: 300px;
  padding: 26px;
  border: 1px solid rgba(10, 13, 18, 0.14);
  border-radius: 8px;
  background: #fffdfa;
}

.service-card span {
  color: var(--warm);
}

.service-card p {
  color: #5d5b55;
}

.cta-section {
  scroll-margin-top: 120px;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.82fr);
  gap: 46px;
  align-items: start;
  margin-top: 30px;
  margin-bottom: 80px;
  padding: 70px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(82, 227, 246, 0.14), rgba(243, 177, 106, 0.08)),
    rgba(247, 244, 236, 0.055);
}

.cta-section h2 {
  max-width: 920px;
}

.contact-copy {
  display: grid;
  gap: 22px;
}

.contact-copy p:not(.eyebrow) {
  max-width: 620px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--soft);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.54);
  color: var(--ink);
  font: inherit;
  letter-spacing: 0;
  outline: none;
  text-transform: none;
}

.contact-form input,
.contact-form select {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  resize: vertical;
  padding: 14px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(8, 215, 208, 0.62);
  box-shadow: 0 0 0 3px rgba(8, 215, 208, 0.12);
}

.contact-form .button {
  width: 100%;
  margin-top: 4px;
}

.contact-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

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

.form-status {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.form-status.success {
  color: var(--cyan);
}

.form-status.error {
  color: var(--warm);
}

.bottom-nav {
  grid-column: 1 / -1;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  border-top: 1px solid rgba(247, 244, 236, 0.12);
}

.bottom-nav a {
  display: inline-flex;
  min-height: 42px;
  align-items: center;
  padding: 0 14px;
  border: 1px solid rgba(247, 244, 236, 0.16);
  border-radius: 999px;
  color: var(--ink);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.gallery-hero {
  min-height: 620px;
  display: grid;
  align-content: end;
  padding-top: 160px;
  padding-bottom: 90px;
}

.gallery-hero h1 {
  max-width: 980px;
}

.gallery-section {
  padding: 110px 0;
  border-top: 1px solid var(--line);
}

.gallery-feature {
  display: grid;
  gap: 22px;
  margin-bottom: 28px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.short-feature {
  grid-template-columns: minmax(240px, 360px) minmax(0, 1fr);
  align-items: center;
  gap: 34px;
}

.short-player {
  overflow: hidden;
  width: min(100%, 340px);
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(82, 227, 246, 0.12), rgba(243, 177, 106, 0.06)),
    rgba(247, 244, 236, 0.04);
}

.short-player iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

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

.short-copy span {
  color: var(--cyan);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.short-copy h2 {
  max-width: 620px;
  font-size: clamp(36px, 5vw, 68px);
}

.short-copy .inline-link {
  margin-top: 10px;
}

.shorts-heading {
  max-width: 780px;
  margin: 76px 0 28px;
}

.shorts-heading h2 {
  font-size: clamp(34px, 4.8vw, 64px);
}

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

.short-card {
  position: relative;
  overflow: hidden;
  display: block;
  aspect-ratio: 9 / 16;
  border: 1px solid rgba(247, 244, 236, 0.14);
  border-radius: 8px;
  background: var(--panel);
}

.short-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  z-index: 1;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.78);
  color: var(--cyan);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

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

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

.asset-card {
  min-height: 260px;
  display: grid;
  align-content: end;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(135deg, rgba(82, 227, 246, 0.1), rgba(243, 177, 106, 0.08)),
    repeating-linear-gradient(135deg, rgba(247, 244, 236, 0.045) 0 1px, transparent 1px 18px),
    var(--panel);
}

.graphic-card {
  position: relative;
  overflow: hidden;
  min-height: auto;
  aspect-ratio: 9 / 16;
  display: block;
  padding: 0;
  background: rgba(247, 244, 236, 0.035);
}

.graphic-card.tall,
.graphic-card.story {
  aspect-ratio: 9 / 16;
}

.graphic-card img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 16px;
  background:
    linear-gradient(135deg, rgba(82, 227, 246, 0.08), rgba(243, 177, 106, 0.05)),
    rgba(247, 244, 236, 0.035);
  transition: transform 220ms ease, filter 220ms ease;
}

.graphic-card:hover img {
  transform: scale(1.035);
  filter: saturate(1.08) contrast(1.04);
}

.asset-card span {
  display: block;
  margin-bottom: 16px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.graphic-card span {
  position: absolute;
  left: 10px;
  bottom: 10px;
  margin: 0;
  padding: 6px 8px;
  border-radius: 999px;
  background: rgba(5, 7, 11, 0.78);
  color: var(--cyan);
  font-size: 10px;
  letter-spacing: 0.1em;
}

.asset-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.asset-card p {
  margin: 0;
  color: var(--muted);
  font-size: 16px;
}

.outro-grid {
  max-width: 520px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.gallery-feature p,
.gallery-card p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
}

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

.gallery-card {
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
}

.gallery-card span {
  display: block;
  margin-bottom: 18px;
  color: var(--warm);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.gallery-card h3 {
  margin-bottom: 12px;
  font-size: 26px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 0 42px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.site-footer a {
  color: var(--ink);
  font-weight: 900;
}

body.viewer-open {
  overflow: hidden;
}

.media-lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 72px 86px;
  background: rgba(5, 7, 11, 0.82);
  backdrop-filter: blur(18px);
}

.media-lightbox.open {
  display: flex;
}

.media-lightbox-stage {
  width: min(88vw, 620px);
  max-height: 84vh;
  display: grid;
  place-items: center;
}

.media-lightbox-video,
.media-lightbox-image {
  overflow: hidden;
  max-height: 84vh;
  border: 1px solid rgba(247, 244, 236, 0.18);
  border-radius: 8px;
  background: rgba(5, 7, 11, 0.92);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.48);
}

.media-lightbox-video {
  width: min(84vw, 390px);
  aspect-ratio: 9 / 16;
}

.media-lightbox-video iframe {
  width: 100%;
  height: 100%;
  display: block;
  border: 0;
}

.media-lightbox-image {
  width: min(88vw, 760px);
  display: grid;
  place-items: center;
}

.media-lightbox-image img {
  max-width: 100%;
  max-height: 84vh;
  display: block;
  object-fit: contain;
  user-select: none;
  -webkit-user-drag: none;
}

.media-lightbox-close,
.media-lightbox-arrow {
  border: 1px solid rgba(247, 244, 236, 0.2);
  background: rgba(5, 7, 11, 0.74);
  color: var(--ink);
  cursor: pointer;
}

.media-lightbox-close {
  position: fixed;
  top: 24px;
  right: 24px;
  width: 48px;
  height: 48px;
  border-radius: 999px;
  font-size: 32px;
  line-height: 1;
}

.media-lightbox-arrow {
  position: fixed;
  top: 50%;
  width: 54px;
  height: 54px;
  border-radius: 999px;
  font-size: 42px;
  line-height: 0.8;
  transform: translateY(-50%);
}

.media-lightbox-prev {
  left: 24px;
}

.media-lightbox-next {
  right: 24px;
}

.short-card,
.graphic-card,
.home-short-card {
  -webkit-user-select: none;
  user-select: none;
}

.short-card img,
.graphic-card img,
.home-short-card img {
  -webkit-user-drag: none;
}

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

.reveal.in-view {
  transform: translateY(0);
  opacity: 1;
}

.hero-reserved.reveal.in-view {
  transform:
    translateY(var(--hero-text-y, 0))
    translateX(var(--hero-text-x, 0))
    scale(var(--hero-text-scale, 1));
  opacity: var(--hero-text-opacity, 1);
}

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 89px;
    left: 24px;
    right: 24px;
    display: none;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 7, 11, 0.96);
  }

  .site-nav.open {
    display: grid;
    gap: 16px;
  }

  .split-section {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 170px;
  }

  .hero-zoom {
    min-height: 0;
    height: 300vh;
    padding-top: 0;
    padding-bottom: 0;
  }

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

  .video-showcase {
    grid-template-columns: 1fr;
  }

  .cta-section {
    grid-template-columns: 1fr;
  }

  .home-shorts-row {
    grid-auto-flow: column;
    grid-auto-columns: minmax(150px, 32%);
    grid-template-columns: none;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x proximity;
  }

  .home-short-card {
    scroll-snap-align: start;
  }

  .short-feature {
    grid-template-columns: 1fr;
  }

  .short-player {
    justify-self: center;
  }

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

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

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

  .work-card {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 16px;
  }

  .work-arrow {
    justify-self: start;
  }
}

@media (max-width: 640px) {
  .section-shell {
    width: min(100% - 34px, var(--max));
  }

  .site-header {
    padding-left: 17px;
    padding-right: 17px;
  }

  .logo-slot {
    width: 170px;
  }

  .hero {
    gap: 34px;
    padding-top: 148px;
    padding-bottom: 58px;
  }

  .hero-zoom {
    height: 285vh;
    padding-top: 0;
    padding-bottom: 0;
  }

  .monitor-interface {
    display: none;
  }

  h1 {
    font-size: 54px;
  }

  h2 {
    font-size: 38px;
  }

  .vision-comparison {
    margin-top: 32px;
  }

  .comparison-image {
    min-height: 280px;
    aspect-ratio: auto;
  }

  .proof-bar,
  .service-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .home-shorts-row {
    grid-auto-columns: minmax(138px, 54%);
  }

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

  .outro-grid {
    max-width: none;
  }

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

  .proof-bar {
    margin-bottom: 76px;
  }

  .split-section,
  .work-section,
  .video-section,
  .services-section,
  .gallery-section {
    padding: 76px 0;
  }

  .reel-card {
    min-height: auto;
  }

  .video-frame {
    min-height: 280px;
    padding: 22px;
  }

  .proof-item,
  .service-card {
    min-height: auto;
  }

  .cta-section {
    padding: 32px;
    margin-bottom: 60px;
  }

  .bottom-nav a {
    width: 100%;
    justify-content: center;
  }

  .button {
    width: 100%;
  }

  .media-lightbox {
    padding: 64px 18px;
  }

  .media-lightbox-stage {
    width: 100%;
  }

  .media-lightbox-arrow {
    top: auto;
    bottom: 18px;
    width: 46px;
    height: 46px;
    font-size: 34px;
    transform: none;
  }

  .media-lightbox-prev {
    left: 18px;
  }

  .media-lightbox-next {
    right: 18px;
  }

  .site-footer {
    flex-direction: column;
  }
}
