:root {
  color-scheme: dark;
  --signal: #2f7cff;
  --signal-bright: #54b6ff;
  --signal-soft: #bfe7ff;
  --coral: #ff4d67;
  --ink: #f5f7fb;
  --muted: #a2aabc;
  --faint: #697386;
  --line: #242b38;
  --line-strong: #354052;
  --night: #07090e;
  --night-2: #0b0e15;
  --night-3: #111722;
  --paper: #f3f5f8;
  --paper-ink: #111722;
  --paper-muted: #566173;
  --header-height: 64px;
  color: var(--ink);
  background: var(--night);
  font-family: -apple-system, BlinkMacSystemFont, "SF Pro Display", "SF Pro Text", "PingFang SC", "Helvetica Neue", Arial, sans-serif;
  font-synthesis: none;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 24px);
}

body {
  min-width: 320px;
  margin: 0;
  overflow-x: hidden;
  background: var(--night);
  line-height: 1.6;
}

body.navOpen {
  overflow: hidden;
}

button,
a {
  font: inherit;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.skipLink {
  position: fixed;
  z-index: 100;
  top: 8px;
  left: 12px;
  padding: 8px 12px;
  transform: translateY(-140%);
  background: var(--ink);
  color: var(--night);
}

.skipLink:focus {
  transform: translateY(0);
}

.siteHeader {
  position: sticky;
  z-index: 30;
  top: 0;
  height: var(--header-height);
  border-bottom: 1px solid rgb(255 255 255 / 10%);
  background: rgb(7 9 14 / 92%);
  backdrop-filter: blur(18px) saturate(140%);
}

.navInner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
}

.brand img {
  width: 32px;
  height: 32px;
  border-radius: 7px;
}

.siteNav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: #aeb5c3;
  font-size: 13px;
  font-weight: 650;
}

.siteNav a {
  transition: color 150ms ease;
}

.siteNav a:hover,
.siteNav a:focus-visible {
  color: #fff;
}

.siteNav .navAction {
  min-height: 38px;
  padding: 8px 18px;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: #fff;
  clip-path: polygon(0 0, calc(100% - 9px) 0, 100% 9px, 100% 100%, 9px 100%, 0 calc(100% - 9px));
}

.siteNav .navAction:hover,
.siteNav .navAction:focus-visible {
  background: var(--signal-bright);
  color: #07101e;
}

.navToggle {
  display: none;
  place-items: center;
  width: 40px;
  height: 40px;
  padding: 8px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.navToggle span {
  display: block;
  width: 21px;
  height: 2px;
  margin: 2px 0;
  background: #fff;
  transition: transform 150ms ease, opacity 150ms ease;
}

.navToggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.navToggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.navToggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.hero {
  position: relative;
  height: calc(100svh - 84px);
  min-height: 650px;
  max-height: 820px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
  background: var(--night);
}

.hero::before {
  position: absolute;
  inset: 0;
  background: url("../design/qa-review.png") center / cover no-repeat;
  content: "";
  opacity: 0.055;
  filter: grayscale(1) contrast(1.25);
}

.hero::after {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 1px);
  width: 1px;
  background: rgb(255 255 255 / 7%);
  content: "";
}

.heroInner {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 48px));
  height: 100%;
  margin: 0 auto;
  padding-top: 92px;
}

.heroSystemLine,
.heroSideLabel,
.eyebrow,
.capabilityLabel,
.workflowCopy > span,
.privacyFacts span {
  font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
  text-transform: uppercase;
}

.heroSystemLine {
  position: absolute;
  top: 24px;
  right: 0;
  margin: 0;
  color: #606a7d;
  font-size: 10px;
  letter-spacing: 0;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--signal-bright);
  font-size: 11px;
  font-weight: 700;
}

.eyebrow::before {
  display: inline-block;
  width: 28px;
  height: 2px;
  margin-right: 10px;
  vertical-align: middle;
  background: var(--signal);
  content: "";
}

.hero h1 {
  position: relative;
  z-index: 3;
  width: fit-content;
  margin: 0;
  color: #f4f2ed;
  font-size: 126px;
  font-weight: 850;
  line-height: 0.84;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1::after {
  color: var(--signal);
  content: ".";
}

.heroStatement {
  position: relative;
  z-index: 3;
  max-width: 620px;
  margin: 31px 0 0;
  color: #fff;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.2;
}

.heroCopy {
  position: relative;
  z-index: 3;
  max-width: 570px;
  margin: 21px 0 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.85;
}

.heroActions {
  position: relative;
  z-index: 4;
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.primaryAction,
.secondaryAction {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 750;
  transition: transform 150ms ease, border-color 150ms ease, background 150ms ease;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.primaryAction {
  border: 1px solid var(--signal);
  background: var(--signal);
  color: #fff;
}

.secondaryAction {
  border: 1px solid #727b8c;
  background: rgb(7 9 14 / 76%);
  color: #fff;
}

.primaryAction:hover,
.secondaryAction:hover {
  transform: translateY(-2px);
}

.primaryAction:hover {
  background: var(--signal-bright);
  color: #07101e;
}

.secondaryAction:hover {
  border-color: #fff;
}

.heroProduct {
  position: absolute;
  z-index: 2;
  top: 112px;
  right: -96px;
  width: 690px;
  height: 520px;
  opacity: 0.94;
}

.heroReview {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 620px;
  overflow: hidden;
  border: 1px solid #39465a;
  border-radius: 6px;
  background: #edf0f4;
  box-shadow: 0 40px 100px rgb(0 0 0 / 48%);
  transform: rotate(-1.5deg);
}

.heroReview::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgb(255 255 255 / 14%);
  content: "";
  pointer-events: none;
}

.heroCaption {
  position: absolute;
  z-index: 3;
  top: 46px;
  right: 40px;
  width: 590px;
  overflow: hidden;
  border: 1px solid rgb(84 182 255 / 46%);
  border-radius: 6px;
  background: #050608;
  box-shadow: 0 22px 60px rgb(0 0 0 / 58%);
  transform: rotate(1deg);
}

.heroSideLabel {
  position: absolute;
  right: -120px;
  bottom: 165px;
  margin: 0;
  transform: rotate(90deg);
  color: #536075;
  font-size: 9px;
}

.proofBand {
  overflow: hidden;
  border-bottom: 1px solid #4b9eff;
  background: var(--signal);
  color: #fff;
}

.proofInner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.proofInner div {
  display: grid;
  gap: 1px;
  min-height: 84px;
  padding: 18px 25px;
  border-left: 1px solid rgb(255 255 255 / 22%);
}

.proofInner div:last-child {
  border-right: 1px solid rgb(255 255 255 / 22%);
}

.proofInner strong {
  font-size: 14px;
}

.proofInner span {
  color: rgb(255 255 255 / 66%);
  font: 600 9px/1.5 "SFMono-Regular", Consolas, monospace;
  text-transform: uppercase;
}

.section {
  padding: 120px 0;
}

.sectionInner {
  width: min(1120px, calc(100% - 48px));
  margin: 0 auto;
}

.introSection {
  position: relative;
  border-bottom: 1px solid var(--line);
  background: var(--night-2);
}

.introSection::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: calc(50% - 560px);
  width: 1px;
  background: var(--line);
  content: "";
}

.introGrid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 80px;
  align-items: end;
}

h2,
h3,
p {
  overflow-wrap: break-word;
}

h2,
h3 {
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: 46px;
  line-height: 1.22;
}

.sectionLead {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.9;
}

.capabilityGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 76px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.capability {
  position: relative;
  min-height: 350px;
  padding: 34px 32px 40px;
  background: #0a0d13;
  transition: background 160ms ease;
}

.capability:hover {
  background: var(--night-3);
}

.capability + .capability {
  border-left: 1px solid var(--line-strong);
}

.capabilityIndex {
  position: absolute;
  top: 34px;
  right: 30px;
  color: #4e5a6d;
  font: 600 11px/1.4 "SFMono-Regular", Consolas, monospace;
}

.capabilityLabel,
.workflowCopy > span,
.privacyFacts span {
  margin: 0;
  color: var(--signal-bright);
  font-size: 10px;
  font-weight: 700;
}

.capability h3 {
  margin: 96px 0 17px;
  font-size: 25px;
  line-height: 1.38;
}

.capability p:last-child {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.workflowSection {
  background: var(--paper);
  color: var(--paper-ink);
}

.workflowSection .eyebrow,
.workflowCopy > span {
  color: #1767df;
}

.sectionHeading {
  max-width: 700px;
}

.sectionHeading > p:last-child {
  margin: 18px 0 0;
  color: var(--paper-muted);
  font-size: 17px;
}

.workflowRow {
  display: grid;
  grid-template-columns: minmax(300px, 0.78fr) minmax(480px, 1.22fr);
  gap: 74px;
  align-items: center;
  min-height: 610px;
  padding: 86px 0;
  border-bottom: 1px solid #cfd5de;
}

.workflowRow:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.workflowRowReverse {
  grid-template-columns: minmax(480px, 1.22fr) minmax(300px, 0.78fr);
}

.workflowRowReverse .workflowCopy {
  grid-column: 2;
}

.workflowRowReverse figure {
  grid-row: 1;
  grid-column: 1;
}

.workflowCopy h3 {
  margin: 18px 0;
  font-size: 31px;
  line-height: 1.36;
}

.workflowCopy > p {
  margin: 0;
  color: var(--paper-muted);
  font-size: 15px;
  line-height: 1.9;
}

.workflowCopy ul {
  display: grid;
  gap: 9px;
  margin: 24px 0 0;
  padding: 0;
  color: #394557;
  font-size: 13px;
  list-style: none;
}

.workflowCopy li {
  position: relative;
  padding-left: 18px;
}

.workflowCopy li::before {
  position: absolute;
  top: 9px;
  left: 0;
  width: 6px;
  height: 6px;
  background: var(--signal);
  content: "";
  transform: rotate(45deg);
}

.productFrame,
.liveFrame {
  margin: 0;
}

.productFrame {
  overflow: hidden;
  border: 1px solid #b6beca;
  border-radius: 6px;
  background: #eef2f7;
  box-shadow: 18px 18px 0 #dfe4eb;
}

.setupFrame {
  width: min(470px, 100%);
  justify-self: center;
}

.liveFrame {
  padding: 82px 36px;
  overflow: hidden;
  border: 1px solid #263246;
  border-radius: 6px;
  background: #090c12;
  box-shadow: 18px 18px 0 #dfe4eb;
}

.liveFrame img {
  width: 100%;
  border: 1px solid rgb(84 182 255 / 38%);
  border-radius: 6px;
  box-shadow: 0 18px 42px rgb(0 0 0 / 46%);
}

.privacySection {
  position: relative;
  border-top: 1px solid #255eac;
  border-bottom: 1px solid #255eac;
  background: #0a45a0;
  color: #fff;
}

.privacySection::after {
  position: absolute;
  top: 0;
  right: 7%;
  bottom: 0;
  width: 1px;
  background: rgb(255 255 255 / 16%);
  content: "";
}

.privacySection .eyebrow {
  color: var(--signal-soft);
}

.privacySection .eyebrow::before {
  background: #fff;
}

.privacyGrid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(520px, 1.1fr);
  gap: 90px;
}

.privacyIntro > p:last-child {
  margin: 24px 0 0;
  color: rgb(255 255 255 / 76%);
  font-size: 16px;
  line-height: 1.9;
}

.privacyFacts {
  border-top: 1px solid rgb(255 255 255 / 25%);
}

.privacyFacts div {
  display: grid;
  grid-template-columns: 92px 170px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 23px 0;
  border-bottom: 1px solid rgb(255 255 255 / 25%);
}

.privacyFacts span {
  color: var(--signal-soft);
}

.privacyFacts strong {
  font-size: 15px;
}

.privacyFacts p {
  margin: 0;
  color: rgb(255 255 255 / 70%);
  font-size: 13px;
  line-height: 1.75;
}

.requirementsSection {
  border-bottom: 1px solid var(--line);
  background: var(--night-2);
}

.requirementsHeader {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 1.08fr);
  gap: 80px;
  align-items: end;
}

.requirementsHeader > p {
  margin: 0 0 4px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.9;
}

.modelFootprint {
  display: grid;
  grid-template-columns: 170px 180px 1fr;
  gap: 24px;
  align-items: center;
  margin-top: 66px;
  padding: 24px 0;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.modelFootprint span {
  color: var(--signal-bright);
  font: 700 10px/1.5 "SFMono-Regular", Consolas, monospace;
}

.modelFootprint strong {
  font-size: 29px;
}

.modelFootprint p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.requirementGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 36px;
  border: 1px solid var(--line-strong);
}

.requirementCard {
  position: relative;
  min-height: 430px;
  padding: 30px;
  background: #090c12;
}

.requirementCard + .requirementCard {
  border-left: 1px solid var(--line-strong);
}

.requirementCard.isRecommended {
  background: #0c326b;
}

.requirementCard.isRecommended::before {
  position: absolute;
  top: -1px;
  right: -1px;
  left: -1px;
  height: 3px;
  background: var(--signal-bright);
  content: "";
}

.requirementCard.isCaution {
  background: #101219;
}

.requirementCard > span {
  color: var(--signal-bright);
  font: 700 9px/1.5 "SFMono-Regular", Consolas, monospace;
}

.requirementCard.isCaution > span {
  color: #ff8b9d;
}

.requirementCard h3 {
  min-height: 76px;
  margin: 52px 0 24px;
  font-size: 25px;
  line-height: 1.35;
}

.requirementCard dl {
  margin: 0;
  border-top: 1px solid rgb(255 255 255 / 14%);
}

.requirementCard dl div {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 16px;
  padding: 11px 0;
  border-bottom: 1px solid rgb(255 255 255 / 14%);
}

.requirementCard dt {
  color: var(--muted);
  font-size: 12px;
}

.requirementCard dd {
  margin: 0;
  font-size: 12px;
  font-weight: 750;
  text-align: right;
}

.requirementCard > p {
  margin: 24px 0 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.requirementCard.isRecommended > p,
.requirementCard.isRecommended dt {
  color: rgb(255 255 255 / 70%);
}

.requirementNote {
  margin: 24px 0 0;
  color: var(--faint);
  font-size: 12px;
  line-height: 1.75;
}

.downloadSection {
  position: relative;
  overflow: hidden;
  padding: 126px 24px;
  border-bottom: 1px solid var(--line);
  background: var(--night-2);
  text-align: center;
}

.downloadSection::before {
  position: absolute;
  top: 50%;
  left: 50%;
  color: rgb(255 255 255 / 2.5%);
  content: "NOVME";
  font-size: 250px;
  font-weight: 900;
  line-height: 1;
  transform: translate(-50%, -50%);
}

.downloadInner {
  position: relative;
  z-index: 1;
  max-width: 760px;
  margin: 0 auto;
}

.downloadMark {
  width: 70px;
  height: 70px;
  margin: 0 auto 24px;
  border-radius: 14px;
  box-shadow: 0 0 0 1px rgb(255 255 255 / 16%);
}

.downloadInner h2 {
  font-size: 48px;
}

.downloadInner > p:not(.eyebrow) {
  max-width: 650px;
  margin: 20px auto 0;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.85;
}

.downloadButton {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 220px;
  min-height: 50px;
  margin-top: 31px;
  padding: 0 22px;
  border: 1px solid var(--signal);
  background: var(--signal);
  color: #fff;
  font-weight: 750;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.downloadButton:hover {
  border-color: var(--signal-bright);
  background: var(--signal-bright);
  transform: translateY(-2px);
}

.downloadButton:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 4px;
}

.statusDot {
  width: 8px;
  height: 8px;
  background: #fff;
  transform: rotate(45deg);
}

.downloadInner > p.downloadMeta {
  margin-top: 14px;
  color: rgb(255 255 255 / 62%);
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0;
}

.docsLink {
  display: block;
  width: fit-content;
  margin: 17px auto 0;
  color: var(--signal-bright);
  font-size: 13px;
  font-weight: 700;
}

.docsLink:hover {
  color: #fff;
}

.siteFooter {
  border-top: 1px solid rgb(255 255 255 / 7%);
  background: #05070b;
}

.footerInner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 44px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 128px;
  margin: 0 auto;
}

.footerBrand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.footerBrand img {
  width: 38px;
  height: 38px;
  border-radius: 8px;
}

.footerBrand div {
  display: grid;
  gap: 1px;
}

.footerBrand strong {
  font-size: 16px;
}

.footerBrand span,
.footerInner > p {
  color: var(--faint);
  font-size: 11px;
}

.footerInner nav {
  display: flex;
  gap: 22px;
  color: #8992a3;
  font-size: 12px;
}

.footerInner nav a:hover {
  color: #fff;
}

.footerLegal {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0 24px;
  border-top: 1px solid var(--line);
  color: var(--faint);
  font-size: 11px;
}

.footerLegal a:hover {
  color: #fff;
}

@media (max-width: 1100px) {
  .hero h1 {
    font-size: 104px;
  }

  .heroStatement {
    font-size: 34px;
  }

  .heroProduct {
    right: -180px;
    opacity: 0.68;
  }

  .heroCopy {
    max-width: 530px;
  }

  .introGrid,
  .privacyGrid,
  .requirementsHeader {
    grid-template-columns: 1fr;
    gap: 34px;
  }

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

  .capability {
    min-height: 250px;
  }

  .capability + .capability {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }

  .capability h3 {
    margin-top: 60px;
  }

  .privacyFacts div {
    grid-template-columns: 92px 180px 1fr;
  }

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

  .requirementCard {
    min-height: 0;
  }

  .requirementCard + .requirementCard {
    border-top: 1px solid var(--line-strong);
    border-left: 0;
  }
}

@media (max-width: 840px) {
  :root {
    --header-height: 60px;
  }

  .navInner,
  .heroInner,
  .proofInner,
  .sectionInner,
  .footerInner {
    width: min(100% - 32px, 1180px);
  }

  .navToggle {
    display: grid;
  }

  .siteNav {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 14px 16px 20px;
    transform: translateY(-115%);
    border-bottom: 1px solid var(--line-strong);
    background: #090c12;
    box-shadow: 0 22px 50px rgb(0 0 0 / 46%);
    opacity: 0;
    pointer-events: none;
    transition: transform 170ms ease, opacity 170ms ease;
  }

  .siteNav.isOpen {
    transform: none;
    opacity: 1;
    pointer-events: auto;
  }

  .siteNav a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
  }

  .siteNav .navAction {
    margin-top: 12px;
    text-align: center;
  }

  .hero {
    height: 680px;
    min-height: 0;
  }

  .hero::after {
    display: none;
  }

  .heroInner {
    padding-top: 78px;
  }

  .heroSystemLine {
    top: 18px;
    left: 0;
    right: auto;
  }

  .hero h1 {
    font-size: 78px;
  }

  .heroStatement {
    margin-top: 24px;
    font-size: 29px;
  }

  .heroCopy {
    max-width: 540px;
    font-size: 14px;
  }

  .heroProduct {
    top: auto;
    right: -90px;
    bottom: -230px;
    width: 640px;
    height: 460px;
    opacity: 0.76;
  }

  .heroSideLabel {
    display: none;
  }

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

  .proofInner div {
    min-height: 80px;
    padding: 16px;
    border-bottom: 1px solid rgb(255 255 255 / 22%);
  }

  .proofInner div:nth-child(2n) {
    border-right: 1px solid rgb(255 255 255 / 22%);
  }

  .section {
    padding: 88px 0;
  }

  h2,
  .downloadInner h2 {
    font-size: 36px;
  }

  .capabilityGrid {
    margin-top: 52px;
  }

  .workflowRow,
  .workflowRowReverse {
    grid-template-columns: 1fr;
    min-height: 0;
    gap: 42px;
    padding: 68px 0;
  }

  .workflowRowReverse .workflowCopy,
  .workflowRowReverse figure {
    grid-column: 1;
  }

  .workflowRowReverse .workflowCopy {
    grid-row: 1;
  }

  .workflowRowReverse figure {
    grid-row: 2;
  }

  .workflowCopy h3 {
    font-size: 27px;
  }

  .liveFrame {
    padding: 56px 24px;
  }

  .privacyFacts div {
    grid-template-columns: 84px 1fr;
    gap: 8px 16px;
  }

  .privacyFacts p {
    grid-column: 2;
  }

  .modelFootprint {
    grid-template-columns: 130px 160px 1fr;
    gap: 18px;
  }

  .downloadSection {
    padding: 96px 20px;
  }

  .downloadSection::before {
    font-size: 150px;
  }

  .footerInner {
    grid-template-columns: 1fr auto;
    gap: 24px;
    padding: 30px 0;
  }

  .footerInner nav {
    grid-column: 1 / -1;
    grid-row: 2;
  }

  .footerLegal {
    grid-row: 3;
  }
}

@media (max-width: 520px) {
  .hero {
    height: 650px;
  }

  .heroInner {
    padding-top: 66px;
  }

  .heroSystemLine {
    font-size: 8px;
  }

  .eyebrow {
    margin-bottom: 14px;
    font-size: 9px;
  }

  .hero h1 {
    font-size: 62px;
  }

  .heroStatement {
    margin-top: 20px;
    font-size: 25px;
  }

  .heroCopy {
    display: -webkit-box;
    overflow: hidden;
    max-width: 100%;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 4;
  }

  .heroActions {
    margin-top: 22px;
  }

  .primaryAction,
  .secondaryAction {
    min-height: 46px;
    padding: 0 15px;
    font-size: 13px;
  }

  .heroProduct {
    right: -190px;
    bottom: -232px;
  }

  .heroCaption {
    top: 38px;
  }

  .proofInner strong {
    font-size: 13px;
  }

  .section,
  .downloadSection {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  h2,
  .downloadInner h2 {
    font-size: 31px;
  }

  .capability {
    min-height: 280px;
    padding-right: 22px;
    padding-left: 22px;
  }

  .workflowRow,
  .workflowRowReverse {
    gap: 34px;
  }

  .productFrame,
  .liveFrame {
    box-shadow: 10px 10px 0 #dfe4eb;
  }

  .liveFrame {
    padding: 42px 12px;
  }

  .privacyFacts div {
    grid-template-columns: 1fr;
    padding: 20px 0;
  }

  .privacyFacts p {
    grid-column: 1;
  }

  .modelFootprint {
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .requirementCard h3 {
    min-height: 0;
    margin-top: 34px;
  }

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

  .footerInner nav,
  .footerInner > p {
    grid-column: 1;
  }

  .footerInner nav {
    flex-wrap: wrap;
  }

  .footerLegal {
    flex-direction: column;
    gap: 8px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}
