@font-face {
  font-family: "IBM Plex Sans";
  src: url("./IBMPlexSansVar-Roman.ttf") format("truetype-variations");
  font-display: swap;
  font-style: normal;
  font-weight: 100 700;
}

@font-face {
  font-family: "JetBrains Mono";
  src: url("./JetBrainsMono.ttf") format("truetype");
  font-display: swap;
  font-style: normal;
  font-weight: 100 800;
}

:root {
  color-scheme: dark;
  --canvas: #000000;
  --surface: #111113;
  --raised: #1c1c1e;
  --line: rgba(255, 255, 255, 0.1);
  --line-soft: rgba(255, 255, 255, 0.065);
  --ink: #f5f5f7;
  --muted: #8e8e93;
  --faint: #636366;
  --accent: #ff3b4a;
  --accent-strong: #ff5a66;
  --accent-wash: rgba(255, 59, 74, 0.12);
  --shadow: rgba(0, 0, 0, 0.46);
  --max-width: 900px;
  --wide: 1280px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  min-height: 100%;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--canvas);
  scroll-behavior: smooth;
}

body {
  min-height: 100%;
  margin: 0;
  overflow-x: hidden;
  overflow-x: clip;
  background: var(--canvas);
  color: var(--ink);
  font-family: "IBM Plex Sans", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.68;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

::selection {
  background: rgba(255, 59, 74, 0.3);
  color: var(--ink);
}

a {
  color: var(--accent);
  text-decoration-color: rgba(255, 59, 74, 0.44);
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--accent-strong);
}

a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 4px;
  border-radius: 4px;
}

img {
  max-width: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
  color: var(--ink);
  text-decoration: none;
}

.brand:hover {
  color: var(--ink);
}

.brand-icon {
  display: block;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0, 0, 0, 0.28);
}

.brand-name {
  font-size: 21px;
  font-weight: 730;
  letter-spacing: -0.02em;
}

.timecode {
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-variant-numeric: tabular-nums;
}

/* Legal documents */

.document-page {
  background:
    radial-gradient(circle at 50% -20%, rgba(255, 59, 74, 0.08), transparent 32rem),
    var(--canvas);
}

.site-shell {
  width: min(100%, var(--max-width));
  margin: 0 auto;
  padding: 28px 20px 56px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0 28px;
  border-bottom: 1px solid var(--line-soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
  flex-wrap: wrap;
}

.nav a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  padding: 8px 12px;
  border-radius: 9px;
  color: var(--muted);
  text-decoration: none;
  font-size: 14px;
  font-weight: 650;
}

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

.document-page .hero {
  padding: 58px 0 32px;
}

.document-page .eyebrow {
  margin: 0 0 16px;
  color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.document-page h1,
.document-page h2,
.document-page h3 {
  margin: 0;
  color: var(--ink);
}

.document-page h1 {
  max-width: 800px;
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(34px, 5.8vw, 56px);
  font-weight: 610;
  letter-spacing: -0.065em;
  line-height: 1.03;
  text-wrap: balance;
}

.document-page h2 {
  margin-top: 42px;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  font-size: 25px;
  font-weight: 680;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.document-page h3 {
  margin-top: 28px;
  font-size: 18px;
  font-weight: 680;
  letter-spacing: -0.01em;
  line-height: 1.32;
}

.document-page p,
.document-page li {
  color: #d1d1d6;
  font-size: 16px;
}

.document-page p {
  margin: 14px 0 0;
}

.document-page ul,
.document-page ol {
  margin: 14px 0 0;
  padding-left: 25px;
}

.document-page li + li {
  margin-top: 9px;
}

.document-page strong {
  color: var(--ink);
  font-weight: 700;
}

.meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.pill {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 6px 10px;
  border: 1px solid var(--line-soft);
  border-radius: 7px;
  background: var(--raised);
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}

.legal-card {
  margin-top: 18px;
  padding: 34px;
  border: 1px solid var(--line-soft);
  border-radius: 12px;
  background: var(--surface);
  box-shadow: 0 22px 62px var(--shadow);
}

.document > p:first-child {
  margin-top: 0;
}

.callout {
  margin-top: 24px;
  padding: 20px;
  border: 1px solid rgba(255, 59, 74, 0.18);
  border-radius: 8px;
  background: var(--accent-wash);
}

.callout p {
  margin: 0;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}

.footer p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

/* Marketing homepage */

.landing-page {
  overflow-x: clip;
}

.landing-topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line-soft);
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.landing-topbar-inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  width: min(calc(100% - 48px), var(--wide));
  min-height: 78px;
  margin: 0 auto;
}

.landing-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 30px;
}

.landing-nav a,
.landing-footer a {
  color: var(--muted);
  font-size: 14px;
  text-decoration: none;
  transition: color 180ms ease;
}

.landing-nav a:hover,
.landing-footer a:hover {
  color: var(--ink);
}

.top-download {
  justify-self: end;
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--ink);
  color: #000;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease;
}

.top-download:hover {
  background: #fff;
  color: #000;
  transform: translateY(-1px);
}

.landing-hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.85fr);
  align-items: center;
  gap: clamp(72px, 7vw, 104px);
  width: min(calc(100% - 64px), var(--wide));
  min-height: calc(100svh - 78px);
  margin: 0 auto;
  padding: 68px 0 80px;
}

.hero-grid {
  position: absolute;
  z-index: -1;
  top: 0;
  right: -22vw;
  width: min(74vw, 960px);
  height: 100%;
  opacity: 0.35;
  background-image:
    linear-gradient(var(--line-soft) 1px, transparent 1px),
    linear-gradient(90deg, var(--line-soft) 1px, transparent 1px);
  background-size: 33.333% 33.333%;
  mask-image: radial-gradient(circle at 45% 50%, black 0, transparent 69%);
  -webkit-mask-image: radial-gradient(circle at 45% 50%, black 0, transparent 69%);
}

.hero-copy-block {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.landing-eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 24px;
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.status-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 5px var(--accent-wash);
}

.landing-hero h1 {
  margin: 0;
  max-width: 770px;
  color: var(--ink);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: clamp(50px, 4.65vw, 68px);
  font-weight: 700;
  letter-spacing: -0.07em;
  line-height: 0.94;
  text-wrap: balance;
}

.landing-hero h1 span,
.section-heading h2 span {
  color: var(--muted);
}

.landing-hero h1 span {
  white-space: nowrap;
}

.landing-hero-sub {
  max-width: 600px;
  margin: 32px 0 0;
  color: #b5b5ba;
  font-size: clamp(17px, 1.5vw, 20px);
  line-height: 1.58;
}

.store-stack {
  display: flex;
  align-items: stretch;
  gap: 12px;
  margin-top: 38px;
}

.store-button {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 210px;
  height: 58px;
  padding: 0 20px;
  border-radius: 12px;
  text-decoration: none;
}

.store-button svg {
  flex: 0 0 auto;
  width: 25px;
  height: 25px;
}

.store-button span {
  display: flex;
  flex-direction: column;
  line-height: 1.12;
}

.store-button small {
  font-size: 10px;
  font-weight: 650;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.store-button strong {
  font-size: 17px;
  font-weight: 740;
}

.store-button-primary {
  background: var(--ink);
  color: #080808;
  transition: transform 180ms var(--ease), background 180ms ease;
}

.store-button-primary:hover {
  background: #fff;
  color: #080808;
  transform: translateY(-2px);
}

.store-button-muted {
  border: 1px solid var(--line);
  color: var(--muted);
}

.store-button-muted svg {
  fill: currentColor;
}

.hero-product {
  justify-self: end;
  width: min(100%, 620px);
  margin-right: 0;
}

.hero-product img {
  display: block;
  width: 100%;
  height: auto;
  filter: drop-shadow(0 46px 70px rgba(0, 0, 0, 0.62));
}

.proof-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  width: min(calc(100% - 64px), var(--wide));
  margin: 0 auto;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.proof-strip div {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: baseline;
  gap: 14px;
  padding: 28px 32px;
}

.proof-strip div + div {
  border-left: 1px solid var(--line);
}

.proof-strip strong {
  color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 28px;
}

.proof-strip span {
  color: var(--muted);
  font-size: 14px;
}

.feature-section,
.layout-section,
.local-section,
.use-cases,
.download-section,
.seo-copy,
.landing-footer {
  width: min(calc(100% - 64px), var(--wide));
  margin-inline: auto;
}

.feature-section {
  padding: 160px 0 180px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  align-items: end;
  gap: 70px;
}

.section-heading .landing-eyebrow {
  grid-column: 1 / -1;
  margin-bottom: -42px;
}

.section-heading h2,
.layout-copy h2,
.local-section h2,
.download-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(48px, 6vw, 82px);
  font-weight: 610;
  letter-spacing: -0.06em;
  line-height: 0.95;
  text-wrap: balance;
}

.section-heading > p:last-child,
.layout-copy > p:last-child,
.local-section div > p,
.download-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.65;
}

.precision-layout {
  display: grid;
  grid-template-columns: minmax(480px, 1.16fr) minmax(360px, 0.84fr);
  align-items: center;
  gap: clamp(48px, 6vw, 96px);
  margin-top: 90px;
}

.control-screen {
  position: relative;
  width: min(100%, 720px);
  margin: 0;
  padding: 13px;
  border: 1px solid var(--line);
  background: #080808;
  box-shadow: 0 44px 90px rgba(0, 0, 0, 0.58);
}

.control-screen img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1672 / 941;
  object-fit: contain;
}

.control-screen figcaption {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 18px 4px 5px;
  color: var(--muted);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.control-screen figcaption span:first-child {
  color: var(--ink);
}

.capability-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.capability-list li {
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 24px;
  padding: 34px 0;
  border-top: 1px solid var(--line);
}

.capability-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.capability-index {
  padding-top: 5px;
  color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 12px;
}

.capability-list h3 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.06;
}

.capability-list p {
  max-width: 560px;
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.layout-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(500px, 1.2fr);
  align-items: center;
  gap: 90px;
  padding: 150px 0;
  border-top: 1px solid var(--line);
}

.layout-copy .landing-eyebrow {
  margin-bottom: 24px;
}

.layout-copy > p:last-child {
  margin-top: 28px;
}

.layout-matrix {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.layout-sample {
  display: flex;
  min-height: 190px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  margin: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #050505;
}

.layout-sample-active {
  background: var(--accent-wash);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(var(--cols), 1fr);
  grid-template-rows: repeat(var(--rows), 1fr);
  gap: 3px;
  width: 66px;
  height: 84px;
}

.mini-grid i {
  display: block;
  min-width: 0;
  min-height: 0;
  background: #f5f5f7;
}

.grid-1x1 {
  --cols: 1;
  --rows: 1;
}

.grid-1x2 {
  --cols: 2;
  --rows: 1;
}

.grid-1x3 {
  --cols: 3;
  --rows: 1;
}

.grid-2x1 {
  --cols: 1;
  --rows: 2;
}

.grid-2x2 {
  --cols: 2;
  --rows: 2;
}

.grid-2x3 {
  --cols: 3;
  --rows: 2;
}

.grid-3x1 {
  --cols: 1;
  --rows: 3;
}

.grid-3x2 {
  --cols: 2;
  --rows: 3;
}

.grid-3x3 {
  --cols: 3;
  --rows: 3;
}

.layout-sample-active .mini-grid i:last-child {
  background: var(--accent);
}

.layout-sample figcaption {
  color: var(--muted);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
}

.layout-sample-active figcaption {
  color: var(--accent);
}

.local-section {
  display: grid;
  grid-template-columns: minmax(0, 0.55fr) minmax(0, 1.45fr);
  gap: 70px;
  padding: 170px 80px;
  background: var(--ink);
  color: #080808;
}

.local-index {
  margin: 8px 0 0;
  color: #6e6e73;
  font-size: 12px;
}

.local-section .landing-eyebrow {
  color: #6e6e73;
}

.local-section h2 {
  max-width: 820px;
  color: #080808;
}

.local-section div > p {
  max-width: 720px;
  margin-top: 28px;
  color: #5a5a5f;
}

.local-section a {
  display: inline-block;
  margin-top: 28px;
  color: #080808;
  font-weight: 700;
  text-decoration-color: rgba(0, 0, 0, 0.35);
}

.use-cases {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  padding: 140px 0;
}

.use-cases article {
  min-height: 300px;
  padding: 34px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.use-cases article + article {
  border-left: 1px solid var(--line);
}

.use-cases article > span {
  color: var(--accent);
  font-family: "JetBrains Mono", ui-monospace, monospace;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.use-cases h3 {
  margin: 80px 0 0;
  color: var(--ink);
  font-size: 30px;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.use-cases p {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 16px;
}

.download-section {
  position: relative;
  display: grid;
  min-height: 670px;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #080808;
}

.download-grid {
  position: absolute;
  inset: -16%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(3, 1fr);
  gap: 1px;
  opacity: 0.7;
  transform: rotate(-6deg) scale(1.05);
}

.download-grid i {
  display: block;
  border: 1px solid var(--line-soft);
  background: #050505;
}

.download-grid .play-cell {
  background: var(--accent);
  box-shadow: 0 0 90px rgba(255, 59, 74, 0.2);
}

.download-copy {
  position: relative;
  z-index: 1;
  display: flex;
  max-width: 820px;
  flex-direction: column;
  align-items: center;
  padding: 80px 32px;
  text-align: center;
}

.download-copy .landing-eyebrow {
  color: #c7c7cc;
}

.download-copy > p {
  margin-top: 24px;
  color: #c7c7cc;
}

.download-cta {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  margin-top: 34px;
  padding: 12px 26px;
  border-radius: 999px;
  background: var(--ink);
  color: #080808;
  font-weight: 750;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease;
}

.download-cta:hover {
  background: #fff;
  color: #080808;
  transform: translateY(-2px);
}

.ios-note {
  margin-top: 15px;
  color: #8e8e93;
  font-size: 13px;
}

.seo-copy {
  max-width: 800px;
  padding: 110px 0 130px;
  text-align: center;
}

.seo-copy h2 {
  margin: 0;
  color: var(--ink);
  font-size: 26px;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.seo-copy p {
  margin: 18px 0 0;
  color: var(--faint);
  font-size: 15px;
}

.landing-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  padding: 32px 0 44px;
  border-top: 1px solid var(--line);
}

.landing-footer p {
  margin: 0;
  color: var(--faint);
  font-size: 13px;
  text-align: center;
}

.landing-footer p a {
  color: inherit;
}

.landing-footer nav {
  display: flex;
  justify-self: end;
  gap: 24px;
}

.js [data-reveal] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 800ms var(--ease), transform 800ms var(--ease);
}

.js [data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1040px) {
  .landing-nav {
    display: none;
  }

  .landing-topbar-inner {
    grid-template-columns: 1fr auto;
  }

  .landing-hero {
    grid-template-columns: minmax(0, 1fr) minmax(360px, 0.78fr);
    gap: 56px;
  }

  .landing-hero h1 {
    font-size: clamp(46px, 5.2vw, 54px);
  }

  .store-stack {
    flex-direction: column;
    max-width: 250px;
  }

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

  .section-heading .landing-eyebrow {
    grid-column: auto;
    margin-bottom: 0;
  }

  .precision-layout {
    grid-template-columns: 1fr;
    gap: 70px;
  }

  .control-screen {
    width: min(100%, 760px);
  }

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

  .layout-copy {
    max-width: 720px;
  }
}

@media (max-width: 900px) {
  .landing-hero {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .hero-copy-block {
    max-width: 680px;
  }

  .landing-hero h1 {
    font-size: clamp(48px, 7vw, 60px);
  }

  .hero-product {
    justify-self: center;
    width: min(100%, 720px);
    margin-right: 0;
  }
}

@media (max-width: 760px) {
  .site-shell {
    padding: 18px 16px 42px;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    padding-bottom: 20px;
  }

  .nav {
    justify-content: flex-start;
    width: 100%;
  }

  .nav a {
    padding-inline: 10px;
  }

  .document-page .hero {
    padding: 40px 0 24px;
  }

  .document-page h1 {
    font-size: clamp(32px, 9.6vw, 46px);
    letter-spacing: -0.075em;
  }

  .legal-card {
    padding: 24px 19px;
  }

  .landing-topbar-inner,
  .landing-hero,
  .proof-strip,
  .feature-section,
  .layout-section,
  .local-section,
  .use-cases,
  .download-section,
  .seo-copy,
  .landing-footer {
    width: min(calc(100% - 36px), var(--wide));
  }

  .landing-topbar-inner {
    min-height: 68px;
  }

  .brand-icon {
    width: 34px;
    height: 34px;
    border-radius: 9px;
  }

  .brand-name {
    font-size: 19px;
  }

  .top-download {
    min-height: 36px;
    padding: 6px 13px;
    font-size: 13px;
  }

  .landing-hero {
    grid-template-columns: 1fr;
    gap: 64px;
    min-height: 0;
    padding: 76px 0 90px;
  }

  .landing-hero h1 {
    font-size: clamp(42px, 11.8vw, 62px);
    letter-spacing: -0.065em;
    line-height: 0.98;
  }

  .landing-hero h1 span {
    white-space: normal;
  }

  .landing-hero-sub {
    margin-top: 26px;
  }

  .store-stack {
    max-width: none;
  }

  .hero-product {
    justify-self: center;
    width: min(112%, 620px);
    margin-right: 0;
  }

  .hero-grid {
    top: 42%;
    right: auto;
    left: 0;
    width: 100%;
    height: 58%;
  }

  .proof-strip {
    grid-template-columns: 1fr;
  }

  .proof-strip div {
    padding: 20px 8px;
  }

  .proof-strip div + div {
    border-top: 1px solid var(--line);
    border-left: 0;
  }

  .feature-section {
    padding: 110px 0 120px;
  }

  .section-heading h2,
  .layout-copy h2,
  .local-section h2,
  .download-copy h2 {
    font-size: clamp(44px, 13vw, 66px);
  }

  .precision-layout {
    grid-template-columns: 1fr;
    margin-top: 64px;
  }

  .control-screen {
    width: 100%;
    margin-inline: auto;
  }

  .layout-section {
    gap: 60px;
    padding: 100px 0;
  }

  .layout-matrix {
    width: 100%;
  }

  .layout-sample {
    min-height: 132px;
  }

  .mini-grid {
    width: 48px;
    height: 62px;
  }

  .local-section {
    grid-template-columns: 1fr;
    gap: 38px;
    padding: 90px 28px;
  }

  .use-cases {
    grid-template-columns: 1fr;
    padding: 100px 0;
  }

  .use-cases article {
    min-height: 250px;
  }

  .use-cases article + article {
    border-top: 0;
    border-left: 0;
  }

  .use-cases h3 {
    margin-top: 56px;
  }

  .download-section {
    min-height: 600px;
  }

  .download-grid {
    inset: 0;
    transform: none;
  }

  .download-copy {
    padding-inline: 20px;
  }

  .seo-copy {
    padding: 90px 0 100px;
  }

  .landing-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .landing-footer p {
    text-align: left;
  }

  .landing-footer nav {
    justify-self: start;
  }
}

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

  .top-download,
  .store-button-primary,
  .download-cta,
  .js [data-reveal] {
    transition: none;
  }

  .js [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
