:root {
  color-scheme: dark;
  --wm-page: #070708;
  --wm-panel: #111113;
  --wm-text: #f7f7f8;
  --wm-muted: #9b9ba3;
  --wm-muted-strong: #c7c7ce;
  --wm-line: rgba(255, 255, 255, 0.075);
}

* {
  box-sizing: border-box;
}

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

body.wm-body {
  margin: 0;
  background: var(--wm-page);
  color: var(--wm-text);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.wm-body a {
  color: inherit;
  text-decoration: none;
}

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

.wm-site {
  min-height: 100vh;
  overflow: clip;
  background:
    radial-gradient(circle at 50% -8%, rgba(91, 78, 255, 0.12), transparent 32rem),
    var(--wm-page);
}

.wm-section-wrap,
.wm-header {
  width: min(1180px, calc(100% - 40px));
  margin-inline: auto;
}

.wm-header {
  position: relative;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 82px;
}

.wm-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  width: fit-content;
  font-size: 15px;
  font-weight: 680;
  letter-spacing: -0.01em;
}

.wm-brand img {
  border-radius: 9px;
}

.wm-nav {
  justify-self: center;
}

.wm-nav a {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 9px;
  color: #898992;
  font-size: 12px;
  font-weight: 650;
  transition: background 180ms ease, color 180ms ease;
}

.wm-nav a:hover,
.wm-nav a[aria-current="page"] {
  background: rgba(255, 255, 255, 0.045);
  color: #ededf1;
}

.wm-language-picker {
  position: relative;
  justify-self: end;
}

.wm-language-picker::after {
  position: absolute;
  top: 13px;
  right: 14px;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #85858e;
  border-bottom: 1.5px solid #85858e;
  content: "";
  pointer-events: none;
  transform: rotate(45deg);
}

.wm-language-picker select {
  width: 150px;
  height: 36px;
  padding: 0 38px 0 13px;
  border: 1px solid var(--wm-line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
  color: var(--wm-muted-strong);
  cursor: pointer;
  font: inherit;
  font-size: 12px;
  font-weight: 650;
  appearance: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.wm-language-picker select:hover {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.05);
}

.wm-language-picker option {
  background: #111114;
  color: var(--wm-text);
}

.wm-hero {
  padding: 112px 0 104px;
}

.wm-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(42px, 6vw, 88px);
}

.wm-hero-copy {
  min-width: 0;
  text-align: left;
}

.wm-eyebrow,
.wm-section-kicker,
.wm-showcase-label {
  color: #a7a7b0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.wm-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.wm-eyebrow span {
  width: 6px;
  height: 6px;
  border-radius: 999px;
  background: #72e0ac;
  box-shadow: 0 0 0 4px rgba(114, 224, 172, 0.1);
}

.wm-hero h1 {
  max-width: 610px;
  margin: 24px 0 0;
  background: linear-gradient(110deg, #f8fbff 8%, #b9d9ff 40%, #a88cff 68%, #f49acc 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(54px, 5.2vw, 78px);
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 0.99;
}

.wm-hero-intro {
  max-width: 560px;
  margin: 28px 0 0;
  color: #aaaab3;
  font-size: clamp(18px, 2vw, 21px);
  line-height: 1.55;
  letter-spacing: -0.018em;
}

.wm-download-actions {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 32px;
}

.wm-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  box-sizing: border-box;
  height: 52px;
  padding: 0 19px;
  border: 1px solid transparent;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 680;
  transition: transform 180ms ease, background 180ms ease;
}

.wm-button-icon {
  flex: 0 0 18px;
  width: 18px;
  height: 18px;
}

.wm-button:hover {
  transform: translateY(-2px);
}

.wm-body .wm-button-primary {
  background: #f4f4f5;
  color: #101012;
}

.wm-body .wm-button-primary:hover {
  background: #fff;
}

.wm-body .wm-button-secondary {
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.035);
  color: #e4e4e7;
}

.wm-body .wm-button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.07);
  color: #fff;
}

.wm-system-note {
  margin: 14px 0 0;
  color: #696971;
  font-size: 12px;
}

.wm-hero-visual {
  position: relative;
  width: 100%;
  min-width: 0;
  margin: 0;
}

.wm-screenshot-frame {
  position: relative;
  isolation: isolate;
  overflow: visible;
  margin: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  background: transparent;
  box-shadow: none;
}

.wm-screenshot-frame::before {
  position: absolute;
  z-index: 0;
  inset: 9% 1% 7%;
  border-radius: 42%;
  background: radial-gradient(ellipse at center, rgba(65, 102, 255, 0.12) 0%, rgba(129, 72, 255, 0.065) 48%, transparent 74%);
  content: "";
  filter: blur(38px);
  pointer-events: none;
}

.wm-screenshot-frame img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 2.4%, #000 97.6%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 2.4%, #000 97.6%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 2.4%, #000 97.6%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 2.4%, #000 97.6%, transparent 100%);
  mask-composite: intersect;
}

.wm-hero-frame {
  transform: none;
}

.wm-hero-frame::before {
  display: none;
}

.wm-hero-frame::after {
  display: none;
}

.wm-hero-frame img {
  filter: none;
  -webkit-mask-image: none;
  mask-image: none;
}

.wm-numbered-points {
  list-style: none;
  margin: 0;
  padding: 0;
}

.wm-numbered-points li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.wm-numbered-points li > span {
  display: grid;
  flex: 0 0 25px;
  width: 25px;
  height: 25px;
  place-items: center;
  border: 1px solid rgba(125, 115, 255, 0.5);
  border-radius: 999px;
  background: rgba(116, 96, 255, 0.1);
  color: #d7d2ff;
  font-size: 11px;
  font-weight: 750;
}

.wm-numbered-points p {
  margin: 2px 0 0;
  color: #a3a3ac;
  font-size: 13px;
  line-height: 1.55;
}

.wm-workflow {
  padding: 120px 0;
}

.wm-section-kicker {
  margin: 0 0 18px;
  background: linear-gradient(90deg, #79b8ff, #aa8cff, #ee88bc);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.wm-showcase-list {
  display: grid;
  gap: 150px;
}

.wm-showcase {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.75fr);
  align-items: center;
  gap: clamp(42px, 6vw, 84px);
}

.wm-showcase.wm-reverse {
  grid-template-columns: minmax(0, 1.75fr) minmax(240px, 0.72fr);
}

.wm-showcase.wm-reverse .wm-showcase-copy {
  order: 2;
}

.wm-showcase.wm-reverse .wm-screenshot-frame {
  order: 1;
}

.wm-showcase-copy h3 {
  margin: 13px 0 0;
  color: #ececef;
  font-size: clamp(29px, 3.1vw, 43px);
  font-weight: 700;
  letter-spacing: -0.043em;
  line-height: 1.08;
}

.wm-showcase-label {
  margin: 0;
  color: #777782;
  font-size: 10px;
}

.wm-showcase-summary {
  margin: 18px 0 0;
  color: var(--wm-muted);
  font-size: 15px;
  line-height: 1.6;
}

.wm-showcase-copy .wm-numbered-points {
  display: grid;
  gap: 16px;
  margin-top: 30px;
}

.wm-video-library {
  padding: 40px 0 140px;
}

.wm-video-library-heading {
  max-width: 720px;
  margin: 0 auto 58px;
  text-align: center;
}

.wm-video-library-heading h2 {
  margin: 0;
  color: #f0f0f2;
  font-size: clamp(40px, 5vw, 66px);
  font-weight: 740;
  letter-spacing: -0.052em;
  line-height: 1.02;
}

.wm-video-library-heading > p:last-child {
  margin: 22px auto 0;
  color: var(--wm-muted);
  font-size: 17px;
  line-height: 1.65;
}

.wm-video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 34px 28px;
}

.wm-video-card {
  min-width: 0;
}

.wm-video-embed {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  border: 1px solid rgba(255, 255, 255, 0.075);
  border-radius: 16px;
  background: #0d0d10;
}

.wm-video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.wm-video-card-copy {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-top: 15px;
}

.wm-video-card-copy span {
  flex: 0 0 auto;
  color: #676771;
  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.wm-video-card-copy h3 {
  margin: 0;
  color: #cfcfd5;
  font-size: 14px;
  font-weight: 620;
  line-height: 1.45;
}

.wm-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 28px 0 40px;
  border-top: 1px solid var(--wm-line);
  color: #62626a;
  font-size: 11px;
  text-align: center;
}

.wm-changelog-site {
  background:
    radial-gradient(circle at 50% 4%, rgba(104, 91, 255, 0.14), transparent 30rem),
    var(--wm-page);
}

.wm-changelog-main {
  min-height: calc(100vh - 162px);
  padding: 116px 0 140px;
}

.wm-changelog-hero {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.wm-changelog-hero h1 {
  margin: 20px 0 0;
  background: linear-gradient(110deg, #f8fbff 8%, #b9d9ff 40%, #a88cff 68%, #f49acc 94%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-size: clamp(52px, 7vw, 84px);
  font-weight: 760;
  letter-spacing: -0.058em;
  line-height: 1;
}

.wm-changelog-hero > p:last-child {
  max-width: 620px;
  margin: 26px auto 0;
  color: var(--wm-muted);
  font-size: 18px;
  line-height: 1.65;
}

.wm-release-notes {
  max-width: 900px;
  margin: 96px auto 0;
  color: #a6a6af;
  font-size: 15px;
  line-height: 1.75;
}

.wm-release-notes h2 {
  margin: 82px 0 24px;
  padding-top: 66px;
  border-top: 1px solid var(--wm-line);
  color: #f0f0f2;
  font-size: clamp(32px, 4vw, 46px);
  font-weight: 720;
  letter-spacing: -0.04em;
  line-height: 1.1;
}

.wm-release-notes h2:first-child {
  margin-top: 0;
  padding-top: 0;
  border-top: 0;
}

.wm-release-notes ul {
  display: grid;
  gap: 7px;
  margin: 0;
  padding-left: 1.35rem;
}

.wm-release-notes li::marker {
  color: #8f83ff;
}

.wm-release-notes a {
  color: #b9a9ff;
  text-decoration: underline;
  text-decoration-color: rgba(185, 169, 255, 0.35);
  text-underline-offset: 3px;
}

.wm-release-notes img {
  width: 100%;
  margin: 34px 0 0;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: #0d0d10;
}

.wm-body :focus-visible {
  outline: 2px solid #9b8cff;
  outline-offset: 3px;
}

@media (max-width: 900px) {
  .wm-hero {
    padding-top: 82px;
  }

  .wm-hero-grid {
    grid-template-columns: 1fr;
    gap: 64px;
  }

  .wm-hero-copy {
    text-align: center;
  }

  .wm-hero h1,
  .wm-hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .wm-download-actions {
    justify-content: center;
  }

  .wm-hero-visual {
    max-width: 760px;
    margin: 0 auto;
  }

  .wm-showcase,
  .wm-showcase.wm-reverse {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .wm-showcase.wm-reverse .wm-showcase-copy,
  .wm-showcase.wm-reverse .wm-screenshot-frame {
    order: initial;
  }

  .wm-showcase-copy {
    max-width: 620px;
  }

  .wm-video-library {
    padding-bottom: 110px;
  }

}

@media (max-width: 620px) {
  .wm-section-wrap,
  .wm-header {
    width: min(100% - 28px, 1180px);
  }

  .wm-header {
    min-height: 70px;
  }

  .wm-nav a {
    padding-inline: 8px;
    font-size: 11px;
  }

  .wm-brand span {
    display: none;
  }

  .wm-brand img {
    width: 34px;
    height: 34px;
  }

  .wm-language-picker select {
    width: 124px;
  }

  .wm-hero {
    padding: 70px 0;
  }

  .wm-hero h1 {
    margin-top: 20px;
    font-size: clamp(46px, 15vw, 64px);
  }

  .wm-hero-intro {
    font-size: 17px;
  }

  .wm-download-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .wm-button {
    width: 100%;
  }

  .wm-hero-visual {
    margin: 0 auto;
  }

  .wm-workflow {
    padding: 90px 0;
  }

  .wm-showcase-list {
    gap: 100px;
  }

  .wm-showcase-copy h3 {
    font-size: 34px;
  }

  .wm-video-library {
    padding: 20px 0 90px;
  }

  .wm-video-library-heading {
    margin-bottom: 38px;
    text-align: left;
  }

  .wm-video-library-heading h2 {
    font-size: 40px;
  }

  .wm-video-library-heading > p:last-child {
    font-size: 15px;
  }

  .wm-video-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .wm-video-embed {
    border-radius: 11px;
  }

  .wm-changelog-main {
    min-height: calc(100vh - 150px);
    padding: 82px 0 110px;
  }

  .wm-changelog-hero {
    text-align: left;
  }

  .wm-changelog-hero h1 {
    font-size: clamp(46px, 14vw, 64px);
  }

  .wm-changelog-hero > p:last-child {
    font-size: 16px;
  }

  .wm-release-notes {
    margin-top: 68px;
    font-size: 14px;
  }

  .wm-release-notes h2 {
    margin-top: 64px;
    padding-top: 48px;
  }

  .wm-release-notes img {
    margin-top: 24px;
    border-radius: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}

/* Editorial system — flat, typographic, and deliberately non-glossy. */
:root {
  --wm-page: #0b0c0c;
  --wm-panel: #111313;
  --wm-text: #f1efe8;
  --wm-muted: #999b94;
  --wm-muted-strong: #c9cbc3;
  --wm-line: rgba(241, 239, 232, 0.14);
  --wm-accent: #c9ff4a;
  --wm-accent-soft: rgba(201, 255, 74, 0.1);
  --wm-mono: "SFMono-Regular", "SF Mono", "Roboto Mono", ui-monospace, monospace;
}

body.wm-body {
  background: var(--wm-page);
  color: var(--wm-text);
}

.wm-site,
.wm-changelog-site {
  background: var(--wm-page);
}

.wm-section-wrap,
.wm-header {
  width: min(1280px, calc(100% - 64px));
}

.wm-header {
  min-height: 88px;
  border-bottom: 1px solid var(--wm-line);
}

.wm-brand {
  gap: 13px;
  font-size: 14px;
  font-weight: 720;
  letter-spacing: 0.01em;
}

.wm-brand img {
  border-radius: 7px;
}

.wm-nav a {
  min-height: 38px;
  padding: 0 4px;
  border-radius: 0;
  color: var(--wm-muted);
  font-family: var(--wm-mono);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wm-nav a:hover,
.wm-nav a[aria-current="page"] {
  background: transparent;
  color: var(--wm-accent);
}

.wm-language-picker::after {
  border-color: var(--wm-muted);
}

.wm-language-picker select {
  width: 158px;
  height: 40px;
  border-color: var(--wm-line);
  border-radius: 3px;
  background: transparent;
  color: var(--wm-muted-strong);
  font-family: var(--wm-mono);
  font-size: 10px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.wm-language-picker select:hover {
  border-color: rgba(201, 255, 74, 0.5);
  background: var(--wm-accent-soft);
}

.wm-hero {
  min-height: calc(100vh - 89px);
  padding: 0;
  border-bottom: 1px solid var(--wm-line);
}

.wm-hero-grid {
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  min-height: calc(100vh - 89px);
  gap: 0;
}

.wm-hero-copy {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-direction: column;
  min-height: 100%;
  padding: 80px clamp(44px, 6vw, 86px) 80px 0;
}

.wm-hero-visual {
  display: flex;
  align-items: center;
  align-self: stretch;
  padding: 60px 0 60px clamp(44px, 6vw, 86px);
  border-left: 1px solid var(--wm-line);
}

.wm-eyebrow,
.wm-section-kicker,
.wm-showcase-label {
  color: var(--wm-accent);
  font-family: var(--wm-mono);
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.16em;
}

.wm-eyebrow {
  gap: 12px;
}

.wm-eyebrow span {
  width: 8px;
  height: 8px;
  border-radius: 0;
  background: var(--wm-accent);
  box-shadow: none;
}

.wm-hero h1 {
  max-width: 620px;
  margin-top: 32px;
  background: none;
  color: var(--wm-text);
  font-size: clamp(58px, 6.1vw, 94px);
  font-weight: 760;
  letter-spacing: -0.064em;
  line-height: 0.91;
}

.wm-hero-intro {
  max-width: 540px;
  margin-top: 36px;
  color: var(--wm-muted-strong);
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.6;
}

.wm-download-actions {
  gap: 12px;
  margin-top: 38px;
}

.wm-button {
  height: 50px;
  padding: 0 18px;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 720;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.wm-button:hover {
  transform: none;
}

.wm-body .wm-button-primary {
  border-color: var(--wm-accent);
  background: var(--wm-accent);
  color: #10120c;
}

.wm-body .wm-button-primary:hover {
  border-color: #deff91;
  background: #deff91;
}

.wm-body .wm-button-secondary {
  border-color: var(--wm-line);
  background: transparent;
  color: var(--wm-text);
}

.wm-body .wm-button-secondary:hover {
  border-color: var(--wm-accent);
  background: var(--wm-accent-soft);
  color: var(--wm-accent);
}

.wm-system-note {
  margin-top: 18px;
  color: #6f716b;
  font-family: var(--wm-mono);
  font-size: 9px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.wm-screenshot-frame,
.wm-video-embed {
  border: 0;
  border-radius: 0;
  background: transparent;
}

.wm-screenshot-frame::before {
  display: none;
}

.wm-screenshot-frame img {
  -webkit-mask-image: none;
  mask-image: none;
}

.wm-workflow {
  padding: 56px 0 0;
}

.wm-showcase-list {
  gap: 0;
}

.wm-showcase,
.wm-showcase.wm-reverse {
  grid-template-columns: minmax(240px, 0.68fr) minmax(0, 1.7fr);
  gap: clamp(52px, 7vw, 108px);
  padding: 112px 0;
  border-top: 1px solid var(--wm-line);
}

.wm-showcase:first-child {
  border-top: 0;
}

.wm-showcase.wm-reverse {
  grid-template-columns: minmax(0, 1.7fr) minmax(240px, 0.68fr);
}

.wm-showcase-label {
  margin-bottom: 24px;
}

.wm-showcase-copy h3 {
  margin: 0;
  color: var(--wm-text);
  font-size: clamp(38px, 4.1vw, 61px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.wm-showcase-summary {
  margin-top: 26px;
  color: var(--wm-muted-strong);
  font-size: 16px;
  line-height: 1.65;
}

.wm-showcase-copy .wm-numbered-points {
  gap: 0;
  margin-top: 40px;
}

.wm-numbered-points li {
  gap: 14px;
  padding: 14px 0;
}

.wm-numbered-points li > span {
  display: block;
  flex-basis: 26px;
  width: 26px;
  height: auto;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--wm-accent);
  font-family: var(--wm-mono);
  font-size: 9px;
  line-height: 1.7;
}

.wm-numbered-points p {
  margin: 0;
  color: var(--wm-muted);
  font-size: 13px;
  line-height: 1.55;
}

.wm-video-library {
  display: grid;
  grid-template-columns: minmax(220px, 0.58fr) minmax(0, 1.7fr);
  align-items: start;
  gap: clamp(52px, 7vw, 108px);
  padding: 132px 0 150px;
  border-top: 1px solid var(--wm-line);
}

.wm-video-library-heading {
  position: sticky;
  top: 44px;
  max-width: none;
  margin: 0;
  text-align: left;
}

.wm-section-kicker {
  margin-bottom: 26px;
  background: none;
  color: var(--wm-accent);
}

.wm-video-library-heading h2 {
  color: var(--wm-text);
  font-size: clamp(42px, 4.5vw, 64px);
  font-weight: 740;
  letter-spacing: -0.055em;
  line-height: 0.98;
}

.wm-video-library-heading > p:last-child {
  margin-top: 28px;
  color: var(--wm-muted);
  font-size: 15px;
  line-height: 1.7;
}

.wm-video-grid {
  gap: 42px 20px;
}

.wm-video-card {
  padding-top: 12px;
  border-top: 1px solid var(--wm-line);
}

.wm-video-embed {
  background: #050606;
}

.wm-video-card-copy {
  gap: 14px;
  margin-top: 14px;
}

.wm-video-card-copy span {
  color: var(--wm-accent);
  font-family: var(--wm-mono);
}

.wm-video-card-copy h3 {
  color: var(--wm-muted-strong);
  font-size: 13px;
  font-weight: 620;
}

.wm-footer {
  min-height: 82px;
  padding: 0;
  color: #6f716b;
  font-family: var(--wm-mono);
  font-size: 9px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.wm-changelog-main {
  padding: 118px 0 150px;
}

.wm-changelog-hero {
  max-width: 900px;
  margin: 0;
  text-align: left;
}

.wm-changelog-hero h1 {
  margin-top: 30px;
  background: none;
  color: var(--wm-text);
  font-size: clamp(58px, 8vw, 108px);
  letter-spacing: -0.065em;
  line-height: 0.9;
}

.wm-changelog-hero > p:last-child {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--wm-muted-strong);
}

.wm-release-notes {
  max-width: 920px;
  margin: 110px 0 0 auto;
  color: var(--wm-muted);
}

.wm-release-notes h2 {
  margin-top: 74px;
  padding-top: 26px;
  border-color: var(--wm-line);
  color: var(--wm-text);
  font-family: var(--wm-mono);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 650;
  letter-spacing: -0.035em;
}

.wm-release-notes li::marker {
  color: var(--wm-accent);
}

.wm-release-notes a {
  color: var(--wm-accent);
  text-decoration-color: rgba(201, 255, 74, 0.35);
}

.wm-release-notes img {
  border-color: var(--wm-line);
  border-radius: 0;
  background: var(--wm-panel);
}

.wm-body :focus-visible {
  outline-color: var(--wm-accent);
}

@media (max-width: 980px) {
  .wm-section-wrap,
  .wm-header {
    width: min(100% - 40px, 1280px);
  }

  .wm-hero,
  .wm-hero-grid {
    min-height: auto;
  }

  .wm-hero-grid {
    grid-template-columns: 1fr;
  }

  .wm-hero-copy {
    align-items: center;
    padding: 100px 0 72px;
    text-align: center;
  }

  .wm-hero h1,
  .wm-hero-intro {
    margin-right: auto;
    margin-left: auto;
  }

  .wm-download-actions {
    justify-content: center;
  }

  .wm-hero-visual {
    max-width: 840px;
    margin: 0 auto;
    padding: 72px 0 90px;
    border-top: 1px solid var(--wm-line);
    border-left: 0;
  }

  .wm-showcase,
  .wm-showcase.wm-reverse {
    grid-template-columns: 1fr;
    gap: 56px;
    padding: 90px 0;
  }

  .wm-showcase.wm-reverse .wm-showcase-copy,
  .wm-showcase.wm-reverse .wm-screenshot-frame {
    order: initial;
  }

  .wm-showcase-copy {
    max-width: 720px;
  }

  .wm-video-library {
    grid-template-columns: 1fr;
    gap: 54px;
    padding: 100px 0 110px;
  }

  .wm-video-library-heading {
    position: static;
    max-width: 720px;
  }
}

@media (max-width: 640px) {
  .wm-section-wrap,
  .wm-header {
    width: min(100% - 28px, 1280px);
  }

  .wm-header {
    min-height: 70px;
  }

  .wm-brand img {
    width: 34px;
    height: 34px;
  }

  .wm-language-picker select {
    width: 118px;
    height: 36px;
    padding-left: 10px;
    font-size: 9px;
  }

  .wm-hero-copy {
    padding: 76px 0 60px;
  }

  .wm-hero h1 {
    font-size: clamp(52px, 15.5vw, 72px);
  }

  .wm-hero-intro {
    font-size: 16px;
  }

  .wm-download-actions {
    align-items: stretch;
    flex-direction: column;
    width: 100%;
  }

  .wm-button {
    width: 100%;
  }

  .wm-hero-visual {
    padding: 52px 0 64px;
  }

  .wm-workflow {
    padding-top: 20px;
  }

  .wm-showcase,
  .wm-showcase.wm-reverse {
    gap: 42px;
    padding: 72px 0;
  }

  .wm-showcase-copy h3 {
    font-size: 42px;
  }

  .wm-video-library {
    padding: 82px 0 90px;
  }

  .wm-video-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .wm-video-library-heading h2 {
    font-size: 46px;
  }

  .wm-changelog-main {
    padding: 82px 0 110px;
  }

  .wm-changelog-hero h1 {
    font-size: clamp(54px, 16vw, 76px);
  }

  .wm-release-notes {
    margin-top: 76px;
  }
}

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