:root {
  color-scheme: dark;
  --bg: #0d1017;
  --bg-soft: #121722;
  --panel: #171d29;
  --panel-2: #1d2533;
  --border: #303b4d;
  --border-soft: #242d3c;
  --text: #edf2fa;
  --muted: #9da9bb;
  --blue: #5eabff;
  --blue-strong: #318ae9;
  --green: #57ce8d;
  --amber: #efb45b;
  --red: #ef666e;
  --shadow: 0 16px 48px rgb(0 0 0 / 28%);
  --radius: 12px;
  font-family:
    Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  font-size: 14px;
  background: var(--bg);
  color: var(--text);
}

* {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

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

html,
body,
#app {
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  overflow: hidden;
}

body {
  background:
    radial-gradient(circle at 72% -20%, #1b3452 0, transparent 36%),
    var(--bg);
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  color: inherit;
}

.topbar {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  border-bottom: 1px solid var(--border-soft);
  background: rgb(13 16 23 / 88%);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 280px;
}

.brand-mark {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: #06111d;
  font-size: 21px;
  font-weight: 850;
  background: linear-gradient(145deg, #8bc5ff, #428fe1);
  box-shadow: 0 8px 24px rgb(53 145 235 / 25%);
}

.brand h1,
.brand p,
h2,
h3,
p {
  margin: 0;
}

.brand h1 {
  font-size: 17px;
  letter-spacing: -0.01em;
}

.beta-badge {
  display: inline-flex;
  margin-left: 7px;
  padding: 2px 6px;
  border: 1px solid #4d78a7;
  border-radius: 999px;
  color: #a9d2ff;
  background: #17283b;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  vertical-align: 2px;
}

.brand p {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.top-actions,
.compact-actions,
.timeline-actions,
.transport,
.field-row,
.input-action {
  display: flex;
  align-items: center;
  gap: 8px;
}

.divider {
  width: 1px;
  height: 24px;
  margin: 0 4px;
  background: var(--border);
}

.button,
.icon-button {
  border: 1px solid var(--border);
  border-radius: 7px;
  background: var(--panel-2);
  color: var(--text);
  cursor: pointer;
  transition:
    transform 120ms ease,
    border-color 120ms ease,
    background 120ms ease;
}

.button {
  min-height: 34px;
  padding: 7px 13px;
  font-weight: 650;
}

.button.small {
  min-height: 29px;
  padding: 5px 10px;
  font-size: 12px;
}

.button:hover,
.icon-button:hover {
  border-color: #506179;
  background: #283346;
}

.button:active,
.icon-button:active {
  transform: translateY(1px);
}

.button.primary {
  border-color: #4d9ded;
  background: linear-gradient(180deg, #4699eb, #297ccd);
  color: white;
}

.button.primary:hover {
  background: linear-gradient(180deg, #59a8f4, #3185d7);
}

.button.subtle {
  background: transparent;
}

.button.danger {
  border-color: #9d444b;
  background: #7d343b;
}

.button:disabled {
  cursor: not-allowed;
  opacity: 0.45;
}

.button.busy::before {
  content: "";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
  border: 2px solid rgb(255 255 255 / 35%);
  border-top-color: currentcolor;
  border-radius: 50%;
  animation: busy-spin 700ms linear infinite;
  vertical-align: -1px;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
#viewport:focus-visible {
  outline: 3px solid rgb(94 171 255 / 75%);
  outline-offset: 2px;
}

@keyframes busy-spin {
  to {
    transform: rotate(360deg);
  }
}

.icon-button {
  min-height: 29px;
  padding: 4px 9px;
  font-size: 12px;
}

.welcome-screen {
  height: calc(100vh - 74px);
  display: grid;
  place-items: center;
  padding: 30px;
  overflow: auto;
}

.welcome-card {
  width: min(940px, 100%);
  padding: 38px;
  background:
    radial-gradient(circle at 84% 8%, rgb(71 146 222 / 18%), transparent 35%),
    linear-gradient(180deg, rgb(255 255 255 / 3%), transparent 160px),
    var(--panel);
}

.welcome-copy {
  max-width: 680px;
}

.welcome-copy h2 {
  margin-top: 10px;
  font-size: clamp(32px, 5vw, 54px);
  letter-spacing: -0.045em;
}

.welcome-copy p {
  max-width: 620px;
  margin-top: 14px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.welcome-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 27px;
}

.welcome-actions .button {
  min-height: 42px;
  padding-inline: 17px;
}

.welcome-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 34px;
}

.welcome-notes > div {
  min-width: 0;
  padding: 15px;
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  background: rgb(9 14 21 / 42%);
}

.welcome-notes strong,
.welcome-notes span {
  display: block;
}

.welcome-notes span,
.welcome-desktop-note {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.welcome-desktop-note {
  padding: 12px;
  border: 1px solid #6c542d;
  border-radius: 8px;
  color: #f6d59f;
  background: #251e14;
}

.shell {
  height: calc(100vh - 102px);
  display: grid;
  grid-template-columns: 172px minmax(0, 1fr);
}

.sidebar {
  display: flex;
  flex-direction: column;
  padding: 14px 10px 10px;
  border-right: 1px solid var(--border-soft);
  background: rgb(16 20 29 / 82%);
}

.nav-item {
  display: flex;
  align-items: center;
  gap: 10px;
  width: 100%;
  height: 42px;
  padding: 0 11px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}

.nav-item:hover {
  color: var(--text);
  background: rgb(255 255 255 / 4%);
}

.nav-item.active {
  color: white;
  background: #243247;
}

.nav-icon {
  width: 19px;
  color: var(--blue);
  text-align: center;
}

.sidebar-bottom {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  margin-top: auto;
  padding: 12px 8px 4px;
  border-top: 1px solid var(--border-soft);
}

.sidebar-bottom strong,
.sidebar-bottom small {
  display: block;
  max-width: 120px;
}

.sidebar-bottom strong {
  font-size: 11px;
}

.sidebar-bottom small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.3;
}

.status-dot {
  flex: 0 0 auto;
  width: 8px;
  height: 8px;
  margin-top: 3px;
  border-radius: 50%;
  background: var(--amber);
  box-shadow: 0 0 0 3px rgb(239 180 91 / 12%);
}

.status-dot.online {
  background: var(--green);
  box-shadow: 0 0 0 3px rgb(87 206 141 / 12%);
}

.workspace {
  position: relative;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.page {
  display: none;
  width: 100%;
  height: 100%;
  overflow: auto;
}

.page.active {
  display: block;
}

#page-animate {
  overflow: hidden;
}

.panel {
  border: 1px solid var(--border-soft);
  border-radius: var(--radius);
  background:
    linear-gradient(180deg, rgb(255 255 255 / 2%), transparent 100px),
    var(--panel);
  box-shadow: 0 6px 24px rgb(0 0 0 / 10%);
}

.animate-grid {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(420px, 1fr) 286px;
  grid-template-rows: minmax(300px, 1fr) 278px;
  gap: 10px;
  padding: 10px;
}

.viewport-panel {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.panel-heading {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 14px;
  border-bottom: 1px solid var(--border-soft);
}

.panel-heading h2,
.page-header h2 {
  margin-top: 4px;
  font-size: 19px;
  letter-spacing: -0.015em;
}

.eyebrow {
  color: var(--blue);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.canvas-wrap {
  position: relative;
  height: calc(100% - 64px);
  min-height: 220px;
  overflow: hidden;
  background:
    radial-gradient(circle at 50% 42%, rgb(60 99 139 / 18%), transparent 36%),
    #0f141d;
}

#viewport {
  display: block;
  width: 100%;
  height: 100%;
  cursor: grab;
}

#viewport:active {
  cursor: grabbing;
}

.preview-badge,
.canvas-help {
  position: absolute;
  bottom: 12px;
  padding: 6px 9px;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--muted);
  background: rgb(13 16 23 / 78%);
  font-size: 11px;
  backdrop-filter: blur(8px);
}

.preview-badge {
  left: 12px;
}

.preview-badge span {
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 5px;
  border-radius: 50%;
  background: var(--amber);
}

.canvas-help {
  top: 12px;
  right: 12px;
  bottom: auto;
}

.inspector {
  grid-column: 2;
  grid-row: 1;
  min-height: 0;
  overflow: hidden;
}

.form-stack {
  height: calc(100% - 111px);
  padding: 13px;
  overflow: auto;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  min-width: 0;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
}

.field + .field {
  margin-top: 12px;
}

.field-row {
  align-items: flex-start;
}

.field-row > .field {
  flex: 1;
  margin-top: 0;
}

input,
select,
textarea {
  width: 100%;
  min-height: 34px;
  border: 1px solid var(--border);
  border-radius: 7px;
  outline: none;
  background: #101620;
  color: var(--text);
  padding: 7px 9px;
  font-weight: 500;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgb(94 171 255 / 10%);
}

input[type="checkbox"] {
  width: 16px;
  min-height: 16px;
  accent-color: var(--blue);
}

.checkbox-field {
  flex-direction: row;
  align-items: center;
  gap: 8px;
  padding: 6px 0;
}

.inspector-actions {
  height: 47px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 7px;
  padding: 8px 12px;
  border-top: 1px solid var(--border-soft);
}

.timeline-panel {
  position: relative;
  grid-column: 1 / -1;
  grid-row: 2;
  min-width: 0;
  min-height: 0;
  overflow: hidden;
}

.timeline-toolbar {
  height: 46px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 7px 10px;
  border-bottom: 1px solid var(--border-soft);
}

.transport {
  color: var(--muted);
  font-variant-numeric: tabular-nums;
}

.timeline-actions label {
  display: flex;
  align-items: center;
  gap: 5px;
  color: var(--muted);
  font-size: 11px;
}

.timeline-actions select {
  width: 66px;
  min-height: 29px;
  padding: 4px 6px;
}

.timeline-scroll {
  --label-width: 112px;
  position: relative;
  height: calc(100% - 46px);
  overflow: auto;
  background:
    repeating-linear-gradient(
      90deg,
      transparent 0,
      transparent calc(10% - 1px),
      rgb(255 255 255 / 4%) calc(10% - 1px),
      rgb(255 255 255 / 4%) 10%
    );
}

.timeline-ruler {
  position: sticky;
  top: 0;
  z-index: 4;
  height: 26px;
  margin-left: var(--label-width);
  border-bottom: 1px solid var(--border);
  background: #141a24;
}

.ruler-label {
  position: absolute;
  top: 5px;
  transform: translateX(-50%);
  color: var(--muted);
  font-size: 10px;
  font-variant-numeric: tabular-nums;
}

.track-row {
  position: relative;
  height: 27px;
  border-bottom: 1px solid rgb(255 255 255 / 4%);
}

.track-row.selected {
  background: rgb(94 171 255 / 5%);
}

.track-label {
  position: sticky;
  left: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  width: var(--label-width);
  height: 100%;
  padding-left: 10px;
  border: 0;
  border-right: 1px solid var(--border);
  background: #171d29;
  color: var(--muted);
  font-size: 11px;
  cursor: pointer;
}

.track-row.selected .track-label {
  color: var(--text);
}

.track-lane {
  position: absolute;
  inset: 0 0 0 var(--label-width);
  cursor: crosshair;
}

.key-dot {
  position: absolute;
  top: 1px;
  width: 25px;
  height: 25px;
  padding: 0;
  transform: translateX(-50%);
  border: 0;
  background: transparent;
  cursor: pointer;
}

.key-dot::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 7px;
  width: 11px;
  height: 11px;
  transform: rotate(45deg);
  border: 1px solid #9bcaff;
  border-radius: 2px;
  background: #407fbd;
}

.key-dot.selected::before {
  border-color: white;
  background: var(--blue);
  box-shadow: 0 0 0 4px rgb(94 171 255 / 14%);
}

.key-dot.cut::before {
  border-color: #ffd497;
  background: var(--amber);
}

.key-dot.cut.selected::before {
  border-color: white;
  box-shadow: 0 0 0 4px rgb(239 180 91 / 16%);
}

.playhead {
  position: absolute;
  z-index: 5;
  top: 0;
  bottom: 0;
  width: 1px;
  pointer-events: none;
  background: var(--red);
  box-shadow: 0 0 0 1px rgb(239 102 110 / 18%);
}

.playhead::before {
  content: "";
  position: absolute;
  top: 0;
  left: -4px;
  border-top: 7px solid var(--red);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent;
}

.page-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  padding: 30px 34px 22px;
}

.page-header h2 {
  margin-top: 6px;
  font-size: 27px;
}

.page-header p {
  max-width: 680px;
  margin-top: 8px;
  color: var(--muted);
  line-height: 1.5;
}

.two-column {
  display: grid;
  grid-template-columns: minmax(580px, 1.5fr) minmax(280px, 0.7fr);
  gap: 14px;
  padding: 0 34px 34px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  padding: 20px;
}

.form-grid .span-two {
  grid-column: 1 / -1;
}

.guidance {
  padding: 22px;
}

.guidance h3,
.release-card h3 {
  margin: 7px 0 8px;
  font-size: 18px;
}

.guidance p,
.release-card p {
  color: var(--muted);
  line-height: 1.55;
}

.anchor-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 22px;
}

.anchor-list span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--muted);
}

.anchor {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--blue);
}

.anchor.head {
  background: #aa8cff;
}

.anchor.chest {
  background: var(--green);
}

.anchor.feet {
  background: var(--amber);
}

.path-card,
.result-box,
.warning-callout {
  margin-top: 22px;
  padding: 12px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: #111720;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.path-card.error {
  border-color: #8e454b;
  color: #ffb8bd;
  background: #2c1a1e;
}

.local-preference {
  margin-top: 22px;
}

.local-preference .input-action {
  margin-top: 7px;
}

.field-help {
  margin-top: 7px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.4;
}

.local-preference + .path-card {
  margin-top: 10px;
}

#page-assets > .panel {
  margin: 0 34px 34px;
  overflow: hidden;
}

.asset-summary {
  display: flex;
  gap: 22px;
  padding: 15px 18px;
  border-bottom: 1px solid var(--border-soft);
  color: var(--muted);
}

.asset-summary strong {
  color: var(--text);
}

.table-wrap {
  overflow: auto;
}

table {
  width: 100%;
  border-collapse: collapse;
  text-align: left;
}

th,
td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border-soft);
  vertical-align: top;
}

th {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  font-size: 12px;
}

td code {
  color: #a9d2ff;
}

.empty-row {
  padding: 32px;
  color: var(--muted);
  text-align: center;
}

.validation-summary,
.issue-list {
  margin: 0 34px;
}

.validation-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.metric {
  padding: 17px;
  border: 1px solid var(--border-soft);
  border-radius: 10px;
  background: var(--panel);
}

.metric strong,
.metric span {
  display: block;
}

.metric strong {
  font-size: 25px;
}

.metric span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 11px;
}

.issue-list {
  margin-top: 14px;
  padding-bottom: 34px;
}

.issue {
  display: grid;
  grid-template-columns: 82px minmax(0, 1fr) 180px;
  gap: 12px;
  padding: 14px 16px;
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  background: var(--panel);
}

.issue + .issue {
  margin-top: 8px;
}

.issue-badge {
  width: fit-content;
  height: fit-content;
  padding: 4px 7px;
  border-radius: 5px;
  color: #100b06;
  background: var(--amber);
  font-size: 10px;
  font-weight: 850;
  text-transform: uppercase;
}

.issue.error .issue-badge {
  color: white;
  background: var(--red);
}

.issue-badge.pass {
  background: var(--green);
}

.release-prerequisites {
  margin: 0 34px 14px;
  padding: 17px;
}

.prerequisite-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.prerequisite-heading span {
  color: var(--muted);
  font-size: 11px;
}

.release-prerequisites ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 9px;
  margin: 13px 0 0;
  padding: 0;
  list-style: none;
}

.release-prerequisites li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  min-width: 0;
  padding: 10px;
  border: 1px solid var(--border-soft);
  border-radius: 8px;
  background: #111720;
}

.prerequisite-marker {
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  width: 19px;
  height: 19px;
  border-radius: 50%;
  color: #0d1612;
  background: var(--green);
  font-size: 11px;
  font-weight: 900;
}

.release-prerequisites li.pending .prerequisite-marker {
  color: var(--muted);
  background: var(--border);
}

.release-prerequisites li strong,
.release-prerequisites li small {
  display: block;
}

.release-prerequisites li small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.35;
}

.issue strong,
.issue p {
  display: block;
}

.issue p {
  margin-top: 4px;
  color: var(--muted);
  line-height: 1.4;
}

.issue code {
  color: var(--muted);
  font-size: 11px;
  text-align: right;
  overflow-wrap: anywhere;
}

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

.release-card {
  position: relative;
  min-height: 360px;
  padding: 22px;
}

.step-number {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  margin-bottom: 17px;
  border: 1px solid #4f75a0;
  border-radius: 8px;
  color: var(--blue);
  background: #1c2c40;
  font-weight: 850;
}

.release-card > .button {
  width: 100%;
  margin-top: 16px;
}

.release-card .field {
  margin-top: 19px;
}

.muted {
  color: var(--muted);
}

.statusbar {
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 11px;
  border-top: 1px solid var(--border-soft);
  background: #0f131b;
  color: var(--muted);
  font-size: 11px;
}

#dirty-state.dirty {
  color: var(--amber);
}

dialog {
  width: min(650px, calc(100vw - 60px));
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 13px;
  background: var(--panel);
  color: var(--text);
  box-shadow: var(--shadow);
}

dialog::backdrop {
  background: rgb(3 6 10 / 72%);
  backdrop-filter: blur(5px);
}

.dialog-card {
  padding: 22px;
}

.dialog-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 20px;
}

.dialog-heading h2 {
  margin-top: 6px;
  font-size: 23px;
}

.dialog-heading .icon-button {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 22px;
}

.dialog-card .field-row,
.dialog-card > .field {
  margin-top: 13px;
}

.dialog-actions {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 23px;
}

.dialog-copy {
  color: var(--muted);
  line-height: 1.5;
}

.three-way-actions {
  flex-wrap: wrap;
}

.input-action input {
  flex: 1;
}

.publish-summary {
  display: grid;
  grid-template-columns: 135px 1fr;
  gap: 8px 12px;
  padding: 14px;
  border: 1px solid var(--border-soft);
  border-radius: 9px;
  background: #111720;
  font-size: 12px;
  max-height: 320px;
  overflow: auto;
}

.publish-summary dt {
  color: var(--muted);
}

.publish-summary dd {
  margin: 0;
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.warning-callout {
  border-color: #6c542d;
  color: #f6d59f;
  background: #251e14;
}

#toast {
  position: fixed;
  z-index: 50;
  right: 18px;
  bottom: 42px;
  max-width: 420px;
  padding: 12px 15px;
  border: 1px solid var(--border);
  border-radius: 9px;
  background: #202938;
  box-shadow: var(--shadow);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition:
    opacity 160ms ease,
    transform 160ms ease;
}

#toast.show {
  opacity: 1;
  transform: translateY(0);
}

#toast.error {
  border-color: #8e454b;
  background: #3a2024;
}

@media (max-width: 1180px) {
  .top-actions .subtle:not(#open-project):not(#new-project) {
    display: none;
  }

  .animate-grid {
    grid-template-columns: minmax(400px, 1fr) 260px;
  }

  .two-column {
    grid-template-columns: minmax(0, 1fr) 260px;
  }

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

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

  .release-card:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 1000px) {
  .brand {
    min-width: 240px;
  }

  .shell {
    grid-template-columns: 146px minmax(0, 1fr);
  }

  .sidebar-bottom strong,
  .sidebar-bottom small {
    max-width: 95px;
  }

  .top-actions #validate-project,
  .top-actions #build-project {
    display: none;
  }

  .animate-grid {
    grid-template-columns: minmax(360px, 1fr) 248px;
  }

  .page-header,
  .two-column,
  .release-grid {
    padding-right: 22px;
    padding-left: 22px;
  }

  #page-assets > .panel,
  .validation-summary,
  .issue-list,
  .release-prerequisites {
    margin-right: 22px;
    margin-left: 22px;
  }

  .two-column {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) {
  .animate-grid {
    grid-template-rows: minmax(210px, 1fr) 224px;
  }

  .timeline-panel {
    min-height: 224px;
  }

  .welcome-screen {
    place-items: start center;
    padding-block: 20px;
  }

  .welcome-card {
    padding: 28px;
  }

  .welcome-notes {
    margin-top: 22px;
  }
}

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