@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/outfit-400.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 500;
  src: url("/fonts/outfit-500.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 700;
  src: url("/fonts/outfit-700.woff2") format("woff2");
  font-display: swap;
}
@font-face {
  font-family: Outfit;
  font-style: normal;
  font-weight: 800;
  src: url("/fonts/outfit-800.woff2") format("woff2");
  font-display: swap;
}
:root {
  font-family: Outfit, sans-serif;
  color: #e6e8e9;
  background: #111315;
  font-size: 14px;
  color-scheme: dark;
  --lime: #d9f779;
  --muted: #92999d;
  --line: #2b2e31;
  --panel: #1b1e20;
  --raised: #24282b;
}
* {
  box-sizing: border-box;
}
.workspace > * {
  min-width: 0;
}
body {
  margin: 0;
}
button,
input,
textarea,
select {
  font: inherit;
}
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  border: 1px solid var(--line);
  color: inherit;
  background: var(--raised);
  border-radius: 6px;
  padding: 9px 12px;
  cursor: pointer;
  white-space: nowrap;
  transition:
    background 0.15s,
    border-color 0.15s;
}
button:hover {
  background: #32383c;
  border-color: #4a5156;
}
button:disabled {
  opacity: 0.4;
  cursor: default;
}
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
[tabindex]:focus-visible {
  outline: 2px solid var(--lime);
  outline-offset: 3px;
}
button svg,
svg.lucide {
  width: 17px;
  height: 17px;
  stroke-width: 1.7;
  flex-shrink: 0;
}
input,
select,
textarea {
  background: #141719;
  color: #edf0ee;
  border: 1px solid #343a3e;
  border-radius: 5px;
  padding: 8px 9px;
  min-width: 0;
  width: 100%;
}
input[type="color"] {
  padding: 3px;
  height: 35px;
  cursor: pointer;
}
input[type="range"] {
  padding: 0;
  accent-color: var(--lime);
}
input[type="checkbox"] {
  width: auto;
  accent-color: var(--lime);
}
textarea {
  resize: vertical;
  line-height: 1.5;
}
h2,
p {
  margin: 0;
}
button.primary {
  background: var(--lime);
  color: #1a2211;
  border-color: var(--lime);
  font-weight: 500;
}
button.primary:hover {
  background: #e7ff9d;
}
.icon-button {
  padding: 7px;
  border-color: transparent;
  background: transparent;
  width: 32px;
  height: 32px;
}
.icon-button.active {
  color: var(--lime);
  background: #303927;
}
.divider {
  height: 22px;
  width: 1px;
  background: var(--line);
  margin: 0 4px;
}
.topbar {
  height: 68px;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 0 22px;
  border-bottom: 1px solid var(--line);
  background: #191c1e;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #f5f6f3;
  text-decoration: none;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: -1px;
}
.brand img {
  width: 30px;
  height: 30px;
}
.brand-dot {
  color: var(--lime);
}
.project-heading {
  display: flex;
  align-items: center;
  gap: 20px;
  min-width: 0;
  flex: 1;
}
.separator {
  color: #50575b;
  font-size: 22px;
}
.project-heading input {
  width: 185px;
  border-color: transparent;
  background: transparent;
  padding: 5px 0;
  font-size: 14px;
}
.project-heading input:hover {
  border-bottom-color: #50575b;
}
.save-status {
  color: var(--muted);
  font-size: 12px;
  white-space: nowrap;
}
.header-actions {
  display: flex;
  gap: 8px;
  align-items: center;
}
.header-actions .primary {
  margin-left: 4px;
}
.workspace {
  display: grid;
  grid-template-columns: 228px minmax(250px, 1fr) 260px;
  grid-template-rows: minmax(390px, calc(100dvh - 354px)) 254px;
  gap: 1px;
  background: var(--line);
}
.panel {
  background: var(--panel);
}
.panel-heading {
  height: 49px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 17px;
  color: #b2b8bc;
  font-size: 12px;
  letter-spacing: 1.1px;
}
.library {
  display: flex;
  flex-direction: column;
  min-height: 0;
  grid-row: 1;
}
.library-actions {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 6px;
  padding: 0 12px 19px;
}
.library-actions button {
  flex-direction: column;
  padding: 11px 4px;
  gap: 7px;
  font-size: 12px;
  background: #23272a;
}
.library-actions button svg {
  height: 19px;
  width: 19px;
}
.section-label {
  display: flex;
  justify-content: space-between;
  padding: 0 17px 12px;
  color: var(--muted);
  font-size: 12px;
}
.layer-list {
  overflow: auto;
  min-height: 70px;
  flex: 1;
  padding: 0 8px;
}
.layer-item {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 0 8px;
  margin-bottom: 4px;
  height: 42px;
  border: 1px solid transparent;
  border-radius: 5px;
  color: #aeb6bb;
  cursor: pointer;
  position: relative;
}
.layer-item:hover {
  background: #282d30;
}
.layer-item.selected {
  background: #343d29;
  border-color: #4a5937;
  color: #e5efce;
}
.layer-item .layer-name {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  font-size: 13px;
}
.layer-item > svg {
  width: 16px;
  height: 16px;
}
.layer-item .icon-button {
  width: 25px;
  height: 25px;
  opacity: 0.6;
}
.layer-item.dimmed {
  opacity: 0.45;
}
.library-footer {
  display: flex;
  gap: 10px;
  padding: 16px 15px;
  color: #a2aaad;
  font-size: 12px;
  border-top: 1px solid var(--line);
  margin-top: 12px;
  line-height: 1.5;
}
.library-footer > svg {
  margin-top: 3px;
}
.library-footer small {
  display: block;
  font-size: 11px;
  color: #787f84;
}
.stage-panel {
  background: #111416;
  display: flex;
  flex-direction: column;
  min-height: 0;
  min-width: 0;
}
.stage-toolbar {
  height: 49px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  flex-shrink: 0;
  font-size: 12px;
  color: var(--muted);
}
.stage-toolbar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}
.composition-label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #b9bfc3;
}
.composition-label svg {
  width: 15px;
  height: 15px;
}
.stage-area {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 0;
  padding: 18px 38px 4px;
  position: relative;
  background-image: radial-gradient(#292e32 0.65px, transparent 0.65px);
  background-size: 14px 14px;
}
.canvas-wrap {
  position: relative;
  flex-shrink: 0;
  max-width: 100%;
  box-shadow: 0 10px 50px #0005;
  line-height: 0;
}
.canvas-wrap canvas {
  width: 100%;
  height: 100%;
  display: block;
  touch-action: none;
  cursor: default;
}
#selection-box {
  position: absolute;
  border: 1px solid var(--lime);
  pointer-events: none;
  transform-origin: center;
}
#selection-box:before,
#selection-box:after {
  content: "";
  width: 6px;
  height: 6px;
  position: absolute;
  background: var(--lime);
  border: 1px solid #202717;
}
#selection-box:before {
  left: -3px;
  top: -3px;
}
#selection-box:after {
  bottom: -3px;
  right: -3px;
}
#selection-label {
  position: absolute;
  top: -21px;
  left: -1px;
  background: var(--lime);
  padding: 3px 6px;
  color: #182015;
  font-size: 10px;
  line-height: 14px;
  white-space: nowrap;
  max-width: 200px;
  overflow: hidden;
  text-overflow: ellipsis;
}
.stage-hint {
  color: #737c81;
  font-size: 12px;
  margin: 17px 0 3px;
  flex-shrink: 0;
}
.transport {
  height: 63px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 5px;
  padding: 0 20px;
  flex-shrink: 0;
}
.playback-info {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 10px;
  letter-spacing: 1px;
  color: #929b9f;
}
.live-mark {
  height: 5px;
  width: 5px;
  background: #99aa8c;
  border-radius: 50%;
}
#frame-indicator {
  font-variant-numeric: tabular-nums;
  color: #6d777c;
  margin-left: 5px;
  letter-spacing: 0;
  font-size: 11px;
}
.playback-buttons {
  display: flex;
  gap: 7px;
  align-items: center;
}
.play-button {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: #e7ebdf;
  color: #141a17;
  border: 0;
  padding: 9px;
}
.play-button:hover {
  background: var(--lime);
}
.timecode {
  display: flex;
  gap: 9px;
  font-size: 11px;
  color: #7e898f;
  font-variant-numeric: tabular-nums;
}
#current-time {
  color: #d8dedb;
}
.inspector {
  overflow: auto;
  min-height: 0;
}
.inspector-section {
  padding: 15px 17px;
  border-top: 1px solid var(--line);
}
.inspector-section h3 {
  font-size: 13px;
  font-weight: 500;
  margin: 0 0 14px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.inspector-section h3 svg {
  width: 14px;
  height: 14px;
  color: #98a28e;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 7px;
  font-size: 12px;
  color: #9ca6ac;
  margin-bottom: 12px;
}
.field:last-child {
  margin-bottom: 0;
}
.field input,
.field select,
.field textarea {
  font-size: 13px;
  color: #e0e7e9;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.field-row .field {
  margin-bottom: 12px;
}
.field-row.three {
  grid-template-columns: repeat(3, 1fr);
  gap: 7px;
}
.field .range-line {
  display: flex;
  align-items: center;
  gap: 10px;
}
.field .range-line output {
  font-size: 11px;
  width: 37px;
  text-align: right;
}
.field-help {
  font-size: 11px;
  line-height: 1.5;
  color: #7f8a90;
  margin: 8px 0 0;
}
.layer-type-label {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 14px;
  color: #e2e8de;
  font-size: 14px;
}
.empty-inspector {
  padding: 30px 18px;
  line-height: 1.7;
  color: #8b959b;
}
.reorder-buttons {
  display: flex;
  gap: 7px;
}
.reorder-buttons button {
  font-size: 12px;
  flex: 1;
  padding: 7px 5px;
}
.timeline {
  grid-column: 1/-1;
  background: #1a1d1f;
  min-height: 0;
  display: flex;
  flex-direction: column;
}
.timeline-toolbar {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  border-bottom: 1px solid var(--line);
  flex-shrink: 0;
}
.timeline-toolbar > div {
  display: flex;
  gap: 10px;
  align-items: center;
}
.timeline-toolbar strong {
  font-weight: 500;
  font-size: 13px;
}
.timeline-toolbar > div > svg {
  color: #adb7bb;
  width: 15px;
}
.timeline-toolbar #timeline-summary {
  font-size: 11px;
  color: #899499;
  margin-left: 8px;
}
.timeline-actions {
  gap: 4px !important;
}
.shortcut-hint {
  font-size: 11px;
  color: #818c92;
  margin-left: 8px;
}
kbd {
  font-family: inherit;
  background: #2a2e31;
  border: 1px solid #3a4044;
  padding: 2px 5px;
  border-radius: 3px;
  color: #b3bdc1;
  margin-right: 4px;
}
.timeline-scroll {
  overflow: auto;
  flex: 1;
  position: relative;
}
.timeline-inner {
  position: relative;
  min-width: 660px;
  padding-bottom: 15px;
  --track-label: 228px;
}
.ruler-row,
.track-row {
  display: grid;
  grid-template-columns: var(--track-label) 1fr;
}
.ruler-row {
  height: 29px;
  position: sticky;
  top: 0;
  background: #1a1d1f;
  z-index: 2;
}
.track-title {
  border-right: 1px solid var(--line);
  font-size: 10px;
  color: #77858b;
  padding: 9px 20px;
  letter-spacing: 1px;
}
.ruler {
  position: relative;
  height: 29px;
  cursor: crosshair;
  border-bottom: 1px solid var(--line);
  margin-right: 26px;
  touch-action: none;
}
.tick {
  position: absolute;
  top: 0;
  border-left: 1px solid #364046;
  height: 29px;
  padding: 8px 7px;
  font-size: 10px;
  color: #849199;
  pointer-events: none;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}
.track-row {
  height: 31px;
}
.track-label {
  padding: 6px 20px;
  color: #9ca8af;
  font-size: 11px;
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.track-label svg {
  width: 13px;
  height: 13px;
}
.track-row.selected .track-label {
  color: var(--lime);
  background: #262e24;
}
.track-lane {
  position: relative;
  border-bottom: 1px solid #252b2f;
  margin-right: 26px;
  background: repeating-linear-gradient(
    to right,
    transparent,
    transparent calc(12.5% - 1px),
    #272d3077 calc(12.5% - 1px),
    #272d3077 12.5%
  );
}
.clip {
  position: absolute;
  height: 24px;
  top: 3px;
  border-radius: 4px;
  background: #394b35;
  border: 1px solid #526a40;
  color: #c1d6a7;
  font-size: 10px;
  padding: 4px 11px;
  cursor: grab;
  overflow: hidden;
  white-space: nowrap;
  touch-action: none;
  min-width: 4px;
  user-select: none;
}
.clip.type-text {
  background: #354840;
  border-color: #466558;
  color: #b4d5bf;
}
.clip.type-image,
.clip.type-video {
  background: #384859;
  border-color: #506781;
  color: #bdd3ef;
}
.clip.type-audio {
  background: #504534;
  border-color: #70603f;
  color: #e4c894;
}
.track-row.selected .clip {
  background: #485a31;
  border-color: var(--lime);
  color: #e6f0cc;
}
.clip.dimmed {
  opacity: 0.3;
}
.trim-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 7px;
  cursor: ew-resize;
  z-index: 1;
}
.trim-handle.start {
  left: 0;
  border-left: 3px solid #aac58b70;
}
.trim-handle.end {
  right: 0;
  border-right: 3px solid #aac58b70;
}
.playhead {
  position: absolute;
  top: 23px;
  bottom: 0;
  z-index: 3;
  width: 1px;
  background: var(--lime);
  pointer-events: none;
}
.playhead-cap {
  position: absolute;
  top: -9px;
  left: -5px;
  width: 11px;
  height: 13px;
  background: var(--lime);
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}
.statusbar {
  height: 31px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 20px;
  background: #171a1c;
  color: #7d878d;
  font-size: 10px;
  letter-spacing: 0.5px;
  border-top: 1px solid var(--line);
}
.statusbar > span {
  display: flex;
  align-items: center;
  gap: 7px;
}
.statusbar svg {
  width: 12px;
  height: 12px;
}
.statusbar b {
  font-weight: 400;
  color: #acb5b9;
  margin-left: 3px;
}
.empty-layers {
  text-align: center;
  padding: 35px 10px;
  color: #889399;
  font-size: 13px;
  line-height: 1.6;
}
dialog {
  width: min(620px, calc(100vw - 32px));
  background: #1d2225;
  color: #e6eae6;
  border: 1px solid #444e52;
  border-radius: 13px;
  padding: 25px;
  box-shadow: 0 25px 120px #0008;
}
dialog::backdrop {
  background: #080c10ae;
  backdrop-filter: blur(5px);
}
.dialog-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 16px;
}
.eyebrow {
  font-size: 10px;
  letter-spacing: 1.5px;
  color: var(--lime);
}
.dialog-header h2 {
  font-size: 26px;
  letter-spacing: -0.5px;
  margin-top: 7px;
  font-weight: 500;
}
.dialog-description {
  color: #9aa6ad;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 20px;
}
.dialog-actions {
  display: flex;
  gap: 8px;
  margin-bottom: 20px;
}
.dialog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  margin-top: 20px;
}
.dialog-footer small {
  color: #8d999f;
  font-size: 12px;
}
#project-json {
  font-family: ui-monospace, monospace;
  font-size: 12px;
  color: #bcd4b5;
  tab-size: 2;
}
.templates {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.templates > button {
  display: block;
  text-align: left;
  background: #242a2d;
  white-space: normal;
  padding: 8px 8px 12px;
}
.templates strong {
  display: block;
  font-size: 14px;
  font-weight: 500;
  margin: 11px 3px 4px;
}
.templates span {
  display: block;
  font-size: 11px;
  line-height: 1.5;
  color: #a1adb3;
  margin: 0 3px;
}
.template-art {
  aspect-ratio: 1.4;
  display: flex;
  align-items: center;
  padding: 13px;
  font-size: 24px;
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -1px;
  border-radius: 3px;
}
.template-art.kinetic {
  background: #152b24;
  color: #d9f779;
}
.template-art.minimal {
  background: #eceee8;
  color: #3157ef;
  font-size: 21px;
  font-weight: 500;
}
.template-art.blank {
  background: #121719;
  border: 1px dashed #505c61;
  justify-content: center;
  color: #798a92;
}
.template-art.blank svg {
  height: 28px;
  width: 28px;
}
.export-note {
  display: flex;
  gap: 12px;
  font-size: 13px;
  color: #9facb1;
  line-height: 1.6;
  background: #252c2e;
  border: 1px solid #343e42;
  border-radius: 7px;
  padding: 14px;
  margin: 20px 0;
}
.export-note svg {
  color: var(--lime);
  margin-top: 3px;
}
progress {
  width: 100%;
  height: 8px;
  accent-color: var(--lime);
}
#export-message {
  font-size: 13px;
  color: #c3d3b0;
  margin-top: 14px;
  line-height: 1.6;
}
#toast {
  position: fixed;
  left: 50%;
  bottom: 42px;
  transform: translateX(-50%);
  padding: 12px 20px;
  border: 1px solid #53664a;
  background: #293725;
  color: #e1eecf;
  font-size: 14px;
  border-radius: 8px;
  box-shadow: 0 4px 30px #0005;
  z-index: 50;
  max-width: min(90vw, 650px);
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .workspace {
    grid-template-columns: 250px minmax(250px, 1fr) 285px;
  }
  .timeline-inner {
    --track-label: 250px;
  }
  .stage-area {
    padding: 25px 55px 8px;
  }
  .stage-hint {
    margin-top: 24px;
  }
  .library-actions {
    padding: 0 16px 20px;
  }
}
@media (max-width: 1150px) {
  .workspace {
    grid-template-columns: 185px minmax(250px, 1fr) 225px;
  }
  .timeline-inner {
    --track-label: 185px;
  }
  .stage-area {
    padding: 18px 22px 4px;
  }
  .topbar {
    gap: 15px;
    padding: 0 16px;
  }
  .save-status,
  .playback-info {
    display: none;
  }
  .project-heading {
    gap: 12px;
  }
  .project-heading input {
    width: 150px;
  }
  .transport {
    padding: 0 16px;
  }
  .stage-hint {
    font-size: 11px;
  }
  .header-actions {
    gap: 4px;
  }
  .inspector-section {
    padding: 14px;
  }
  .timecode {
    font-size: 10px;
  }
}
@media (max-width: 850px) {
  .workspace {
    grid-template-columns: 155px minmax(200px, 1fr);
    grid-template-rows: 430px 230px auto;
  }
  .inspector {
    grid-column: 1/-1;
    grid-row: 3;
    overflow: visible;
  }
  .inspector #inspector-content {
    display: flex;
    flex-wrap: wrap;
  }
  .inspector-section {
    flex: 1;
    min-width: 190px;
    border-right: 1px solid var(--line);
  }
  .timeline {
    grid-row: 2;
  }
  .timeline-inner {
    --track-label: 155px;
  }
  .brand {
    font-size: 21px;
  }
  .brand img {
    width: 26px;
    height: 26px;
  }
  .project-heading {
    display: none;
  }
  .topbar {
    justify-content: space-between;
  }
  .layer-item {
    padding: 0 5px;
    gap: 6px;
  }
  .layer-item .layer-name {
    font-size: 11px;
  }
  .library-actions {
    gap: 4px;
    padding: 0 8px 17px;
  }
  .library-actions button {
    font-size: 10px;
    padding: 9px 2px;
  }
  .library-footer {
    display: none;
  }
  .stage-toolbar {
    padding: 0 14px;
  }
  .stage-hint {
    font-size: 10px;
  }
  .stage-area {
    padding: 14px 24px 4px;
  }
  .transport {
    padding: 0 15px;
  }
  .statusbar {
    font-size: 9px;
  }
  #codec-status {
    font-size: 9px;
  }
  .header-actions .divider {
    display: none;
  }
}
@media (max-width: 540px) {
  .topbar {
    height: 60px;
    padding: 0 12px;
  }
  .brand {
    font-size: 22px;
  }
  .brand img {
    display: none;
  }
  .header-actions {
    gap: 2px;
  }
  .header-actions #redo,
  .header-actions #undo {
    display: none;
  }
  .header-actions button {
    padding: 8px;
    font-size: 12px;
  }
  .header-actions button svg {
    height: 14px;
    width: 14px;
  }
  .workspace {
    grid-template-columns: 1fr;
    grid-template-rows: 330px auto 220px auto;
  }
  .stage-panel {
    grid-row: 1;
  }
  .library {
    grid-row: 2;
    grid-column: 1;
    max-height: 178px;
  }
  .panel-heading {
    height: 37px;
    padding: 0 13px;
    font-size: 11px;
  }
  .library-actions {
    display: flex;
    padding: 0 12px 8px;
  }
  .library-actions button {
    flex-direction: row;
    font-size: 12px;
    flex: 1;
    padding: 7px;
  }
  .library-actions button svg {
    height: 14px;
    width: 14px;
  }
  .section-label {
    display: none;
  }
  .layer-list {
    display: flex;
    gap: 5px;
    padding: 0 12px 10px;
    min-height: 50px;
    overflow: auto;
  }
  .layer-item {
    min-width: 135px;
    margin: 0;
    height: 37px;
  }
  .layer-item .layer-name {
    font-size: 12px;
  }
  .timeline {
    grid-row: 3;
    grid-column: 1;
  }
  .inspector {
    grid-row: 4;
    grid-column: 1;
  }
  .timeline-inner {
    --track-label: 135px;
    min-width: 560px;
  }
  .timeline-toolbar {
    padding: 0 12px;
    height: 40px;
  }
  .timeline-toolbar #timeline-summary {
    font-size: 10px;
    margin-left: 0;
  }
  .shortcut-hint {
    display: none;
  }
  .stage-toolbar {
    height: 38px;
    font-size: 11px;
  }
  .stage-area {
    padding: 12px 22px 0;
  }
  .stage-hint {
    display: none;
  }
  .transport {
    height: 49px;
    padding: 0 12px;
  }
  .playback-buttons {
    gap: 2px;
  }
  .timecode {
    gap: 5px;
  }
  .statusbar {
    padding: 0 12px;
  }
  .statusbar > span:first-child {
    display: none;
  }
  .templates {
    grid-template-columns: 1fr;
  }
  .templates > button {
    display: grid;
    grid-template-columns: 100px 1fr;
    column-gap: 12px;
  }
  .template-art {
    grid-row: 1/3;
    font-size: 20px;
  }
  .templates strong {
    align-self: end;
  }
  .dialog-header h2 {
    font-size: 23px;
  }
  dialog {
    padding: 20px;
  }
  .dialog-footer {
    flex-wrap: wrap;
  }
  .inspector-section {
    min-width: 160px;
  }
  .field input,
  .field select,
  .field textarea {
    font-size: 16px;
  }
}
@media (prefers-reduced-motion: reduce) {
  * {
    transition: none !important;
  }
}
