@font-face {
  font-family: "Helvetica MF";
  src: url("./assets/fonts/helvetica.ttf") format("truetype");
  font-weight: 400;
}

@font-face {
  font-family: "Helvetica MF";
  src: url("./assets/fonts/helvetica-bold.ttf") format("truetype");
  font-weight: 800;
}

@font-face {
  font-family: "Akzidenz MF";
  src: url("./assets/fonts/akzidenz-grotesk-bold.ttf") format("truetype");
  font-weight: 900;
}

@font-face {
  font-family: "Helvetica Compressed MF";
  src: url("./assets/fonts/helvetica-compressed.otf") format("opentype");
  font-weight: 900;
}

:root {
  color: #050505;
  background: #f6f6f0;
  font-family: "Helvetica MF", Arial, sans-serif;
  font-synthesis: none;
  text-rendering: geometricPrecision;
  --black: #050505;
  --paper: #f6f6f0;
  --white: #ffffff;
  --green: #006b63;
  --teal: #00a38f;
  --red: #a22b17;
  --gray: #c7cbc6;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--black);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    var(--paper);
  background-size: 42px 42px;
  -webkit-font-smoothing: antialiased;
}

body,
button,
input {
  font: inherit;
}

a {
  color: inherit;
}

.siteHeader {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 48px);
  border-bottom: 2px solid var(--black);
  background: rgba(246, 246, 240, 0.96);
}

.brandLink,
.siteHeader nav,
.heroActions,
.supportLinks,
.appMeta,
.siteFooter {
  display: flex;
  align-items: center;
}

.brandLink {
  gap: 10px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 18px;
  font-weight: 900;
  text-decoration: none;
}

.brandLink img {
  width: 34px;
  height: 34px;
  border: 2px solid var(--black);
  object-fit: cover;
}

.siteHeader nav {
  gap: clamp(12px, 2vw, 26px);
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 13px;
  text-transform: uppercase;
}

.siteHeader nav a,
.textLink {
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.heroSection,
.productHero,
.band,
.appsSection,
.productFeature,
.detailGridSection,
.faqSection,
.roadmapSection,
.supportSection,
.legalPage,
.articlePage {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
}

.heroSection {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 62px 0 72px;
  border-bottom: 2px solid var(--black);
}

.heroCatch {
  grid-column: 1 / -1;
  grid-row: 1;
  align-self: start;
  justify-self: center;
  width: min(100%, 820px);
  padding-top: 18px;
  text-align: center;
  z-index: 3;
}

.productHero {
  min-height: calc(100vh - 78px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.74fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: 62px 0 72px;
  border-bottom: 2px solid var(--black);
}

.eyebrow {
  margin: 0 0 12px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  text-transform: uppercase;
}

.catchLine {
  width: 100%;
  margin: 0 0 18px;
  color: var(--red);
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: clamp(22px, 2.5vw, 36px);
  line-height: 0.96;
  text-align: center;
  text-transform: uppercase;
}

.catchLine span {
  display: block;
  white-space: nowrap;
}

.heroCatch > .eyebrow {
  text-align: center;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 760px;
  margin-bottom: 22px;
  font-family: "Helvetica Compressed MF", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(58px, 10vw, 132px);
  line-height: 0.78;
}

h2 {
  max-width: 780px;
  margin-bottom: 0;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: clamp(38px, 5vw, 72px);
  line-height: 0.88;
}

h3 {
  margin-bottom: 12px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 34px;
  line-height: 0.94;
}

.heroLead,
.productCopy > p,
.supportPanel p,
.legalPage p {
  max-width: 620px;
  margin-bottom: 24px;
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.32;
}

.heroActions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 2px solid var(--black);
  padding: 12px 18px 10px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 14px;
  font-weight: 900;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 7px 7px 0 rgba(5, 5, 5, 0.16);
}

.button.primary {
  background: var(--black);
  color: var(--white);
}

.button.secondary {
  background: var(--white);
  color: var(--black);
}

.heroObject {
  position: relative;
  min-height: 440px;
  display: grid;
  place-items: center;
  overflow: hidden;
}

.posterType {
  position: absolute;
  left: 0;
  top: 10px;
  z-index: 0;
  color: rgba(5, 5, 5, 0.08);
  font-family: "Helvetica Compressed MF", "Arial Narrow", Arial, sans-serif;
  font-size: clamp(100px, 17vw, 190px);
  line-height: 0.72;
  pointer-events: none;
}

.consoleFrame,
.productConsole,
.appCard,
.productFeature,
.supportPanel,
.legalPage section {
  border: 2px solid var(--black);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 12px 12px 0 rgba(5, 5, 5, 0.11);
}

.productConsole {
  min-height: 360px;
}

.metricBoard {
  display: grid;
  gap: 16px;
  padding: 22px;
}

.metricBoard div {
  min-height: 76px;
  display: grid;
  align-content: center;
  border: 2px solid var(--black);
  padding: 14px;
  background: var(--paper);
}

.metricBoard span {
  margin-bottom: 6px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.metricBoard strong {
  color: var(--green);
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: clamp(28px, 4vw, 44px);
  line-height: 0.88;
  text-transform: uppercase;
}

.consoleFrame {
  position: relative;
  z-index: 1;
  width: min(100%, 440px);
  min-height: 300px;
}

.consoleTop {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 54px;
  padding: 14px 16px;
  border-bottom: 2px solid var(--black);
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
}

.consoleScreen {
  display: grid;
  gap: 14px;
  padding: 20px;
}

.screenRow {
  display: grid;
  grid-template-columns: 14px 1fr auto;
  gap: 12px;
  align-items: center;
  min-height: 52px;
  border: 2px solid var(--black);
  padding: 10px;
  background: var(--paper);
}

.screenRow span {
  width: 12px;
  height: 12px;
  background: var(--black);
}

.screenRow.active span {
  background: var(--teal);
}

.screenRow.warn span {
  background: var(--red);
}

.screenRow strong,
.screenRow em {
  min-width: 0;
}

.screenRow em {
  font-style: normal;
  font-size: 13px;
}

.band,
.appsSection,
.roadmapSection,
.supportSection {
  padding: 74px 0;
  border-bottom: 2px solid var(--black);
}

.introBand,
.trustBand,
.supportSection {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1fr);
  gap: clamp(24px, 5vw, 58px);
}

.principles,
.compatGrid,
.featureList {
  display: grid;
  gap: 14px;
}

.principles,
.compatGrid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.principles article,
.compatGrid article,
.featureList article {
  border-top: 2px solid var(--black);
  padding-top: 14px;
}

.principles strong,
.compatGrid strong,
.featureList strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 18px;
}

.principles p,
.compatGrid p,
.featureList p,
.appCard p,
.roadmapList p,
.copyStack p,
.detailGrid p,
.faqList p,
.guideGrid span,
.articlePage p {
  margin-bottom: 0;
  line-height: 1.38;
}

.copyStack {
  display: grid;
  gap: 18px;
  font-size: clamp(18px, 2vw, 22px);
}

.sectionHeader {
  display: grid;
  justify-items: center;
  gap: 14px;
  margin-bottom: 34px;
  text-align: center;
}

.sectionHeader .eyebrow {
  margin-bottom: 0;
}

.sectionHeader h2 {
  max-width: none;
  white-space: nowrap;
}

.appGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 22px;
}

.catalogGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}

.appCard {
  display: block;
  min-height: 330px;
  padding: 24px;
  color: inherit;
  text-decoration: none;
  transition: transform 140ms ease, box-shadow 140ms ease;
}

.appCard:hover {
  transform: translate(-3px, -3px);
  box-shadow: 15px 15px 0 rgba(5, 5, 5, 0.16);
}

.appCard:focus-visible {
  outline: 3px solid var(--black);
  outline-offset: 5px;
}

.appVisual {
  position: relative;
  min-height: 138px;
  margin: 0 0 24px;
  border: 2px solid var(--black);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 5, 5, 0.045) 1px, transparent 1px),
    var(--paper);
  background-size: 18px 18px;
  overflow: hidden;
}

.appVisual::after {
  content: "";
  position: absolute;
  right: 12px;
  top: 12px;
  width: 18px;
  height: 18px;
  background: var(--black);
}

.appCard.featured {
  background: var(--white);
}

.appCard.muted {
  background: #eceee8;
}

.appMeta {
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 18px;
}

.dialFace {
  position: absolute;
  left: 24px;
  top: 22px;
  width: 88px;
  height: 88px;
  display: grid;
  place-items: center;
  border: 8px solid var(--black);
  border-radius: 50%;
  background: var(--white);
  font-family: "Helvetica Compressed MF", "Arial Narrow", Arial, sans-serif;
  font-size: 46px;
}

.powerGlyph {
  position: absolute;
  right: 36px;
  bottom: 24px;
  width: 68px;
  height: 68px;
  border: 9px solid var(--black);
  border-top-color: transparent;
  border-radius: 50%;
}

.powerGlyph::before {
  content: "";
  position: absolute;
  left: 20px;
  top: -20px;
  width: 10px;
  height: 46px;
  background: var(--black);
}

.miniMonitor {
  position: absolute;
  left: 28px;
  top: 24px;
  width: 134px;
  height: 76px;
  display: grid;
  place-items: center;
  border: 9px solid var(--black);
  background: #102220;
  color: var(--teal);
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 22px;
}

.miniStand {
  position: absolute;
  left: 78px;
  top: 100px;
  width: 36px;
  height: 28px;
  background: var(--black);
}

.miniStand::after {
  content: "";
  position: absolute;
  left: -34px;
  bottom: -10px;
  width: 104px;
  height: 12px;
  background: var(--black);
}

.signalBars {
  position: absolute;
  right: 38px;
  bottom: 28px;
  display: flex;
  align-items: end;
  gap: 7px;
}

.signalBars i {
  width: 12px;
  border: 2px solid var(--black);
  background: var(--teal);
}

.signalBars i:nth-child(1) { height: 24px; }
.signalBars i:nth-child(2) { height: 42px; }
.signalBars i:nth-child(3) { height: 62px; }

.windowsUpdateImage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 2px solid var(--black);
  object-fit: cover;
}

.killwuVisual .restoreKey {
  right: 12px;
  bottom: 12px;
  width: auto;
  height: auto;
  padding: 9px 11px 7px;
  overflow: visible;
  color: var(--black);
  background: var(--white);
}

.updateBlockX {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 110px;
  height: 110px;
  transform: translate(-50%, -50%);
  z-index: 2;
}

.updateBlockX::before,
.updateBlockX::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 12px;
  height: 110px;
  background: var(--red);
  box-shadow: 0 0 0 2px var(--paper);
  transform-origin: center;
}

.updateBlockX::before {
  transform: translateX(-50%) rotate(45deg);
}

.updateBlockX::after {
  transform: translateX(-50%) rotate(-45deg);
}

.restoreKey {
  position: absolute;
  right: 22px;
  bottom: 24px;
  border: 2px solid var(--black);
  padding: 9px 11px 7px;
  background: var(--paper);
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 13px;
}

.docSheet {
  position: absolute;
  left: 34px;
  top: 18px;
  width: 104px;
  height: 108px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 22px 14px;
  box-shadow: 14px 10px 0 rgba(5, 5, 5, 0.13);
}

.docSheet b {
  display: block;
  height: 9px;
  margin-bottom: 12px;
  background: var(--black);
}

.docSheet b:nth-child(2) {
  width: 70%;
}

.docSheet b:nth-child(3) {
  width: 45%;
  background: var(--gray);
}

.scanBand {
  position: absolute;
  right: 28px;
  top: 48px;
  border: 2px solid var(--black);
  padding: 12px 14px 9px;
  background: var(--teal);
  color: var(--black);
  font-family: "Helvetica Compressed MF", "Arial Narrow", Arial, sans-serif;
  font-size: 42px;
  line-height: 0.85;
}

.printerBody {
  position: absolute;
  left: 30px;
  bottom: 26px;
  width: 148px;
  height: 68px;
  border: 2px solid var(--black);
  background: var(--white);
}

.printerBody::before {
  content: "";
  position: absolute;
  left: 26px;
  top: 18px;
  width: 88px;
  height: 12px;
  background: var(--black);
}

.paperStack {
  position: absolute;
  left: 54px;
  top: 16px;
  width: 100px;
  height: 60px;
}

.paperStack span {
  position: absolute;
  width: 82px;
  height: 42px;
  border: 2px solid var(--black);
  background: var(--paper);
}

.paperStack span:nth-child(1) { left: 0; top: 0; }
.paperStack span:nth-child(2) { left: 12px; top: 10px; }
.paperStack span:nth-child(3) { left: 24px; top: 20px; }

.batchTag {
  position: absolute;
  right: 22px;
  bottom: 24px;
  min-width: 88px;
  border: 2px solid var(--black);
  padding: 9px 10px 7px;
  background: var(--white);
  color: var(--black);
  text-align: center;
}

.batchTag strong {
  display: block;
  color: var(--red);
  font-family: "Helvetica Compressed MF", "Arial Narrow", Arial, sans-serif;
  font-size: 48px;
  line-height: 0.8;
}

.batchTag span {
  display: block;
  margin-top: 6px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.receiptMini {
  position: absolute;
  left: 34px;
  top: 18px;
  width: 102px;
  height: 112px;
  border: 2px solid var(--black);
  background: var(--white);
  padding: 14px 12px;
}

.receiptMini b {
  display: block;
  margin-bottom: 16px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
}

.receiptMini span {
  display: block;
  height: 8px;
  margin-bottom: 11px;
  background: var(--black);
}

.receiptMini span:nth-child(4) {
  width: 62%;
  background: var(--gray);
}

.waBubble {
  position: absolute;
  right: 30px;
  top: 36px;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border: 0;
  background: transparent;
}

.waBubble img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.appMeta span,
.tagList li {
  border: 2px solid var(--black);
  padding: 7px 9px 5px;
  background: var(--white);
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 12px;
  text-transform: uppercase;
}

.tagList {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
  padding: 0;
  list-style: none;
}

.textLink {
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 14px;
  text-transform: uppercase;
}

.textLink.inert {
  text-decoration: none;
}

.productFeature {
  display: grid;
  grid-template-columns: minmax(320px, 0.82fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 62px);
  align-items: center;
  margin-top: 74px;
  margin-bottom: 74px;
  padding: clamp(24px, 4vw, 42px);
}

.detailGridSection,
.faqSection {
  padding: 74px 0;
  border-bottom: 2px solid var(--black);
}

.detailGrid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.detailGrid article {
  min-height: 260px;
  border: 2px solid var(--black);
  padding: 18px;
  background: var(--white);
  box-shadow: 10px 10px 0 rgba(5, 5, 5, 0.1);
}

.detailGrid span {
  display: block;
  margin-bottom: 48px;
  color: var(--red);
  font-family: "Helvetica Compressed MF", "Arial Narrow", Arial, sans-serif;
  font-size: 58px;
  line-height: 0.8;
}

.detailGrid strong {
  display: block;
  margin-bottom: 10px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 22px;
  line-height: 0.96;
}

.faqList {
  display: grid;
  gap: 12px;
}

.faqList details {
  border: 2px solid var(--black);
  background: var(--white);
  box-shadow: 8px 8px 0 rgba(5, 5, 5, 0.1);
}

.faqList summary {
  cursor: pointer;
  padding: 18px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 20px;
}

.faqList p {
  padding: 0 18px 18px;
}

.productVisual {
  min-height: 390px;
  display: grid;
  place-items: center;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(5, 5, 5, 0.04) 1px, transparent 1px),
    #f0f1ed;
  background-size: 28px 28px;
}

.monitorArt {
  width: min(82%, 360px);
}

.monitorBezel {
  position: relative;
  min-height: 210px;
  border: 14px solid var(--black);
  background: #111f1d;
  color: var(--white);
  overflow: hidden;
}

.monitorBezel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(0, 163, 143, 0.5), transparent 58%);
}

.scanLine {
  position: absolute;
  left: 0;
  right: 0;
  top: 22%;
  height: 3px;
  background: rgba(255, 255, 255, 0.72);
}

.statusText {
  position: relative;
  z-index: 1;
  display: grid;
  align-content: end;
  min-height: 182px;
  padding: 18px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
}

.statusText span {
  color: var(--teal);
  font-size: 12px;
}

.statusText strong {
  font-size: clamp(28px, 5vw, 46px);
  line-height: 0.86;
}

.monitorNeck {
  width: 58px;
  height: 58px;
  margin: 0 auto;
  background: var(--black);
}

.monitorBase {
  width: 190px;
  height: 26px;
  margin: 0 auto;
  background: var(--black);
}

.featureList {
  margin: 26px 0;
}

.roadmapList {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.roadmapList li {
  border-left: 2px solid var(--black);
  padding: 0 0 0 16px;
}

.roadmapList span {
  display: block;
  margin-bottom: 30px;
  color: var(--red);
  font-family: "Helvetica Compressed MF", "Arial Narrow", Arial, sans-serif;
  font-size: 58px;
  line-height: 0.8;
}

.roadmapList strong {
  display: block;
  margin-bottom: 8px;
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 18px;
}

.supportPanel {
  padding: 24px;
}

.supportPanel p {
  font-size: 20px;
}

.supportLinks {
  flex-wrap: wrap;
  gap: 14px;
}

.guideGrid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.guideGrid a {
  min-height: 180px;
  display: grid;
  align-content: space-between;
  gap: 24px;
  border: 2px solid var(--black);
  padding: 18px;
  background: var(--white);
  color: var(--black);
  text-decoration: none;
  box-shadow: 10px 10px 0 rgba(5, 5, 5, 0.1);
}

.guideGrid strong {
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  font-size: 24px;
  line-height: 0.96;
  text-transform: uppercase;
}

.guideGrid span {
  font-size: 16px;
}

.siteFooter {
  justify-content: space-between;
  gap: 20px;
  min-height: 86px;
  padding: 18px clamp(18px, 4vw, 48px);
  border-top: 2px solid var(--black);
  font-family: "Akzidenz MF", "Helvetica MF", Arial, sans-serif;
  text-transform: uppercase;
}

.legalPage,
.articlePage {
  padding: 58px 0 82px;
}

.legalPage h1,
.articlePage h1 {
  max-width: 880px;
}

.legalPage section,
.articlePage section {
  margin-top: 18px;
  padding: 22px;
}

.legalPage section {
  border: 2px solid var(--black);
  background: rgba(255, 255, 255, 0.93);
  box-shadow: 12px 12px 0 rgba(5, 5, 5, 0.11);
}

.articlePage section {
  border-top: 2px solid var(--black);
}

.legalPage h2,
.articlePage h2 {
  margin-bottom: 12px;
  font-size: clamp(30px, 4vw, 48px);
}

.legalPage p,
.articlePage p {
  margin-bottom: 0;
  font-size: 18px;
}

.articlePage .button {
  margin-top: 18px;
}

@media (max-width: 980px) {
  .heroSection,
  .productHero,
  .introBand,
  .trustBand,
  .productFeature,
  .supportSection {
    grid-template-columns: 1fr;
  }

  .heroSection {
    min-height: 0;
  }

  .heroObject {
    min-height: 360px;
  }

  .principles,
  .compatGrid,
  .detailGrid,
  .guideGrid,
  .roadmapList {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

@media (max-width: 680px) {
  .siteHeader {
    position: static;
    align-items: flex-start;
    gap: 14px;
    flex-direction: column;
  }

  .siteHeader nav {
    width: 100%;
    justify-content: space-between;
  }

  .heroSection,
  .productHero,
  .band,
  .appsSection,
  .productFeature,
  .detailGridSection,
  .faqSection,
  .roadmapSection,
  .supportSection,
  .legalPage,
  .articlePage {
    width: min(100% - 24px, 1180px);
  }

  .principles,
  .compatGrid,
  .detailGrid,
  .guideGrid,
  .catalogGrid,
  .roadmapList {
    grid-template-columns: 1fr;
  }

  .screenRow {
    grid-template-columns: 12px 1fr;
  }

  .screenRow em {
    grid-column: 2;
  }

  .productFeature {
    padding: 18px;
  }

  .productVisual {
    min-height: 300px;
  }

  .monitorBezel {
    min-height: 176px;
  }

  .statusText {
    min-height: 148px;
  }

  .siteFooter {
    align-items: flex-start;
    flex-direction: column;
  }

  .sectionHeader h2 {
    white-space: normal;
  }

  .catchLine span {
    white-space: normal;
  }
}
