:root {
  --max-width: 100vw;
  --bg: #edf3ff;
  --bg-deep: #d8e5ff;
  --bg-warm: #fff1b3;
  --surface: rgba(255, 255, 255, 0.16);
  --surface-strong: rgba(255, 255, 255, 0.24);
  --surface-solid: rgba(255, 255, 255, 0.68);
  --line: rgba(255, 255, 255, 0.34);
  --line-strong: rgba(10, 26, 88, 0.14);
  --ink: #09122f;
  --ink-soft: #4d5b83;
  --accent: #1c4dff;
  --accent-soft: #ffe45d;
  --shadow: 0 30px 80px rgba(16, 35, 102, 0.2);
  --shadow-soft: 0 18px 40px rgba(16, 35, 102, 0.14);
  --radius-xl: 40px;
  --radius-lg: 30px;
  --radius-md: 22px;
}

html[data-theme="dark"] {
  --bg: #030713;
  --bg-deep: #09132f;
  --bg-warm: #161c4b;
  --surface: rgba(9, 16, 40, 0.42);
  --surface-strong: rgba(12, 19, 48, 0.58);
  --surface-solid: rgba(7, 13, 33, 0.78);
  --line: rgba(255, 255, 255, 0.12);
  --line-strong: rgba(143, 173, 255, 0.18);
  --ink: #f5f7ff;
  --ink-soft: #aeb9e8;
  --accent: #8eaeff;
  --accent-soft: #ffe45d;
  --shadow: 0 36px 90px rgba(0, 0, 0, 0.34);
  --shadow-soft: 0 20px 46px rgba(0, 0, 0, 0.24);
}

.page-shell {
  width: min(calc(100% - 0.25rem), var(--max-width)) !important;
}

.site-preloader {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 228, 93, 0.42), transparent 24%),
    radial-gradient(circle at 86% 16%, rgba(28, 77, 255, 0.28), transparent 24%),
    linear-gradient(135deg, rgba(6, 10, 25, 0.98), rgba(10, 18, 52, 0.98));
  transition: opacity 650ms ease, visibility 650ms ease;
}

.site-preloader::after {
  content: "";
  position: absolute;
  left: 12%;
  right: 12%;
  bottom: 18%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 228, 93, 0.9), transparent);
  transform-origin: center;
  animation: preloader-line 1.35s ease-in-out infinite;
}

.site-preloader.is-hidden {
  opacity: 0;
  visibility: hidden;
}

.preloader-logo-wrap {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
}

.preloader-logo {
  display: block;
}

.preloader-logo-mark {
  width: clamp(8.5rem, 18vw, 12rem);
  filter: drop-shadow(0 0 26px rgba(255, 228, 93, 0.28));
  animation: preloader-mark 1.2s ease-in-out infinite alternate;
}

@keyframes preloader-mark {
  from {
    transform: scale(0.95);
    opacity: 0.86;
  }

  to {
    transform: scale(1.02);
    opacity: 1;
  }
}

@keyframes preloader-line {
  0%,
  100% {
    opacity: 0.35;
    transform: scaleX(0.42);
  }

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

body {
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 228, 93, 0.72), transparent 22%),
    radial-gradient(circle at 88% 12%, rgba(28, 77, 255, 0.32), transparent 22%),
    radial-gradient(circle at 52% 100%, rgba(130, 165, 255, 0.22), transparent 34%),
    linear-gradient(135deg, #f3f7ff 0%, #dce7ff 44%, #fff6ca 100%);
}

html[data-theme="dark"] body {
  background:
    radial-gradient(circle at 10% 14%, rgba(255, 228, 93, 0.2), transparent 18%),
    radial-gradient(circle at 88% 12%, rgba(86, 123, 255, 0.3), transparent 22%),
    radial-gradient(circle at 52% 100%, rgba(30, 57, 152, 0.34), transparent 34%),
    linear-gradient(135deg, #030713 0%, #071027 46%, #111d4c 100%);
}

.page-noise {
  opacity: 0.28;
  mix-blend-mode: soft-light;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.34) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 90px 90px;
}

html[data-theme="dark"] .page-noise {
  opacity: 0.18;
  mix-blend-mode: screen;
}

.page-glow {
  filter: blur(36px);
  opacity: 0.72;
}

.page-glow-one {
  width: 20rem;
  height: 20rem;
  background: rgba(255, 228, 93, 0.54);
}

.page-glow-two {
  width: 24rem;
  height: 24rem;
  background: rgba(28, 77, 255, 0.24);
}

html[data-theme="dark"] .page-glow-one {
  background: rgba(255, 228, 93, 0.18);
}

html[data-theme="dark"] .page-glow-two {
  background: rgba(28, 77, 255, 0.3);
}

.site-header,
.site-nav,
.hero-home,
.page-hero,
.section-block,
.section-block-contrast,
.final-cta,
.contact-form-card,
.contact-info-card,
.ticker,
.feature-card,
.service-card,
.story-card,
.stage-card,
.quick-action-card,
.stat-card,
.film-details-card,
.portfolio-card,
.icon-link,
.hero-meta article,
.timeline-row,
.logo-chip,
.poster-card,
.social-pill,
.presence-mini a,
.contact-form input,
.contact-form select,
.contact-form textarea,
.theme-toggle,
.nav-toggle,
.carousel-button {
  border-color: var(--line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    var(--surface-strong) !important;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
}

html[data-theme="dark"] .site-header,
html[data-theme="dark"] .site-nav,
html[data-theme="dark"] .hero-home,
html[data-theme="dark"] .page-hero,
html[data-theme="dark"] .section-block,
html[data-theme="dark"] .section-block-contrast,
html[data-theme="dark"] .final-cta,
html[data-theme="dark"] .contact-form-card,
html[data-theme="dark"] .contact-info-card,
html[data-theme="dark"] .feature-card,
html[data-theme="dark"] .service-card,
html[data-theme="dark"] .story-card,
html[data-theme="dark"] .stage-card,
html[data-theme="dark"] .quick-action-card,
html[data-theme="dark"] .stat-card,
html[data-theme="dark"] .film-details-card,
html[data-theme="dark"] .portfolio-card,
html[data-theme="dark"] .icon-link {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02)),
    var(--surface-strong) !important;
}

.site-header,
.hero-home,
.page-hero,
.section-block,
.section-block-contrast,
.final-cta,
.contact-form-card,
.contact-info-card {
  border-radius: var(--radius-xl);
}

.site-header {
  padding: 0.62rem 0.8rem;
  box-shadow: var(--shadow);
}

.site-nav {
  border-radius: 28px;
}

.site-nav a,
.theme-toggle,
.nav-toggle,
.carousel-button,
.presence-mini a,
.social-pill {
  border-color: var(--line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    var(--surface-solid) !important;
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav .is-active,
.theme-toggle:hover,
.theme-toggle:focus-visible,
.nav-toggle:hover,
.nav-toggle:focus-visible,
.carousel-button:hover,
.carousel-button:focus-visible,
.social-pill:hover,
.social-pill:focus-visible {
  border-color: rgba(255, 255, 255, 0.52) !important;
}

.nav-pill,
.button-primary {
  color: #09122f !important;
  background:
    linear-gradient(135deg, rgba(255, 228, 93, 0.98), rgba(255, 242, 166, 0.84)),
    rgba(255, 255, 255, 0.8) !important;
  box-shadow: 0 18px 38px rgba(255, 228, 93, 0.28);
}

html[data-theme="dark"] .nav-pill,
html[data-theme="dark"] .button-primary {
  color: #09122f !important;
}

.button-secondary {
  border-color: var(--line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    var(--surface-solid) !important;
}

.theme-toggle-track {
  background: linear-gradient(135deg, rgba(17, 57, 211, 0.82), rgba(255, 228, 93, 0.92));
}

.hero-home,
.page-hero,
.section-block,
.section-block-contrast {
  overflow: hidden;
  position: relative;
}

.hero-home::before,
.page-hero::before,
.section-block::before,
.section-block-contrast::before {
  content: "";
  position: absolute;
  inset: 1px;
  border-radius: inherit;
  pointer-events: none;
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.2), transparent 38%);
}

.hero-home::after,
.page-hero::after,
.section-block::after,
.section-block-contrast::after {
  content: "";
  position: absolute;
  width: 18rem;
  height: 18rem;
  right: -4rem;
  bottom: -7rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 228, 93, 0.28), transparent 66%);
  pointer-events: none;
}

.hero-home {
  gap: 1.2rem;
  padding: 1.2rem;
}

.hero-branding,
.eyebrow,
.feature-label,
.mini-label,
.quick-label,
.pill-row span,
.timeline-year {
  border-color: var(--line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0.08)),
    var(--surface-solid) !important;
}

.eyebrow,
.feature-label,
.mini-label,
.quick-label {
  min-height: auto !important;
  padding: 0 !important;
  border: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--accent);
}

.hero-branding {
  border-radius: 28px;
  box-shadow: var(--shadow-soft);
}

.hero-home-video {
  grid-template-columns: 1fr !important;
  grid-template-rows: 1fr auto;
  min-height: min(88vh, 56rem);
}

.hero-home-video::before,
.hero-home-video::after {
  display: none;
}

.hero-video-wrap,
.hero-video-overlay {
  position: absolute;
  inset: 0;
  border-radius: inherit;
}

.hero-video-wrap {
  overflow: hidden;
  filter: saturate(1.12) brightness(1.08);
}

.hero-video-wrap iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 177.7778vh;
  height: 56.25vw;
  min-width: 100%;
  min-height: 100%;
  transform: translate(-50%, -50%) scale(1.08);
  pointer-events: none;
}

.hero-video-overlay {
  background:
    linear-gradient(115deg, rgba(4, 9, 24, 0.44) 8%, rgba(8, 18, 52, 0.22) 48%, rgba(8, 14, 38, 0.42) 100%),
    radial-gradient(circle at top right, rgba(255, 228, 93, 0.22), transparent 26%);
}

.hero-side-word {
  position: absolute;
  top: 50%;
  z-index: 2;
  color: rgba(247, 251, 255, 0.16);
  font-family: "Syne", sans-serif;
  font-size: clamp(3.4rem, 8vw, 6.5rem);
  font-weight: 700;
  letter-spacing: 0.2em;
  line-height: 0.82;
  text-transform: uppercase;
  writing-mode: vertical-rl;
  text-shadow: 0 0 28px rgba(255, 228, 93, 0.14);
  pointer-events: none;
  user-select: none;
}

.hero-side-word-left {
  left: 0.8rem;
  transform: translateY(-50%) rotate(180deg);
}

.hero-side-word-right {
  right: 0.8rem;
  transform: translateY(-50%);
}

.hero-home-video .hero-center,
.hero-home-video .hero-float-row {
  position: relative;
  z-index: 2;
}

.hero-center {
  display: grid;
  gap: 0.9rem;
  align-self: center;
  justify-items: center;
  max-width: 46rem;
  margin: 0 auto;
  text-align: center;
}

.hero-kicker {
  color: rgba(247, 251, 255, 0.82);
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.hero-float-row {
  display: grid;
  gap: 1rem;
  align-self: end;
  justify-items: center;
  width: min(100%, 70rem);
  margin: 0 auto;
}

.hero-note-card,
.hero-preview-card,
.hero-home-video .hero-branding,
.hero-home-video .button-secondary {
  border-color: rgba(255, 255, 255, 0.12) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.04)),
    rgba(6, 12, 32, 0.28) !important;
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: var(--shadow-soft);
}

.hero-home-video h1,
.hero-home-video .hero-text,
.hero-home-video .hero-kicker,
.hero-home-video .hero-branding span,
.hero-home-video .hero-note-card p,
.hero-home-video .hero-note-card strong,
.hero-home-video .hero-note-card span,
.hero-home-video .hero-preview-copy span,
.hero-home-video .hero-preview-copy strong {
  color: #f7fbff;
}

.hero-home-video .button-secondary {
  color: #f7fbff;
}

.hero-note-card {
  display: grid;
  gap: 0.85rem;
  padding: 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.14), rgba(255, 255, 255, 0.04)),
    rgba(6, 12, 32, 0.3) !important;
}

.hero-note-top {
  display: grid;
  gap: 0.25rem;
}

.hero-note-top strong {
  font-size: 1.12rem;
}

.hero-note-link {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2.8rem;
  padding: 0.65rem 1rem;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 228, 93, 0.98), rgba(255, 242, 166, 0.84)),
    rgba(255, 255, 255, 0.8);
  color: #09122f;
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 16px 28px rgba(255, 228, 93, 0.2);
}

.hero-preview-rail {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(10rem, 1fr);
  gap: 0.85rem;
  overflow-x: auto;
  width: 100%;
  padding-bottom: 0.35rem;
  scrollbar-width: none;
}

.hero-preview-rail::-webkit-scrollbar {
  display: none;
}

.hero-preview-card {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 28px;
}

.hero-preview-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.hero-preview-copy {
  display: grid;
  gap: 0.24rem;
  padding: 0.85rem;
}

.hero-preview-copy strong {
  font-size: 1rem;
}

.hero-preview-copy span {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-preview-card-upcoming {
  align-content: stretch;
}

.hero-meta article,
.stage-card,
.reel-copy,
.film-details-card,
.feature-card,
.service-card,
.story-card,
.quick-action-card,
.stat-card,
.portfolio-card {
  border-radius: var(--radius-lg);
}

.stage-primary,
.feature-card-dark {
  background:
    radial-gradient(circle at 16% 18%, rgba(255, 228, 93, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(14, 54, 206, 0.92), rgba(18, 36, 108, 0.88)) !important;
}

.stage-primary h2,
.stage-primary p,
.stage-primary .eyebrow,
.feature-card-dark h3,
.feature-card-dark .feature-label {
  color: #f7fbff;
}

.stage-accent,
.quick-action-accent,
.feature-card-accent {
  background:
    radial-gradient(circle at top right, rgba(255, 228, 93, 0.42), transparent 34%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    var(--surface-strong) !important;
}

.ticker {
  border-radius: 999px;
}

.ticker span {
  border-color: var(--line) !important;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    var(--surface-solid) !important;
}

.section-block-contrast {
  background:
    linear-gradient(180deg, rgba(12, 30, 109, 0.72), rgba(11, 24, 74, 0.84)),
    var(--surface) !important;
}

.reel-section {
  padding-bottom: 1.2rem;
}

.reel-frame,
.video-shell {
  border-radius: 34px;
  border-color: var(--line) !important;
  box-shadow: var(--shadow);
}

.reel-copy {
  max-width: 30rem;
}

.poster-card-visual {
  display: grid;
  align-content: end;
  gap: 0.45rem;
  width: 100%;
  aspect-ratio: 2 / 3;
  padding: 1rem;
}

.poster-card-visual-upcoming {
  background:
    radial-gradient(circle at top right, rgba(255, 228, 93, 0.34), transparent 34%),
    linear-gradient(180deg, rgba(18, 49, 169, 0.94), rgba(7, 16, 56, 0.96));
  color: #f7fbff;
}

.poster-upcoming-tag {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  min-height: 2rem;
  padding: 0.3rem 0.75rem;
  border-radius: 999px;
  background: rgba(255, 228, 93, 0.16);
  color: #ffe45d;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.poster-card-visual strong {
  font-size: 2rem;
  line-height: 0.94;
}

.poster-card-visual small {
  color: rgba(247, 251, 255, 0.82);
  font-size: 0.82rem;
  font-weight: 600;
}

.poster-card,
.portfolio-card,
.icon-link,
.quick-action-card,
.social-pill {
  transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease, background 180ms ease;
}

.poster-card:hover,
.portfolio-card:hover,
.icon-link:hover,
.quick-action-card:hover,
.social-pill:hover {
  box-shadow: var(--shadow);
}

.poster-card {
  position: relative;
}

.poster-card-media {
  position: relative;
}

.poster-card-media img {
  display: block;
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
}

.poster-card-body {
  gap: 0.45rem;
}

.poster-card-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
}

.poster-card-meta span {
  flex: 1 1 0;
}

.poster-card-meta span:first-child {
  flex: 0 0 auto;
}

.poster-card-company {
  flex: 1 1 auto;
  text-align: right;
}

.poster-image-badge {
  position: absolute;
  left: 0.95rem;
  bottom: 0.95rem;
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2rem;
  padding: 0.42rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  color: #f7fbff;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  backdrop-filter: blur(18px) saturate(180%);
  -webkit-backdrop-filter: blur(18px) saturate(180%);
}

.poster-image-badge-live {
  background: rgba(120, 10, 20, 0.8);
  box-shadow: 0 12px 28px rgba(255, 76, 76, 0.22);
}

.status-dot {
  width: 0.58rem;
  height: 0.58rem;
  border-radius: 50%;
  background: #ff4d4d;
  box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.5);
  animation: status-pulse 1.6s ease infinite;
}

@keyframes status-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0.55);
  }

  70% {
    box-shadow: 0 0 0 8px rgba(255, 77, 77, 0);
  }

  100% {
    box-shadow: 0 0 0 0 rgba(255, 77, 77, 0);
  }
}

.logo-chip {
  border-radius: var(--radius-lg);
  min-height: 8.2rem;
  padding: 0.65rem;
}

.company-logo {
  height: clamp(5.6rem, 12vw, 7.4rem);
  filter: brightness(0) invert(1);
  opacity: 0.96;
}

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

.feature-grid-media .feature-card {
  grid-column: auto !important;
}

.media-work-card {
  display: grid;
  gap: 0.9rem;
  padding: 0.95rem;
  text-decoration: none;
}

.media-work-image {
  overflow: hidden;
  border-radius: 24px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.08);
}

.media-work-image img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.media-work-copy {
  display: grid;
  gap: 0.35rem;
}

.media-work-copy p {
  font-size: 0.95rem;
}

.page-hero {
  padding-block: 1.5rem;
  text-align: center;
  justify-items: center;
}

.page-hero h1,
.page-hero .lead {
  max-width: 44rem;
}

.about-portrait-card {
  border-radius: var(--radius-xl);
  border-color: var(--line) !important;
  background:
    radial-gradient(circle at top right, rgba(255, 228, 93, 0.3), transparent 32%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.24), rgba(255, 255, 255, 0.08)),
    var(--surface-strong) !important;
  box-shadow: var(--shadow);
}

.timeline-row {
  grid-template-columns: 5.8rem 1fr;
  align-items: start;
}

.timeline-link {
  color: inherit;
  text-decoration: none;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.timeline-link:hover,
.timeline-link:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 255, 255, 0.34) !important;
}

.timeline-row > .credit-thumb {
  grid-row: 1 / span 2;
}

.timeline-row > div:last-child {
  grid-column: 2;
}

.credit-thumb {
  width: 5.8rem;
  height: 8.2rem;
  border-radius: 20px;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: var(--shadow-soft);
}

.credit-thumb-placeholder,
.credit-thumb-upcoming {
  display: grid;
  align-content: end;
  gap: 0.3rem;
  padding: 0.8rem;
  background:
    radial-gradient(circle at top right, rgba(255, 228, 93, 0.28), transparent 30%),
    linear-gradient(180deg, rgba(17, 53, 188, 0.9), rgba(8, 18, 60, 0.94));
  color: #f7fbff;
}

.credit-thumb-placeholder span,
.credit-thumb-upcoming span {
  font-family: "Syne", sans-serif;
  font-size: 1rem;
  line-height: 0.95;
}

.credit-thumb-upcoming small {
  color: rgba(247, 251, 255, 0.82);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.icon-link-mark {
  box-shadow: 0 14px 28px rgba(17, 57, 211, 0.18);
}

.icon-link-mark-site {
  background: linear-gradient(145deg, #163fe0, #86a3ff);
}

.icon-link-mark-behance {
  background: linear-gradient(145deg, #0057ff, #1737cf);
}

.icon-link-mark-instagram {
  background: linear-gradient(145deg, #f6c05c, #ff2b63 48%, #623fff 100%);
}

.icon-link-mark-linkedin {
  background: linear-gradient(145deg, #0b66c2, #1c4dff);
}

.icon-link-mark-imdb {
  background: #f5c518;
}

.quick-action-card-social {
  align-content: start;
}

.quick-action-icon {
  display: inline-grid;
  place-items: center;
  width: 3rem;
  height: 3rem;
  border-radius: 18px;
  color: #ffffff;
  background: linear-gradient(145deg, #f6c05c, #ff2b63 48%, #623fff 100%);
  box-shadow: 0 14px 28px rgba(255, 70, 112, 0.22);
}

.quick-action-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.icon-link-mark-upwork,
.quick-action-icon-upwork {
  background: transparent !important;
  box-shadow: none;
}

.icon-link-mark-upwork {
  padding: 0;
}

.quick-action-logo {
  width: 100%;
  height: 100%;
  border-radius: 0.95rem;
}

.social-pill-upwork {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0.08)),
    var(--surface-solid) !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  border-radius: 20px;
}

.social-pill-imdb {
  background:
    linear-gradient(180deg, rgba(245, 197, 24, 0.24), rgba(245, 197, 24, 0.12)),
    var(--surface-solid) !important;
}

.video-shell-poster {
  display: grid;
  position: relative;
  text-decoration: none;
}

.video-shell-poster img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  object-position: center 18%;
}

.video-shell-play {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 228, 93, 0.96), rgba(255, 242, 166, 0.82)),
    rgba(255, 255, 255, 0.8);
  color: #09122f;
  font-weight: 700;
  box-shadow: 0 18px 32px rgba(255, 228, 93, 0.24);
}

@media (min-width: 960px) {
  .page-shell {
    width: min(calc(100% - 0.5rem), var(--max-width)) !important;
  }

  .site-nav {
    gap: 0.18rem;
    padding: 0.2rem;
    border: 1px solid var(--line) !important;
    border-radius: 999px;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08)),
      var(--surface-solid) !important;
    box-shadow: var(--shadow-soft) !important;
    backdrop-filter: blur(22px) saturate(180%);
    -webkit-backdrop-filter: blur(22px) saturate(180%);
  }

  .site-header {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
  }

  .site-nav {
    justify-self: center;
    margin-left: 0;
  }

  .site-nav a:not(.nav-pill) {
    background: transparent !important;
    border-color: transparent !important;
    box-shadow: none !important;
  }

  .site-nav a:not(.nav-pill):hover,
  .site-nav a:not(.nav-pill):focus-visible,
  .site-nav a.is-active:not(.nav-pill) {
    border-color: rgba(255, 255, 255, 0.16) !important;
    background:
      linear-gradient(180deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.06)),
      rgba(255, 255, 255, 0.18) !important;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14) !important;
  }

  .header-actions {
    justify-self: end;
  }

  .hero-home {
    padding: 1.45rem;
    grid-template-columns: minmax(0, 1.04fr) minmax(21rem, 0.96fr);
  }

  .hero-home-video {
    min-height: min(90vh, 60rem);
    grid-template-columns: 1fr !important;
  }

  .hero-home-video .hero-center {
    justify-self: start;
    justify-items: start;
    width: min(100%, 38rem);
    max-width: 38rem;
    margin: 0;
    padding-left: clamp(1rem, 3.6vw, 3.75rem);
    text-align: left;
  }

  .hero-home-video .hero-text {
    max-width: 32rem;
  }

  .hero-home-video .hero-kicker {
    max-width: 24rem;
  }

  .hero-home::after {
    width: 22rem;
    height: 22rem;
    right: -5rem;
    bottom: -8rem;
  }

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

  .hero-float-row {
    grid-template-columns: minmax(0, 1fr);
    align-items: end;
  }

  .hero-preview-rail {
    overflow: visible;
    grid-template-columns: 1.2fr 0.9fr 0.9fr 0.8fr;
    grid-auto-flow: row;
  }

  .reel-grid {
    gap: 0;
  }

  .reel-copy {
    margin-top: -5rem;
    margin-right: 1.15rem;
  }

  .about-intro-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(21rem, 0.95fr);
  }

  .contact-section {
    grid-template-columns: minmax(0, 1.1fr) minmax(20rem, 0.9fr);
  }

  .film-feature-grid {
    grid-template-columns: minmax(0, 1.16fr) minmax(22rem, 0.84fr);
    align-items: stretch;
  }

  .timeline-row {
    grid-template-columns: 5.8rem 7rem 1fr;
    align-items: center;
  }

  .timeline-row > .credit-thumb {
    grid-row: 1;
  }

  .timeline-row > div:last-child {
    grid-column: 3;
  }
}

@media (max-width: 760px) {
  .hero-side-word {
    display: none;
  }
}

@media (max-width: 520px) {
  .page-shell {
    width: min(calc(100% - 0.125rem), var(--max-width)) !important;
  }

  .hero-home,
  .page-hero,
  .section-block,
  .section-block-contrast,
  .final-cta,
  .contact-form-card,
  .contact-info-card {
    border-radius: 28px;
  }

  .social-pill-grid {
    grid-template-columns: 1fr;
  }

  .hero-home-video {
    min-height: 78vh;
  }

  .hero-video-wrap iframe {
    transform: translate(-50%, -50%) scale(1.18);
  }

}
