:root {
  --ink: #132a2c;
  --ink-soft: #304746;
  --muted: #5d6967;
  --line: rgba(19, 42, 44, .2);
  --line-strong: rgba(19, 42, 44, .42);
  --soft: #eee5d4;
  --paper: #f3eddf;
  --white: #fffaf0;
  --green: #f05223;
  --green-dark: #c83d17;
  --mint: #d7ed72;
  --lime: #d7ed72;
  --orange: #f05223;
  --blue: #f05223;
  --shadow: 10px 12px 0 #132a2c;
  --shell: 1500px;
  --header-height: 92px;
  --font: "Microsoft YaHei UI", "Microsoft YaHei", "PingFang SC", sans-serif;
}

body {
  background:
    radial-gradient(circle at 11% 7%, rgba(215, 237, 114, .16), transparent 25%),
    var(--paper);
}

.noise {
  position: fixed;
  z-index: 190;
  inset: 0;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

h1,
h2 {
  letter-spacing: -.075em;
}

button:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline-color: rgba(240, 82, 35, .36);
}

.site-header {
  border-bottom: 1px solid rgba(19, 42, 44, .22);
  background: rgba(243, 237, 223, .92);
  box-shadow: 0 8px 24px rgba(19, 42, 44, .08);
}

.site-header.is-scrolled {
  border-color: rgba(19, 42, 44, .3);
  background: rgba(243, 237, 223, .97);
  box-shadow: 0 10px 26px rgba(19, 42, 44, .1);
}

.brand {
  gap: 13px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 12px;
  background: var(--white);
  box-shadow: 3px 3px 0 var(--orange);
  transform: rotate(-2deg);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-copy strong {
  font-size: 16px;
  font-weight: 950;
  letter-spacing: -.04em;
}

.brand-copy small {
  color: var(--orange);
  font-weight: 900;
}

.main-nav {
  gap: 33px;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
}

.main-nav a {
  padding: 8px 0;
  border-radius: 0;
  color: var(--ink);
  font-weight: 800;
}

.main-nav a::after {
  position: absolute;
  right: 100%;
  bottom: 1px;
  left: 0;
  height: 2px;
  background: var(--orange);
  content: "";
  transition: right .22s ease;
}

.main-nav a:hover,
.main-nav a.is-active {
  color: var(--ink);
  background: transparent;
  box-shadow: none;
}

.main-nav a:hover::after,
.main-nav a.is-active::after {
  right: 0;
}

.header-action {
  min-height: 46px;
  padding-inline: 19px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--ink);
  box-shadow: 4px 4px 0 var(--orange);
  font-weight: 900;
}

.header-action b {
  color: var(--lime);
}

.header-action:hover {
  background: var(--orange);
  box-shadow: 2px 2px 0 var(--ink);
  transform: translate(2px, 2px);
}

.menu-toggle {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--orange);
  font-weight: 950;
}

.eyebrow::before {
  width: 32px;
  height: 3px;
  flex: 0 0 32px;
  background: currentColor;
  content: "";
}

.button {
  min-height: 55px;
  border: 2px solid var(--ink);
  border-radius: 0;
  font-weight: 950;
}

.button-primary,
.button-accent {
  color: #fff;
  background: var(--orange);
  box-shadow: 6px 6px 0 var(--ink);
}

.button-primary:hover,
.button-accent:hover {
  background: var(--orange);
  box-shadow: 3px 3px 0 var(--ink);
  filter: none;
  transform: translate(3px, 3px);
}

.button-quiet {
  border-color: var(--ink);
  background: var(--paper);
}

.hero-section {
  min-height: 700px;
  overflow: hidden;
  border-bottom: 0;
  background: transparent;
}

.hero-section::before {
  display: none;
}

.hero-grid {
  min-height: 700px;
  grid-template-columns: .92fr 1.08fr;
  gap: 5vw;
  padding-top: 72px;
  padding-bottom: 92px;
}

.hero-copy h1 {
  max-width: 680px;
  margin-bottom: 24px;
  font-size: clamp(58px, 5.8vw, 88px);
  font-weight: 950;
  line-height: .94;
}

.hero-copy h1 span {
  color: var(--orange);
}

@media (min-width: 1500px) {
  .home-page .hero-copy h1 span {
    white-space: nowrap;
  }
}

.hero-copy h2 {
  color: var(--ink);
  font-size: clamp(30px, 3vw, 46px);
  font-weight: 850;
  line-height: 1.14;
}

.hero-description {
  line-height: 1.9;
}

.support-link {
  border-bottom: 1px solid var(--ink);
  color: var(--ink);
  font-weight: 850;
}

.support-link:hover,
.trust-line span {
  color: var(--orange);
}

.hero-showcase {
  min-height: 535px;
  perspective: none;
}

.hero-showcase::before {
  top: 8%;
  right: 7%;
  width: 76%;
  height: auto;
  aspect-ratio: 1;
  border-radius: 50%;
  background: var(--orange);
  filter: none;
}

.hero-showcase::after {
  position: absolute;
  top: -4%;
  right: -3%;
  width: 58%;
  height: 58%;
  opacity: .42;
  background: radial-gradient(var(--ink) 1.5px, transparent 1.5px);
  background-size: 14px 14px;
  content: "";
}

.stage-orbit {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--ink);
  border-radius: 50%;
  opacity: .48;
}

.stage-orbit-one {
  top: 11%;
  left: 0;
  width: 98%;
  aspect-ratio: 1.35;
  transform: rotate(-8deg);
}

.stage-orbit-two {
  top: 7%;
  left: 8%;
  width: 82%;
  aspect-ratio: 1.05;
  transform: rotate(21deg);
}

.dual-monitor-hero-card {
  position: absolute;
  z-index: 3;
  top: 38px;
  right: 0;
  width: 96%;
  margin: 0;
  border: 3px solid var(--ink);
  background: var(--paper);
  box-shadow: 12px 12px 0 var(--ink);
  transform: rotate(-.7deg);
}

.dual-monitor-hero-card img {
  display: block;
  width: 100%;
  aspect-ratio: 1.346;
  object-fit: cover;
}

.dual-monitor-hero-card figcaption {
  position: absolute;
  right: 18px;
  bottom: 16px;
  display: flex;
  align-items: center;
  border: 2px solid var(--ink);
  color: var(--ink);
  background: var(--paper);
  box-shadow: 5px 5px 0 var(--orange);
  font-size: 12px;
  font-weight: 950;
}

.dual-monitor-hero-card figcaption span,
.dual-monitor-hero-card figcaption i {
  padding: 8px 11px;
  font-style: normal;
}

.dual-monitor-hero-card figcaption i {
  color: var(--ink);
  background: var(--lime);
}

.software-window {
  border: 3px solid var(--ink);
  border-radius: 0;
  background: #f7f4ec;
  box-shadow: var(--shadow);
}

.software-window header,
.detail-window header {
  height: 46px;
  padding-inline: 15px;
  border-bottom: 2px solid var(--ink);
  color: var(--ink);
  background: #f7f4ec;
  font-weight: 900;
}

.software-window header i,
.detail-window header i {
  color: var(--ink);
}

.window-primary {
  z-index: 3;
  top: 65px;
  right: 0;
  width: 94%;
  height: 390px;
  transform: rotate(-1deg);
}

.window-primary::after {
  display: none;
}

.coming-window {
  color: var(--ink-soft);
  background: var(--lime);
}

.coming-window span {
  width: 40px;
  height: 40px;
  margin-bottom: 7px;
  border: 2px solid var(--ink);
  color: var(--ink);
}

.speed-tag {
  position: absolute;
  z-index: 5;
  top: 46%;
  left: -4%;
  display: flex;
  width: 112px;
  height: 112px;
  padding: 13px;
  align-items: center;
  gap: 7px;
  border: 2px solid var(--ink);
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  transform: translateY(-50%) rotate(-9deg);
}

.speed-tag strong {
  font: 950 37px/1 Impact, sans-serif;
}

.speed-tag span {
  font-size: 8px;
  font-weight: 950;
  line-height: 1.35;
}

.showcase-note {
  z-index: 6;
  right: 5%;
  bottom: -1%;
  padding: 13px 17px;
  border: 0;
  border-radius: 0;
  color: #fff;
  background: var(--ink);
  box-shadow: 5px 5px 0 var(--lime);
  font-weight: 900;
}

.showcase-note i {
  display: inline-block;
  width: 7px;
  height: 7px;
  margin-right: 6px;
  border-radius: 50%;
  background: var(--lime);
}

.has-managed-showcase {
  isolation: isolate;
}

.showcase-carousel,
.showcase-static {
  position: absolute;
  z-index: 3;
  top: 65px;
  right: 0;
  width: 94%;
  height: 390px;
  margin: 0;
  border: 3px solid var(--ink);
  color: var(--ink);
  background: #f7f4ec;
  box-shadow: var(--shadow);
  transform: rotate(-1deg);
}

.showcase-carousel {
  overflow: visible;
}

.showcase-slides {
  height: 100%;
  overflow: hidden;
  background: #f7f4ec;
  cursor: grab;
  touch-action: pan-y pinch-zoom;
  user-select: none;
  -webkit-user-select: none;
}

.showcase-slide {
  width: 100%;
  height: 100%;
  margin: 0;
  background: #f7f4ec;
  backface-visibility: hidden;
}

.showcase-carousel.is-pointer-down .showcase-slides,
.showcase-carousel.is-dragging .showcase-slides {
  cursor: grabbing;
}

.showcase-carousel.is-dragging .showcase-slide.is-active {
  opacity: var(--showcase-drag-opacity, 1);
  transform: translate3d(var(--showcase-drag-offset, 0), 0, 0);
  will-change: transform, opacity;
}

.showcase-slide[hidden] {
  display: none;
}

.showcase-static {
  overflow: hidden;
}

.showcase-window-title {
  display: flex;
  height: 46px;
  padding-inline: 15px;
  align-items: center;
  justify-content: space-between;
  border-bottom: 2px solid var(--ink);
  background: #f7f4ec;
  font-size: 10px;
  font-weight: 900;
}

.showcase-window-title i {
  flex: 0 0 auto;
  font-style: normal;
  letter-spacing: .06em;
}

.showcase-slide img,
.showcase-static > img {
  display: block;
  width: 100%;
  height: calc(100% - 46px);
  object-fit: contain;
  object-position: center;
}

.showcase-slide img {
  pointer-events: none;
  -webkit-user-drag: none;
}

.showcase-controls {
  position: absolute;
  z-index: 7;
  right: 13px;
  bottom: 13px;
  display: none;
  max-width: calc(100% - 26px);
  min-height: 42px;
  padding: 5px;
  align-items: center;
  gap: 9px;
  border: 2px solid var(--ink);
  background: var(--paper);
  box-shadow: 4px 4px 0 var(--ink);
  transform: rotate(1deg);
}

.showcase-carousel.is-ready .showcase-controls {
  display: flex;
}

.showcase-playback,
.showcase-arrow,
.showcase-dots button {
  display: grid;
  flex: 0 0 auto;
  padding: 0;
  place-items: center;
  border: 0;
  color: var(--ink);
  background: transparent;
  cursor: pointer;
}

.showcase-playback {
  width: 28px;
  height: 28px;
  border-right: 1px solid rgba(19, 42, 44, .3);
  font-size: 12px;
  font-weight: 950;
}

.showcase-playback span::before {
  content: "Ⅱ";
}

.showcase-playback[aria-pressed="true"] span::before {
  content: "▶";
}

.showcase-playback:hover,
.showcase-playback:focus-visible {
  color: var(--orange);
}

.showcase-playback:disabled {
  color: rgba(19, 42, 44, .45);
  cursor: not-allowed;
}

.showcase-arrow {
  width: 30px;
  height: 28px;
  font-size: 18px;
  font-weight: 950;
}

.showcase-arrow:hover,
.showcase-arrow:focus-visible {
  color: var(--orange);
}

.showcase-dots {
  display: flex;
  min-width: 0;
  max-width: 240px;
  align-items: center;
  gap: 7px;
  overflow-x: auto;
  scrollbar-width: none;
}

.showcase-dots::-webkit-scrollbar {
  display: none;
}

.showcase-dots button {
  width: 18px;
  height: 28px;
}

.showcase-dots button span {
  width: 9px;
  height: 9px;
  border: 1px solid var(--ink);
  border-radius: 50%;
  background: transparent;
  transition: width .2s ease, border-radius .2s ease, background .2s ease;
}

.showcase-dots button[aria-current="true"] span {
  width: 18px;
  border-radius: 9px;
  background: var(--orange);
}

.showcase-progress {
  position: absolute;
  right: 5px;
  bottom: 2px;
  left: 5px;
  height: 3px;
  overflow: hidden;
  background: rgba(19, 42, 44, .16);
}

.showcase-progress i {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: left center;
}

.showcase-carousel.is-playing .showcase-progress.is-running i {
  animation: showcase-autoplay-progress 6s linear forwards;
}

@keyframes showcase-autoplay-progress {
  to { transform: scaleX(1); }
}

.showcase-slide.is-entering img {
  animation: showcase-image-enter .45s ease both;
}

@keyframes showcase-image-enter {
  from { opacity: .35; transform: scale(1.015); }
  to { opacity: 1; transform: scale(1); }
}

.tool-ticker {
  overflow: hidden;
  padding: 19px 0;
  color: var(--paper);
  background: var(--ink);
  font: 950 14px/1 "Arial Narrow", sans-serif;
  letter-spacing: .18em;
  white-space: nowrap;
  border-block: 2px solid var(--orange);
}

.tool-ticker div {
  width: max-content;
  animation: guantou-ticker 24s linear infinite;
}

.tool-ticker b {
  margin: 0 27px;
  color: var(--orange);
}

@keyframes guantou-ticker {
  to { transform: translateX(-50%); }
}

.products-section {
  padding-top: 145px;
  padding-bottom: 145px;
}

.section-heading {
  grid-template-columns: 1fr 1.2fr .8fr;
  gap: 40px;
  margin-bottom: 62px;
}

.section-heading > div {
  grid-column: span 2;
}

.section-heading h2,
.detail-heading h2 {
  font-size: clamp(42px, 5vw, 74px);
}

.product-grid {
  gap: 0;
  border-top: 2px solid var(--ink);
  border-left: 2px solid var(--ink);
}

.product-card {
  min-height: 315px;
  padding: 31px;
  border: 0;
  border-right: 2px solid var(--ink);
  border-bottom: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
}

.product-card::before {
  top: -190px;
  right: -120px;
  background: var(--lime);
  opacity: .55;
}

.product-card:hover {
  z-index: 2;
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
  box-shadow: 8px 8px 0 var(--orange);
  transform: translate(-5px, -5px);
}

.product-card:hover .product-copy > p:last-child,
.product-card:hover .product-platform {
  color: #adc0bb;
}

.product-card:hover .product-link,
.product-card:hover .product-index {
  color: var(--lime);
}

.product-icon,
.catalog-icon,
.tool-detail-icon {
  border: 2px solid var(--ink);
  border-radius: 12px;
  box-shadow: 4px 4px 0 var(--orange);
}

.product-card-more {
  background: var(--lime);
}

.more-icon {
  border-style: dashed;
  background: var(--paper);
}

.principles-section {
  padding: 0 max(32px, calc((100vw - var(--shell)) / 2));
  color: #fff;
  background: transparent;
}

.principles-grid {
  width: 100%;
  padding: 95px;
  background: var(--ink);
  box-shadow: 14px 14px 0 var(--orange);
}

.principle-list article > span {
  color: var(--lime);
}

.supporters-section header,
.supporter-row > span {
  border-color: var(--ink);
}

.supporter-row > span {
  border-radius: 0;
  background: var(--white);
}

.support-cta {
  position: relative;
  margin-top: 115px;
  margin-bottom: 115px;
  padding: 70px;
  overflow: hidden;
  border: 2px solid var(--ink);
  color: #fff;
  background: var(--orange);
  box-shadow: 10px 10px 0 var(--ink);
}

.support-cta::after {
  position: absolute;
  top: -18%;
  right: -2%;
  color: rgba(255, 255, 255, .08);
  content: "TOOLS";
  font: 950 190px/1 Impact, sans-serif;
}

.support-cta > * {
  position: relative;
  z-index: 1;
}

.support-cta-copy p,
.support-cta-copy small {
  color: rgba(255, 255, 255, .82);
}

.support-cta-copy a {
  border-color: var(--ink);
  color: var(--ink);
  font-weight: 950;
}

.site-footer {
  border-color: var(--ink);
  background: #e9e0cf;
}

.footer-links a:hover {
  color: var(--orange);
}

.page-hero {
  border-bottom: 2px solid var(--ink);
  background: var(--paper);
}

.page-hero::after {
  top: auto;
  bottom: -45px;
  left: auto;
  width: 44%;
  height: 230px;
  opacity: .45;
  background: radial-gradient(var(--orange) 1.5px, transparent 1.5px);
  background-size: 15px 15px;
  mask-image: linear-gradient(90deg, transparent, #000);
}

.page-hero h1 span {
  color: var(--orange);
}

.catalog-toolbar {
  padding: 17px;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.catalog-toolbar input,
.catalog-toolbar select {
  border: 1px solid var(--ink);
  border-radius: 0;
  background: var(--paper);
}

.catalog-toolbar input:focus,
.catalog-toolbar select:focus {
  border-color: var(--orange);
  outline-color: rgba(240, 82, 35, .16);
}

.catalog-grid {
  gap: 18px;
}

.catalog-card,
.empty-state {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.catalog-card:hover {
  border-color: var(--ink);
  box-shadow: 9px 9px 0 var(--orange);
  transform: translate(-3px, -3px);
}

.status-pill {
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--lime);
}

.catalog-meta,
.catalog-card-action,
.fact-status {
  color: var(--orange);
}

.tool-story {
  border: 2px solid var(--ink);
  background: var(--white);
  box-shadow: 7px 7px 0 var(--ink);
}

.tool-hero {
  border-bottom: 0;
  background: var(--paper);
}

.tool-hero::after {
  opacity: .25;
  background: radial-gradient(var(--ink) 1.4px, transparent 1.4px);
  background-size: 15px 15px;
}

.tool-title-row .eyebrow,
.back-link:hover {
  color: var(--orange);
}

.tool-preview .preview-glow {
  inset: 4% 10%;
  background: var(--orange);
  filter: none;
  opacity: .92;
}

.detail-window {
  border: 3px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: 10px 12px 0 var(--ink);
  transform: rotate(1deg);
}

.tool-facts {
  border: 2px solid var(--ink);
  box-shadow: 6px 6px 0 var(--orange);
}

.tool-facts > div {
  border-color: var(--ink);
  background: var(--white);
}

.detail-feature-grid,
.detail-feature,
.release-history,
.release-history details {
  border-color: var(--ink);
}

.detail-feature > span {
  color: var(--orange);
}

.screenshot-section,
.detail-bottom-cta {
  background: var(--ink);
}

.screenshot-section {
  border-bottom: 8px solid var(--orange);
}

.screenshot-grid figure {
  border: 2px solid var(--paper);
  border-radius: 0;
  background: #1b3a3b;
  box-shadow: 7px 7px 0 var(--orange);
}

.release-card,
.feedback-form-card {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: 8px 8px 0 var(--ink);
}

.release-card > header,
.feedback-form-card > header {
  border-color: var(--ink);
  background: var(--soft);
}

.release-channel,
.release-history summary i {
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink) !important;
  background: var(--lime);
}

.download-wide {
  color: #fff;
  background: var(--orange);
}

.detail-bottom-cta {
  border-bottom: 7px solid var(--orange);
}

.detail-bottom-cta a {
  border: 2px solid var(--paper);
  border-radius: 0;
  box-shadow: 5px 5px 0 var(--orange);
}

.support-promise span {
  border: 1px solid var(--ink);
  border-radius: 0;
  color: var(--ink);
  background: var(--lime);
  font-weight: 850;
}

.tea-card {
  overflow: hidden;
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: 9px 9px 0 var(--ink);
  transform: rotate(2deg);
}

.tea-card::after {
  position: absolute;
  right: -10px;
  bottom: -35px;
  color: rgba(240, 82, 35, .09);
  content: "TEA";
  font: 950 100px/1 Impact, sans-serif;
}

.tea-steam {
  color: var(--orange);
}

.payment-card {
  border: 2px solid var(--ink);
  border-radius: 0;
  background: var(--white);
  box-shadow: 6px 6px 0 var(--ink);
}

.payment-card.wechat {
  box-shadow: 7px 7px 0 #07c160;
}

.payment-card.alipay {
  box-shadow: 7px 7px 0 #1677ff;
}

.qr-frame {
  border-color: var(--ink);
  border-radius: 0;
}

.payment-note span {
  border-color: var(--ink);
  color: var(--orange);
}

.support-wall {
  border-bottom: 8px solid var(--orange);
  background: var(--ink);
}

.other-support a > span,
.feedback-guide li > span {
  color: var(--orange);
}

.privacy-tip {
  border-left-width: 6px;
  border-left-color: var(--orange);
  background: #ffe7d7;
}

.feedback-form-card form {
  background: var(--white);
}

.feedback-form-card .form-field {
  align-content: start;
  align-self: start;
}

.feedback-form-card .form-field-wide {
  grid-column: 1 / -1;
}

.diagnostic-upload-field {
  padding: 16px;
  border: 2px dashed var(--ink);
  background: var(--soft);
}

.diagnostic-upload-field input[type="file"] {
  width: 100%;
  padding: 10px;
  cursor: pointer;
}

.diagnostic-upload-field small {
  display: block;
  margin-top: 7px;
  color: var(--muted);
}

.feedback-attachment-field {
  padding: 16px;
  border: 1px solid rgba(19, 42, 44, .42);
  background: var(--soft);
}

.feedback-attachment-dropzone {
  position: relative;
  display: grid;
  min-height: 170px;
  padding: 22px;
  overflow: hidden;
  border: 2px dashed rgba(19, 42, 44, .56);
  background: var(--white);
  text-align: center;
  cursor: pointer;
  place-content: center;
  transition: border-color .16s ease, background .16s ease, transform .16s ease;
}

.feedback-attachment-dropzone:hover,
.feedback-attachment-dropzone:focus-within,
.feedback-attachment-dropzone.is-dragging {
  border-color: var(--orange);
  background: #fff4e7;
}

.feedback-attachment-dropzone.is-dragging {
  transform: translateY(-2px);
}

.feedback-attachment-dropzone input[type="file"] {
  position: absolute;
  z-index: 2;
  inset: 0;
  width: 100%;
  height: 100%;
  padding: 0;
  opacity: 0;
  cursor: pointer;
}

.feedback-attachment-drop-icon {
  color: var(--orange);
  font-size: 34px;
  font-weight: 950;
  line-height: 1;
}

.feedback-attachment-dropzone strong {
  margin-top: 8px;
  font-size: 16px;
}

.feedback-attachment-dropzone small {
  margin-top: 5px;
  color: var(--muted);
}

.feedback-attachment-dropzone b {
  margin-top: 11px;
  color: var(--ink);
  font-size: 11px;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-color: var(--ink);
  border-radius: 0;
  background: var(--paper);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--orange);
  outline-color: rgba(240, 82, 35, .14);
}

.consent-row input {
  accent-color: var(--orange);
}

@media (max-width: 940px) {
  :root { --header-height: 74px; }

  .main-nav {
    top: var(--header-height);
    gap: 0;
    border-top: 1px solid var(--ink);
    border-bottom: 4px solid var(--orange);
    background: rgba(243, 237, 223, .98);
    box-shadow: 0 14px 0 rgba(19, 42, 44, .08);
  }

  .main-nav a {
    border-color: rgba(19, 42, 44, .2);
  }

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

  .principles-grid {
    padding: 70px 55px;
  }

  .section-heading {
    grid-template-columns: 1fr;
  }

  .section-heading > div {
    grid-column: auto;
  }
}

@media (max-width: 720px) {
  .brand-mark {
    width: 38px;
    height: 38px;
  }

  .hero-copy h1 {
    font-size: clamp(52px, 17vw, 76px);
  }

  .hero-showcase {
    min-height: 390px;
  }

  .showcase-carousel,
  .showcase-static {
    top: 38px;
    width: 96%;
    height: 285px;
  }

  .showcase-window-title {
    height: 38px;
    padding-inline: 10px;
  }

  .showcase-slide img,
  .showcase-static > img {
    height: calc(100% - 38px);
  }

  .showcase-controls {
    right: 0;
    bottom: 10px;
    max-width: calc(100vw - 32px);
  }

  .hero-showcase::before {
    top: 4%;
    right: 2%;
    width: 88%;
  }

  .dual-monitor-hero-card {
    top: 20px;
    width: 98%;
    box-shadow: 7px 7px 0 var(--ink);
  }

  .dual-monitor-hero-card figcaption {
    right: 8px;
    bottom: 8px;
    font-size: 10px;
  }

  .dual-monitor-hero-card figcaption span,
  .dual-monitor-hero-card figcaption i {
    padding: 6px 8px;
  }

  .speed-tag {
    top: auto;
    bottom: 5%;
    left: -1%;
    width: 78px;
    height: 78px;
    transform: rotate(-9deg);
  }

  .speed-tag strong {
    font-size: 25px;
  }

  .speed-tag span {
    display: none;
  }

  .products-section {
    padding-top: 100px;
    padding-bottom: 95px;
  }

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

  .product-card {
    min-height: 270px;
  }

  .principles-section {
    padding-inline: 16px;
  }

  .principles-grid {
    padding: 60px 25px;
    box-shadow: 8px 8px 0 var(--orange);
  }

  .support-cta {
    margin: 85px 16px;
    padding: 50px 27px;
  }

  .support-cta::after {
    font-size: 100px;
  }

  .catalog-toolbar,
  .catalog-card,
  .release-card,
  .feedback-form-card {
    box-shadow: 5px 5px 0 var(--ink);
  }

  .tool-facts {
    box-shadow: 5px 5px 0 var(--orange);
  }
}

@media (prefers-reduced-motion: reduce) {
  .tool-ticker div { animation: none; }
  .showcase-slide.is-entering img { animation: none; }
  .showcase-dots button span { transition: none; }
  .showcase-progress i { animation: none !important; }
}
