:root {
  color-scheme: light dark;
  --caption-font: system-ui,-apple-system,"Segoe UI",sans-serif;
  --caption-size: 18px;
  --article-width: 760px;
  --article-line-height: 1.86;
  --article-align: justify;
}

@media (prefers-color-scheme: dark) {
  :root {
  --bg: #101217;
  --panel: #171a20;
  --text: #eef1f5;
  --muted: #9ba3af;
  --line: #2b313b;
  --accent: #7aa2ff;
  --danger: #f87171;
  }
}

* {
  box-sizing: border-box;
}

body {
  margin: 0px;
  background: var(--bg);
  color: var(--text);
  font-style: normal;
  font-variant-caps: normal;
  font-variant-ligatures: normal;
  font-variant-numeric: normal;
  font-variant-east-asian: normal;
  font-variant-alternates: normal;
  font-size-adjust: none;
  font-language-override: normal;
  font-kerning: auto;
  font-optical-sizing: auto;
  font-feature-settings: normal;
  font-variation-settings: normal;
  font-variant-position: normal;
  font-variant-emoji: normal;
  font-weight: normal;
  font-stretch: normal;
  font-size: 15px;
  line-height: 1.6;
  font-family: system-ui, -apple-system, "Segoe UI", sans-serif;
}

.app {
  max-width: 1180px;
  margin: auto;
  padding: 28px 16px 64px;
}

h1 {
  margin: 0px 0px 4px;
  font-size: 28px;
}

.sub {
  margin: 0px 0px 22px;
  color: var(--muted);
}

.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  padding: 18px;
}

.grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  row-gap: 14px;
  column-gap: 14px;
}

.field {
  grid-column-start: span 6;
  grid-column-end: auto;
}

@media (max-width: 720px) {
  .field {
  grid-column-start: 1;
  grid-column-end: -1;
  }
}

.field.wide {
  grid-column-start: 1;
  grid-column-end: -1;
}

label {
  display: block;
  font-weight: 650;
  margin-bottom: 6px;
}

input, select, button {
  font-style: inherit;
  font-variant-ligatures: inherit;
  font-variant-caps: inherit;
  font-variant-numeric: inherit;
  font-variant-east-asian: inherit;
  font-variant-alternates: inherit;
  font-variant-position: inherit;
  font-variant-emoji: inherit;
  font-weight: inherit;
  font-stretch: inherit;
  font-size: inherit;
  line-height: inherit;
  font-family: inherit;
  font-optical-sizing: inherit;
  font-size-adjust: inherit;
  font-kerning: inherit;
  font-feature-settings: inherit;
  font-variation-settings: inherit;
  font-language-override: inherit;
}

input[type="file"], input[type="number"], input[type="text"], select {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  color: inherit;
}

.row {
  display: flex;
  row-gap: 10px;
  column-gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

button {
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background: var(--panel);
  color: inherit;
  font-weight: 650;
  cursor: pointer;
}

button.primary {
  background: var(--accent);
  border-color: var(--accent);
  color: rgb(255, 255, 255);
}

button:disabled {
  opacity: 0.5;
  cursor: not-allowed;
}

.note, .status, .summary {
  color: var(--muted);
}

.note {
  font-size: 13px;
  margin-top: 6px;
}

.status {
  min-height: 24px;
  margin-top: 12px;
}

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

progress {
  width: 100%;
  margin-top: 10px;
}

.hidden {
  display: none !important;
}

.toolbar {
  position: sticky;
  top: 0px;
  z-index: 10;
  margin: 18px 0px;
  padding: 10px;
  background: color-mix(in srgb,var(--panel) 92%,transparent);
  backdrop-filter: blur(10px);
}

.toolbar input {
  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: 360px;
}

.timeline {
  display: grid;
  row-gap: 16px;
  column-gap: 16px;
}

.card {
  background: var(--panel);
  border: 1px solid var(--line);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  overflow-x: hidden;
  overflow-y: hidden;
}

.card-head {
  display: flex;
  justify-content: space-between;
  row-gap: 10px;
  column-gap: 10px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}

.time {
  font-weight: 750;
  font-variant-numeric: tabular-nums;
}

.range {
  font-size: 13px;
  color: var(--muted);
}

.frame {
  display: block;
  width: 100%;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(0, 0, 0);
  object-fit: contain;
}

.caption {
  padding: 14px;
  white-space-collapse: preserve;
  text-wrap-mode: wrap;
  font-family: var(--caption-font);
  font-size: var(--caption-size);
}

.caption.empty {
  color: var(--muted);
  font-style: italic;
}

.article-shell {
  max-width: var(--article-width);
  margin: 0px auto;
  border: 1px solid var(--line);
  border-top-left-radius: 14px;
  border-top-right-radius: 14px;
  border-bottom-right-radius: 14px;
  border-bottom-left-radius: 14px;
  padding: 44px 52px;
  --article-bg: var(--panel);
  --article-text: var(--text);
  --article-muted: var(--muted);
  --article-border: var(--line);
  --article-heading-font: var(--caption-font);
  --article-body-font: var(--caption-font);
  --article-radius: 14px;
  --article-shadow: none;
  background: var(--article-bg);
  color: var(--article-text);
  border-color: var(--article-border);
  border-radius: var(--article-radius);
  box-shadow: var(--article-shadow);
}

@media (max-width: 720px) {
  .article-shell {
  padding: 26px 18px;
  }
}

.article-title {
  font: 750 34px/1.18 var(--caption-font);
  letter-spacing: -0.02em;
  margin: 0px 0px 12px;
  font-family: var(--article-heading-font);
}

@media (max-width: 720px) {
  .article-title {
  font-size: 29px;
  }
}

.article-meta {
  color: var(--muted);
  margin-bottom: 36px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line);
}

.article-body {
  font-size: var(--caption-size);
  line-height: var(--article-line-height);
  letter-spacing: 0.005em;
  font-family: var(--article-body-font);
}

.article-paragraph {
  margin: 0px 0px 1.45em;
  text-align: var(--article-align);
  text-justify: inter-word;
  hyphens: auto;
  overflow-wrap: break-word;
}

.article-shell.dropcap-on .article-paragraph:first-of-type::first-letter {
  float: left;
  font-size: 3.1em;
  line-height: 0.84;
  font-weight: 700;
  margin: 0.08em 0.1em 0px 0px;
}

.article-figure {
  margin: 36px -18px 40px;
}

.article-figure img {
  display: block;
  width: 100%;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
  border-bottom-right-radius: 10px;
  border-bottom-left-radius: 10px;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: rgb(0, 0, 0);
}

.article-figure figcaption {
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.82em;
}

.article-section {
  scroll-margin-top: 80px;
}

video {
  display: none;
}

.section-title {
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0px 0px 12px;
}

.settings-stack {
  display: grid;
  row-gap: 16px;
  column-gap: 16px;
}

.mode-tabs {
  display: grid;
  grid-template-columns: 1fr 1fr;
  row-gap: 8px;
  column-gap: 8px;
  padding: 6px;
  background: color-mix(in srgb,var(--bg) 70%,var(--panel));
  border: 1px solid var(--line);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

.mode-tab {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  background-image: initial;
  background-position-x: initial;
  background-position-y: initial;
  background-size: initial;
  background-repeat: initial;
  background-attachment: initial;
  background-origin: initial;
  background-clip: initial;
  background-color: transparent;
  padding: 11px 14px;
  border-top-left-radius: 9px;
  border-top-right-radius: 9px;
  border-bottom-right-radius: 9px;
  border-bottom-left-radius: 9px;
  color: var(--muted);
  font-weight: 750;
}

.mode-tab.active {
  background: var(--panel);
  color: var(--text);
  box-shadow: rgba(0, 0, 0, 0.08) 0px 1px 5px;
}

.mode-settings {
  margin-top: 14px;
}

.action-panel {
  margin-top: 16px;
}

.result-wrap {
  margin-top: 22px;
}

.result-head {
  display: flex;
  justify-content: space-between;
  row-gap: 12px;
  column-gap: 12px;
  align-items: end;
  margin-bottom: 10px;
}

.result-head h2 {
  margin: 0px;
  font-size: 18px;
}

.result-head p {
  margin: 0px;
  color: var(--muted);
  font-size: 13px;
}

#extractFrames {
  min-width: 132px;
}

.article-meta, .article-figure figcaption {
  color: var(--article-muted);
}

.article-theme-newspaper {
  --article-bg: #fffdf8;
  --article-text: #171717;
  --article-muted: #66605a;
  --article-border: #d8d0c4;
  --article-heading-font: Georgia,"Times New Roman",serif;
  --article-body-font: Georgia,"Times New Roman",serif;
  --article-radius: 0px;
}

.article-theme-newspaper .article-title {
  text-align: center;
  font-size: 38px;
  border-top: 4px double var(--article-text);
  border-bottom: 1px solid var(--article-text);
  padding: 18px 0px 14px;
}

.article-theme-newspaper .article-meta {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75em;
}

.article-theme-newspaper .article-body {
  line-height: 1.72;
}

.article-theme-newspaper .article-figure img {
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
}

.article-theme-magazine {
  --article-bg: #fff;
  --article-text: #111827;
  --article-muted: #6b7280;
  --article-border: #e5e7eb;
  --article-heading-font: Arial,Helvetica,sans-serif;
  --article-body-font: Georgia,"Times New Roman",serif;
  --article-radius: 20px;
  --article-shadow: 0 16px 50px rgba(0,0,0,.08);
}

.article-theme-magazine .article-title {
  font-size: 42px;
  letter-spacing: -0.045em;
}

.article-theme-magazine .article-meta {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding: 0px;
  margin-bottom: 42px;
}

.article-theme-magazine .article-figure {
  margin-top: 44px;
  margin-bottom: 46px;
}

.article-theme-magazine .article-figure img {
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
  border-bottom-left-radius: 16px;
}

.article-theme-report {
  --article-bg: #fff;
  --article-text: #1f2937;
  --article-muted: #64748b;
  --article-border: #cbd5e1;
  --article-heading-font: system-ui,-apple-system,"Segoe UI",sans-serif;
  --article-body-font: system-ui,-apple-system,"Segoe UI",sans-serif;
  --article-radius: 8px;
}

.article-theme-report .article-title {
  font-size: 31px;
  border-left-width: 5px;
  border-left-style: solid;
  border-left-color: rgb(100, 116, 139);
  padding-left: 18px;
}

.article-theme-report .article-body {
  line-height: 1.72;
}

.article-theme-report .article-figure img {
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
}

.article-theme-minimal {
  --article-bg: transparent;
  --article-text: var(--text);
  --article-muted: var(--muted);
  --article-border: transparent;
  --article-radius: 0px;
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding-left: 22px;
  padding-right: 22px;
}

.article-theme-minimal .article-meta {
  border-top-width: 0px;
  border-right-width: 0px;
  border-bottom-width: 0px;
  border-left-width: 0px;
  border-top-style: none;
  border-right-style: none;
  border-bottom-style: none;
  border-left-style: none;
  border-top-color: currentcolor;
  border-right-color: currentcolor;
  border-bottom-color: currentcolor;
  border-left-color: currentcolor;
  border-image-source: none;
  border-image-slice: 100%;
  border-image-width: 1;
  border-image-outset: 0;
  border-image-repeat: stretch;
  padding-bottom: 0px;
}

.article-theme-minimal .article-figure {
  margin-left: 0px;
  margin-right: 0px;
}

.article-theme-dark {
  --article-bg: #111318;
  --article-text: #f1f3f5;
  --article-muted: #a7adb7;
  --article-border: #292e38;
  --article-heading-font: var(--caption-font);
  --article-body-font: var(--caption-font);
  --article-radius: 16px;
  --article-shadow: 0 18px 60px rgba(0,0,0,.28);
}

.article-theme-dark .article-figure img {
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  border-bottom-right-radius: 12px;
  border-bottom-left-radius: 12px;
}

:root {
  color-scheme: dark;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0px;
  background: var(--bg-2);
}

body {
  color: var(--text-2);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.index-2 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0px, 1fr));
  min-height: 90dvh;
  box-sizing: border-box;
  min-width: 100dvh;
}

@media (max-width: 768px) {
  .index-2 {
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, minmax(220px, 1fr));
  }
}

.panel-3 {
  position: relative;
  isolation: isolate;
  display: flex;
  color: inherit;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  background-color: var(--surface-2);
  border-right: 1px solid var(--line-2);
  outline-color: transparent;
  outline-style: solid;
  outline-width: 1px;
  outline-offset: -1px;
  transition: outline-color 320ms var(--ease),
          background-color 320ms var(--ease);
  overflow-y: hidden;
  padding: clamp(24px, 3.2vw, 52px);
}

@media (max-width: 768px) {
  .panel-3 {
  min-height: 33.333dvh;
  padding: 22px 20px;
  border-right-width: 0px;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom: 1px solid var(--line-2);
  }
}

.panel-3:last-child {
  border-right-width: 0px;
  border-right-style: none;
  border-right-color: currentcolor;
}

@media (max-width: 768px) {
  .panel-3:last-child {
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  }
}

.pattern-2, .shade-2 {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  pointer-events: none;
}

.pattern-2 {
  z-index: -2;
  opacity: 0.72;
  transition: opacity 420ms var(--ease),
          transform 700ms var(--ease);
}

.pattern-lines-2 {
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%, 0%;
  background-position-y: 0%, 0%;
  background-repeat: repeat, repeat;
  background-attachment: scroll, scroll;
  background-image: linear-gradient(transparent 0px, transparent 31px, rgba(255, 255, 255, 0.105) 32px), linear-gradient(125deg, rgba(255, 255, 255, 0.035), transparent 42%);
  background-origin: padding-box, padding-box;
  background-clip: border-box, border-box;
  background-size: 100% 32px, 100% 100%;
}

@media (max-width: 768px) {
  .pattern-lines-2 {
  background-size: 100% 26px, 100% 100%;
  }
}

.pattern-contours-2 {
  background-color: rgb(23, 24, 26);
  background-image: repeating-radial-gradient(at 18% 22%, transparent 0px, transparent 24px, rgba(255, 255, 255, 0.09) 25px, rgba(255, 255, 255, 0.09) 26px, transparent 27px, transparent 47px), repeating-radial-gradient(at 90% 75%, transparent 0px, transparent 32px, rgba(255, 255, 255, 0.075) 33px, rgba(255, 255, 255, 0.075) 34px, transparent 35px, transparent 61px);
  background-size: 135% 115%, 150% 130%;
}

.pattern-cubes-2 {
  background-color: rgb(21, 22, 24);
  background-image: linear-gradient(30deg, rgba(255, 255, 255, 0.09) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.09) 87.5%), linear-gradient(150deg, rgba(255, 255, 255, 0.09) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.09) 87.5%), linear-gradient(30deg, rgba(255, 255, 255, 0.09) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.09) 87.5%), linear-gradient(150deg, rgba(255, 255, 255, 0.09) 12%, transparent 12.5%, transparent 87%, rgba(255, 255, 255, 0.09) 87.5%), linear-gradient(60deg, rgba(255, 255, 255, 0.045) 25%, transparent 25.5%, transparent 75%, rgba(255, 255, 255, 0.045) 75%);
  background-position-x: 0px, 0px, 42px, 42px, 0px;
  background-position-y: 0px, 0px, 72px, 72px, 0px;
  background-size: 84px 144px;
}

@media (max-width: 768px) {
  .pattern-cubes-2 {
  background-size: 72px 124px;
  background-position-x: 0px, 0px, 36px, 36px, 0px;
  background-position-y: 0px, 0px, 62px, 62px, 0px;
  }
}

.shade-2 {
  z-index: -1;
  background-color: rgba(4, 5, 6, 0.04);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  transition: background-color 360ms var(--ease);
}

.panel-content-2 {
  align-self: flex-end;
  width: 100%;
  padding-top: 96px;
}

@media (max-width: 768px) {
  .panel-content-2 {
  padding-top: 62px;
  }
}

.label {
  display: block;
  margin-bottom: 14px;
  color: var(--muted-2);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  transition: color 300ms var(--ease);
}

@media (max-width: 768px) {
  .label {
  margin-bottom: 8px;
  font-size: 10px;
  }
}

h2 {
  margin: 0px;
  max-width: auto;
  font-size: clamp(38px, 4.25vw, 68px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 0.94;
}

@media (max-width: 768px) {
  h2 {
  font-size: clamp(36px, 12vw, 54px);
  }
}

.link-icon-2 {
  position: absolute;
  top: clamp(26px, 3.2vw, 52px);
  right: clamp(24px, 3.2vw, 52px);
  display: grid;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-items: center;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.25);
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgba(255, 255, 255, 0.25);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.25);
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(255, 255, 255, 0.25);
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  color: var(--text-2);
  font-size: 19px;
  line-height: 1;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 280ms var(--ease),
          transform 400ms var(--ease),
          border-color 280ms var(--ease);
}

@media (max-width: 768px) {
  .link-icon-2 {
  top: 18px;
  right: 18px;
  width: 36px;
  height: 36px;
  font-size: 17px;
  opacity: 0.52;
  transform: none;
  }
}

.panel-3:is(:hover, :focus-visible) {
  z-index: 2;
  outline-color: var(--highlight-2);
}

.panel-3:is(:hover, :focus-visible) .pattern-2 {
  opacity: 0.48;
  transform: scale(1.025);
}

.panel-3:is(:hover, :focus-visible) .shade-2 {
  background-color: rgba(2, 3, 4, 0.48);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.panel-3:is(:hover, :focus-visible) :is(.label, .description-2) {
  color: rgba(239, 239, 236, 0.8);
}

.panel-3:is(:hover, :focus-visible) .link-icon-2 {
  opacity: 1;
  transform: translate(0px);
  border-top-color: rgba(255, 255, 255, 0.6);
  border-right-color: rgba(255, 255, 255, 0.6);
  border-bottom-color: rgba(255, 255, 255, 0.6);
  border-left-color: rgba(255, 255, 255, 0.6);
}

.panel-3:active {
  background-color: rgb(15, 16, 18);
}

@media (hover: none) {
  .panel-3:active {
  outline-color: var(--highlight-2);
  }
}

@media (hover: none) {
  .panel-3:active .shade-2 {
  background-color: rgba(2, 3, 4, 0.4);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  }
}

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

:root {
  color-scheme: dark;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

html, body {
  min-height: 100%;
  margin: 0px;
  background: var(--page);
}

body {
  color: var(--text-3);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

.collection-page-2 {
  width: min(100% - 40px, 1440px);
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding: clamp(88px, 11vw, 168px) 0px 72px;
}

@media (max-width: 768px) {
  .collection-page-2 {
  width: min(100% - 28px, 1440px);
  padding-top: 72px;
  }
}

.collection-header-2 {
  display: grid;
  row-gap: 18px;
  column-gap: 18px;
  margin-bottom: clamp(48px, 7vw, 92px);
}

.collection-kicker, .card-meta {
  margin: 0px;
  color: var(--muted-3);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.collection-title-2 {
  margin: 0px;
  font-size: clamp(54px, 9vw, 132px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.86;
}

.collection-loop-2 {
  display: block;
  grid-template-columns: repeat(2, minmax(0px, 1fr));
  border-top: 1px solid var(--line-3);
  border-left: 1px solid var(--line-3);
}

@media (max-width: 768px) {
  .collection-loop-2 {
  grid-template-columns: 1fr;
  }
}

.collection-card, .collection-card-placeholder {
  position: relative;
  isolation: isolate;
  display: flex;
  min-height: clamp(280px, 36vw, 520px);
  overflow-x: hidden;
  overflow-y: hidden;
  padding: clamp(24px, 3.5vw, 52px);
  color: inherit;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  background: var(--surface-3);
  border-right: 1px solid var(--line-3);
  border-bottom: 1px solid var(--line-3);
  outline-color: transparent;
  outline-style: solid;
  outline-width: 1px;
  outline-offset: -1px;
  transition: background-color 320ms var(--ease), outline-color 320ms var(--ease);
}

@media (max-width: 768px) {
  .collection-card, .collection-card-placeholder {
  min-height: 300px;
  padding: 22px 20px;
  }
}

.card-media, .card-shade {
  position: absolute;
  top: 0px;
  right: 0px;
  bottom: 0px;
  left: 0px;
  pointer-events: none;
}

.card-media {
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.44;
  filter: grayscale(1) contrast(0.9);
  transition: opacity 420ms var(--ease), transform 700ms var(--ease);
}

.card-shade {
  z-index: -1;
  background-color: rgba(0, 0, 0, 0);
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: linear-gradient(to top, rgba(5, 6, 7, 0.92), rgba(5, 6, 7, 0.08) 70%);
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
}

.card-content {
  display: flex;
  align-self: flex-end;
  justify-content: space-between;
  align-items: flex-end;
  row-gap: 32px;
  column-gap: 32px;
  width: 100%;
  padding-top: 96px;
}

.card-title {
  margin: 13px 0px 0px;
  font-size: clamp(30px, 4vw, 58px);
  font-weight: 520;
  letter-spacing: -0.05em;
  line-height: 0.96;
}

.card-description {
  max-width: 34ch;
  margin: 16px 0px 0px;
  color: var(--muted-3);
  font-size: 14px;
  line-height: 1.6;
}

.card-link-icon {
  display: grid;
  flex-grow: 0;
  flex-shrink: 0;
  flex-basis: auto;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-items: center;
  border-top-width: 1px;
  border-top-style: solid;
  border-top-color: rgba(255, 255, 255, 0.28);
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: rgba(255, 255, 255, 0.28);
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: rgba(255, 255, 255, 0.28);
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: rgba(255, 255, 255, 0.28);
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-top-left-radius: 50%;
  border-top-right-radius: 50%;
  border-bottom-right-radius: 50%;
  border-bottom-left-radius: 50%;
  opacity: 0;
  transform: translate(-6px, 6px);
  transition: opacity 280ms var(--ease), transform 400ms var(--ease);
}

@media (max-width: 768px) {
  .card-link-icon {
  width: 36px;
  height: 36px;
  opacity: 0.54;
  transform: none;
  }
}

.collection-card:is(:hover, :focus-visible) {
  z-index: 1;
  outline-color: var(--active);
}

.collection-card:is(:hover, :focus-visible) .card-media {
  opacity: 0.28;
  transform: scale(1.025);
}

.collection-card:is(:hover, :focus-visible) .card-link-icon {
  opacity: 1;
  transform: translate(0px);
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
  transition-duration: 0.01ms !important;
  }
}

:root {
  color-scheme: dark;
  --content: 720px;
  --wide: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  background: var(--page-2);
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
  scroll-behavior: auto;
  }
}

body {
  min-height: 100dvh;
  margin: 0px;
  color: var(--text-4);
  background: var(--page-2);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

a {
  color: rgba(239, 239, 236, 0.72);
  position: relative;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 24px;
  font-weight: 500;
  letter-spacing: 0.14em;
  z-index: 10;
  cursor: pointer;
  pointer-events: auto;
  left: 32px;
}

.post-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 48px, var(--wide));
  height: 72px;
  margin-inline-start: auto;
  margin-inline-end: auto;
  border-bottom: 1px solid var(--line-4);
}

@media (max-width: 768px) {
  .post-nav {
  height: 60px;
  }
}

.post-nav a {
  color: var(--muted-4);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
  transition-property: color;
  transition-duration: 180ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

.post-nav a:hover, .post-nav a:focus-visible {
  color: var(--text-4);
}

.post-header {
  width: min(100% - 48px, var(--wide));
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding: clamp(72px, 11vw, 156px) 0px clamp(48px, 7vw, 96px);
}

@media (max-width: 768px) {
  .post-header {
  padding-top: 64px;
  }
}

.post-category, .post-date {
  margin: 0px;
  color: var(--muted-4);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.post-title {
  max-width: 12ch;
  margin: 24px 0px 0px;
  font-size: clamp(48px, 8vw, 112px);
  font-weight: 520;
  letter-spacing: -0.065em;
  line-height: 0.92;
  text-wrap-mode: wrap;
  text-wrap-style: balance;
}

@media (max-width: 768px) {
  .post-title {
  max-width: 14ch;
  font-size: clamp(44px, 15vw, 68px);
  }
}

.post-description {
  max-width: 48ch;
  margin: 32px 0px 0px;
  color: var(--soft);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
}

@media (max-width: 768px) {
  .post-description {
  margin-top: 24px;
  }
}

.post-meta {
  display: flex;
  row-gap: 16px;
  column-gap: 16px;
  align-items: center;
  margin-top: 40px;
}

@media (max-width: 768px) {
  .post-meta {
  margin-top: 28px;
  }
}

.post-meta-separator {
  width: 28px;
  height: 1px;
  background: var(--line-strong);
}

.post-featured {
  display: block;
  width: min(100% - 48px, var(--wide));
  max-height: 72dvh;
  margin: 0px auto clamp(64px, 9vw, 120px);
  object-fit: cover;
  background: var(--surface-4);
  filter: grayscale(1) contrast(0.96);
}

@media (max-width: 768px) {
  .post-featured {
  margin-bottom: 64px;
  }
}

.post-body {
  width: min(100% - 48px, var(--content));
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding-bottom: clamp(88px, 12vw, 168px);
  color: rgba(239, 239, 236, 0.86);
  font-size: clamp(17px, 1.6vw, 19px);
  line-height: 1.82;
}

@media (max-width: 768px) {
  .post-body {
  width: min(100% - 32px, var(--content));
  font-size: 17px;
  line-height: 1.75;
  }
}

.post-body > :first-child {
  margin-top: 0px;
}

.post-body > :last-child {
  margin-bottom: 0px;
}

.post-body p, .post-body ul, .post-body ol, .post-body blockquote, .post-body pre, .post-body table {
  margin-block-start: 1.6em;
  margin-block-end: 1.6em;
}

.post-body h2, .post-body h3, .post-body h4 {
  color: var(--text-4);
  font-weight: 560;
  letter-spacing: -0.035em;
  line-height: 1.15;
  text-wrap-mode: wrap;
  text-wrap-style: balance;
}

.post-body h2 {
  margin: 2.4em 0px 0.8em;
  font-size: clamp(30px, 4vw, 46px);
}

.post-body h3 {
  margin: 2.1em 0px 0.75em;
  font-size: clamp(24px, 3vw, 32px);
}

.post-body h4 {
  margin: 2em 0px 0.7em;
  font-size: 20px;
}

.post-body a {
  text-decoration-color: var(--line-strong);
  text-underline-offset: 0.18em;
  transition-property: text-decoration-color;
  transition-duration: 180ms;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-behavior: normal;
}

.post-body a:hover, .post-body a:focus-visible {
  text-decoration-color: var(--text-4);
}

.post-body strong {
  color: var(--text-4);
  font-weight: 620;
}

.post-body ul, .post-body ol {
  padding-left: 1.4em;
}

.post-body li + li {
  margin-top: 0.45em;
}

.post-body blockquote {
  margin-inline-start: 0px;
  margin-inline-end: 0px;
  padding: 4px 0px 4px 24px;
  color: var(--soft);
  border-left: 1px solid var(--line-strong);
  font-size: 1.08em;
}

.post-body code {
  padding: 0.16em 0.4em;
  color: var(--text-4);
  background: var(--surface-raised);
  border: 1px solid var(--line-4);
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
  border-bottom-right-radius: 4px;
  border-bottom-left-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 0.86em;
}

.post-body pre {
  overflow-x: auto;
  padding: 24px;
  background: var(--surface-raised);
  border: 1px solid var(--line-4);
  border-top-left-radius: 6px;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
  border-bottom-left-radius: 6px;
  font-size: 14px;
  line-height: 1.65;
}

@media (max-width: 768px) {
  .post-body pre {
  padding: 18px;
  }
}

.post-body pre code {
  padding: 0px;
  background-color: transparent;
  background-position-x: 0%;
  background-position-y: 0%;
  background-repeat: repeat;
  background-attachment: scroll;
  background-image: none;
  background-size: auto;
  background-origin: padding-box;
  background-clip: border-box;
  border-top-width: 0px;
  border-top-style: none;
  border-top-color: currentcolor;
  border-right-width: 0px;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-left-width: 0px;
  border-left-style: none;
  border-left-color: currentcolor;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-top-left-radius: 0px;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
  border-bottom-left-radius: 0px;
  font-size: inherit;
}

.post-body img, .post-body video {
  display: block;
  width: min(calc(100vw - 48px), var(--wide));
  max-width: none;
  height: auto;
  margin: 3em 50%;
  transform: translateX(-50%);
}

@media (max-width: 768px) {
  .post-body img, .post-body video {
  width: calc(-32px + 100vw);
  }
}

.post-body hr {
  margin: 4em 0px;
  border-top-width: 0px;
  border-top-style: none;
  border-top-color: currentcolor;
  border-right-width: 0px;
  border-right-style: none;
  border-right-color: currentcolor;
  border-bottom-width: 0px;
  border-bottom-style: none;
  border-bottom-color: currentcolor;
  border-left-width: 0px;
  border-left-style: none;
  border-left-color: currentcolor;
  border-image-outset: 0;
  border-image-repeat: stretch;
  border-image-slice: 100%;
  border-image-source: none;
  border-image-width: 1;
  border-top: 1px solid var(--line-4);
}

.post-body table {
  display: block;
  width: 100%;
  overflow-x: auto;
  border-collapse: collapse;
  font-size: 0.9em;
}

.post-body th, .post-body td {
  padding: 12px 14px;
  text-align: left;
  border-bottom: 1px solid var(--line-4);
}

.post-body th {
  color: var(--text-4);
  font-weight: 600;
}

.post-footer {
  display: flex;
  justify-content: space-between;
  width: min(100% - 48px, var(--wide));
  margin-inline-start: auto;
  margin-inline-end: auto;
  padding: 28px 0px 40px;
  border-top: 1px solid var(--line-4);
  color: var(--muted-4);
  font-family: ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.post-footer a {
  text-decoration-color: currentcolor;
  text-decoration-line: none;
  text-decoration-style: solid;
  text-decoration-thickness: auto;
}

@media (max-width: 768px) {
  .post-nav, .post-header, .post-featured, .post-footer {
  width: min(100% - 32px, var(--wide));
  }
}

@media (prefers-reduced-motion: reduce) {
  *, ::before, ::after {
  transition-duration: 0.01ms !important;
  }
}

.global-nav {
  height: 10dvh;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}