@font-face {
  font-family: Geist;
  src: url("fonts/geist.woff2") format("woff2");
  font-weight: 100 900;
  font-display: swap;
}
:root {
  --paper: #ffffff;
  --ink: #272727;
  --muted: #717171;
  --line: #e7e7e7;
  --accent: #555555;
  --mint: #ededed;
  --ease: cubic-bezier(0.23, 1, 0.32, 1);
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Geist, sans-serif;
  -webkit-font-smoothing: antialiased;
  font-size: 15px;
  line-height: 1.65;
}
body:has(dialog[open]) {
  overflow: hidden;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
img {
  max-width: 100%;
  display: block;
}
a,
button {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 2px solid #797979;
  outline-offset: 5px;
}
.button:active,
button:active {
  transform: scale(0.98);
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
p {
  text-wrap: pretty;
}
h2 {
  font-size: clamp(30px, 3.5vw, 48px);
  font-weight: 600;
  line-height: 1.16;
  letter-spacing: -1.8px;
}
h3 {
  font-weight: 550;
}
::selection {
  background: var(--mint);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.svg-library {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.container {
  width: calc(100% - 112px);
  max-width: 1248px;
  margin-inline: auto;
}
.section {
  padding-block: 100px;
}
.eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.2px;
  color: var(--accent);
  line-height: 1.6;
}
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #232323;
  border-bottom: 1px solid #ffffff15;
  color: #ffffff;
}
.nav-bar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}
.brand img {
  filter: grayscale(1);
  width: 36px;
  height: 32px;
  object-fit: contain;
  mix-blend-mode: multiply;
}
.header .brand img {
  filter: grayscale(1) invert(1);
  mix-blend-mode: screen;
}
.brand > span {
  font-size: 31px;
  letter-spacing: -1.5px;
  line-height: 1;
  font-weight: 650;
}
.brand-period {
  color: var(--accent);
}
.header .brand-period {
  color: var(--mint);
}
.desktop-nav {
  display: flex;
  gap: 35px;
  margin-left: 60px;
}
.desktop-nav a {
  font-size: 12px;
  color: #cecece;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  min-height: 49px;
  padding: 13px 21px;
  border: 1px solid var(--ink);
  border-radius: 3px;
  font-size: 13px;
  font-weight: 550;
  line-height: 1.3;
  transition:
    background 160ms ease,
    transform 160ms var(--ease);
}
.button svg,
.text-link svg {
  width: 17px;
  height: 17px;
}
.button-small {
  min-height: 40px;
  padding: 10px 15px;
  gap: 22px;
  font-size: 12px;
  border-color: #8e8e8e;
}
.button-primary {
  background: var(--mint);
  border-color: var(--mint);
  color: #2d2d2d;
}
.button-dark {
  background: var(--ink);
  color: white;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  font-size: 13px;
  font-weight: 500;
}
.menu-toggle {
  display: none;
}
.skip-link {
  position: fixed;
  left: 20px;
  top: -100px;
  padding: 12px 20px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip-link:focus {
  top: 12px;
}
.hero-shell {
  background: #232323;
  color: white;
  overflow: hidden;
}
.hero {
  display: grid;
  grid-template-columns: 1fr 1.12fr;
  gap: 52px;
  align-items: center;
  padding-block: 84px 76px;
}
.hero .eyebrow {
  color: #c3c3c3;
  font-size: 8px;
  display: flex;
  align-items: center;
  gap: 10px;
  letter-spacing: 1.2px;
  margin-bottom: 25px;
}
.small-line {
  height: 1px;
  width: 24px;
  background: var(--mint);
}
.hero h1 {
  font-size: clamp(49px, 5.5vw, 78px);
  line-height: 1.06;
  letter-spacing: -3.5px;
  font-weight: 600;
}
.hero h1 span {
  color: var(--mint);
}
.hero-description {
  font-size: 15px;
  line-height: 1.85;
  color: #c2c2c2;
  max-width: 410px;
  margin-top: 27px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 31px;
}
.hero-actions .text-link {
  font-size: 12px;
  color: #eaeaea;
}
.hero-meta {
  display: flex;
  gap: 25px;
  color: #a7a7a7;
  font-size: 9px;
  margin-top: 39px;
}
.hero-meta span + span {
  padding-left: 25px;
  border-left: 1px solid #5c5c5c;
}
.hero-showcase {
  position: relative;
  padding-top: 0;
  padding-bottom: 45px;
  min-width: 0;
}
.showcase-heading {
  font-size: 8px;
  letter-spacing: 1.2px;
  display: flex;
  justify-content: space-between;
  color: #ababab;
  margin-bottom: 20px;
  padding-inline: 3px;
}
.showcase-heading > span:last-child {
  font-size: 18px;
}
.app-window {
  background: #f8f8f8;
  border: 5px solid #4b4b4b;
  border-radius: 11px;
  color: #484848;
  box-shadow: 0 22px 50px #10101055;
  overflow: hidden;
  transform: perspective(1600px) rotateY(-8deg) rotateX(3deg);
  transform-origin: left center;
}
.app-chrome {
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 13px;
  background: #efefef;
  font-size: 8px;
  color: #7d7d7d;
  border-bottom: 1px solid #e3e3e3;
}
.app-chrome > svg {
  width: 12px;
  height: 12px;
}
.window-dots {
  display: flex;
  gap: 4px;
}
.window-dots i {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #bdbdbd;
}
.app-body {
  display: grid;
  grid-template-columns: 97px 1fr;
  min-height: 317px;
}
.app-sidebar {
  padding: 18px 11px;
  background: #2e2e2e;
  color: #adadad;
  display: flex;
  flex-direction: column;
  gap: 17px;
  font-size: 7px;
}
.app-sidebar > strong {
  font-size: 28px;
  line-height: 1;
  margin-bottom: 13px;
  color: white;
}
.app-sidebar > strong span {
  color: var(--mint);
}
.app-sidebar > span {
  display: flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}
.app-sidebar svg {
  width: 11px;
  height: 11px;
}
.app-sidebar .side-active {
  color: var(--mint);
}
.app-sidebar > small {
  font-size: 6px;
  line-height: 1.7;
  letter-spacing: 1px;
  margin-top: auto;
}
.app-main {
  padding: 21px 17px 14px;
}
.app-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.app-title small {
  font-size: 6px;
  letter-spacing: 0.6px;
  color: #8d8d8d;
  display: block;
  margin-bottom: 4px;
}
.app-title h2 {
  font-size: 17px;
  letter-spacing: -0.5px;
  line-height: 1.2;
}
.demo-badge {
  font-size: 6px;
  background: #eaeaea;
  color: #747474;
  padding: 3px 6px;
  border-radius: 3px;
}
.app-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin-top: 17px;
}
.app-summary > div {
  border: 1px solid #e5e5e5;
  border-radius: 3px;
  background: white;
  padding: 9px 7px;
}
.app-summary span {
  font-size: 6px;
  color: #8e8e8e;
  display: block;
}
.app-summary strong {
  font-size: 7px;
  font-weight: 550;
  display: block;
  margin-top: 3px;
  white-space: nowrap;
}
.activity-chart {
  background: white;
  border: 1px solid #e7e7e7;
  border-radius: 4px;
  padding: 12px 9px 0;
  margin-block: 13px 10px;
}
.activity-chart > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  font-size: 7px;
}
.activity-chart > div > span {
  font-size: 6px;
  color: #949494;
}
.activity-chart svg {
  width: 100%;
  height: auto;
  display: block;
  margin-top: 12px;
}
.app-task {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-top: 1px solid #e8e8e8;
  padding-block: 9px;
  font-size: 6px;
  gap: 10px;
}
.app-task > span:first-child {
  display: flex;
  align-items: center;
  gap: 5px;
}
.app-task i {
  width: 4px;
  height: 4px;
  background: #838383;
  border-radius: 50%;
}
.task-status {
  background: #ededed;
  color: #727272;
  padding: 2px 5px;
  border-radius: 3px;
}
.task-status.neutral {
  background: #eaeaea;
  color: #7e7e7e;
}
.phone-preview {
  position: absolute;
  right: -15px;
  bottom: 24px;
  width: 143px;
  border: 5px solid #464646;
  border-radius: 23px;
  background: #fafafa;
  box-shadow: 0 15px 40px #00000044;
  color: #3d3d3d;
  padding: 20px 9px 8px;
  transform: rotate(5deg);
}
.phone-notch {
  position: absolute;
  width: 46px;
  height: 9px;
  background: #464646;
  border-radius: 0 0 8px 8px;
  left: calc(50% - 23px);
  top: 0;
}
.phone-brand {
  font-size: 12px;
  letter-spacing: -0.5px;
  font-weight: 650;
}
.phone-brand span {
  color: #7a7a7a;
}
.phone-preview > small {
  font-size: 5px;
  letter-spacing: 0.6px;
  display: block;
  margin-top: 14px;
  color: #878787;
}
.phone-preview > strong {
  font-size: 15px;
  line-height: 1.2;
  letter-spacing: -0.4px;
  display: block;
  margin-top: 5px;
}
.phone-preview > img {
  width: 100%;
  height: 67px;
  object-fit: cover;
  border-radius: 5px;
  margin-top: 12px;
}
.phone-record {
  border: 1px solid #e6e6e6;
  border-radius: 4px;
  padding: 8px 6px;
  margin-top: 8px;
  font-size: 6px;
}
.phone-record span,
.phone-record b {
  display: block;
}
.phone-record b {
  font-size: 5px;
  color: #838383;
  margin-top: 3px;
}
.phone-nav {
  display: flex;
  justify-content: space-around;
  font-size: 10px;
  border-top: 1px solid #e8e8e8;
  margin-top: 13px;
  padding-top: 7px;
  color: #8e8e8e;
}
.phone-nav span {
  color: #707070;
}
.showcase-caption {
  font-size: 7px;
  display: flex;
  gap: 17px;
  color: #aaaaaa;
  margin-top: 19px;
  padding-left: 4px;
}
.hero-bottom {
  border-top: 1px solid #ffffff20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 21px;
  font-size: 8px;
  letter-spacing: 1px;
  color: #b0b0b0;
}
.hero-bottom a {
  display: flex;
  gap: 25px;
  font-size: 10px;
  letter-spacing: 0;
  color: #e1e1e1;
}
.hero-bottom a span {
  font-size: 16px;
}
.intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.intro .eyebrow {
  margin-bottom: 22px;
}
.intro > div > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  max-width: 420px;
  line-height: 1.85;
  margin-top: 24px;
}
.intro .text-link {
  margin-top: 28px;
}
.capability-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: #e6e6e6;
  border: 1px solid #eaeaea;
}
.capability-grid article {
  background: #f7f7f7;
  padding: 28px 25px;
  min-height: 190px;
}
.capability-grid svg {
  width: 32px;
  height: 32px;
  color: #757575;
  margin-bottom: 24px;
  stroke-width: 1.1;
}
.capability-grid h3 {
  font-size: 15px;
  letter-spacing: -0.3px;
}
.capability-grid p {
  font-size: 11px;
  color: var(--muted);
  margin-top: 9px;
  line-height: 1.75;
}
.solutions {
  border-top: 1px solid var(--line);
  padding-top: 83px;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 70px;
}
.section-heading .eyebrow {
  margin-bottom: 22px;
}
.section-heading > p {
  max-width: 350px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}
.portfolio-toolbar {
  margin-top: 35px;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--line);
}
.filters {
  display: flex;
  gap: 22px;
}
.filter {
  border: 0;
  border-bottom: 1px solid transparent;
  background: none;
  padding: 8px 0;
  font-size: 12px;
  min-height: 36px;
  transition: color 160ms ease;
}
.filter.active {
  color: var(--accent);
  border-color: var(--accent);
}
.filter span {
  margin-left: 5px;
  font-size: 10px;
}
.product-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 45px 30px;
  margin-top: 28px;
}
.product-card {
  min-width: 0;
}
.product-visual {
  height: 320px;
  position: relative;
  background: #ededed;
  overflow: hidden;
  border-radius: 5px;
}
.product-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 250ms var(--ease);
}
.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: #19191925;
  pointer-events: none;
}
.healthcare-visual > img {
  object-position: center 48%;
}
.visual-category {
  position: absolute;
  top: 19px;
  left: 20px;
  z-index: 1;
  color: white;
  background: #2e2e2ee6;
  border: 1px solid #ffffff30;
  border-radius: 3px;
  font-size: 9px;
  padding: 5px 10px;
}
.visual-panel {
  position: absolute;
  z-index: 1;
  bottom: 22px;
  left: 24px;
  right: 24px;
  padding: 16px 18px;
  background: #fffffff5;
  border: 1px solid #ffffffe6;
  box-shadow: 0 8px 20px #1b1b1b25;
  border-radius: 5px;
  color: #3c3c3c;
}
.panel-top {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 12px;
  font-weight: 550;
}
.panel-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #7c7c7c;
}
.panel-top > svg {
  margin-left: auto;
  width: 14px;
  height: 14px;
}
.panel-items {
  display: flex;
  gap: 17px;
  border-top: 1px solid #e8e8e8;
  margin-top: 13px;
  padding-top: 11px;
  font-size: 9px;
  color: #727272;
}
.panel-caption {
  font-size: 6px;
  color: #989898;
  display: block;
  letter-spacing: 0.8px;
  margin-top: 11px;
}
.product-copy {
  padding-top: 23px;
  display: grid;
  grid-template-columns: 1fr auto;
  column-gap: 20px;
}
.product-name {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.product-name h3 {
  font-size: 23px;
  letter-spacing: -0.7px;
  line-height: 1.3;
}
.product-name svg {
  width: 21px;
  height: 21px;
  color: #7e7e7e;
}
.product-copy > p {
  grid-column: 1/-1;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.8;
  margin-top: 12px;
  max-width: 520px;
}
.product-tags {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 19px;
}
.product-tags span {
  font-size: 9px;
  color: #7a7a7a;
}
.product-tags span + span::before {
  content: "/";
  margin-right: 10px;
  color: #acacac;
}
.product-link {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 11px;
  margin-top: 16px;
  justify-self: end;
  min-height: 25px;
}
.product-link svg {
  width: 16px;
  height: 16px;
  transition: transform 160ms var(--ease);
}
.portfolio-bottom {
  font-size: 12px;
  color: var(--muted);
  margin-top: 35px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
}
.portfolio-bottom a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  margin-left: 6px;
}
.approach {
  background: #f4f4f4;
  border-block: 1px solid #e8e8e8;
}
.approach .section {
  padding-block: 80px;
}
.approach .section-heading {
  align-items: flex-start;
}
.approach h2 {
  max-width: 460px;
}
.approach .section-heading > p {
  padding-top: 38px;
}
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  margin-top: 50px;
}
.principles article {
  padding-top: 20px;
  border-top: 1px solid #d7d7d7;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.principle-number {
  font-size: 11px;
  color: var(--accent);
  margin-bottom: 24px;
}
.principles h3 {
  font-size: 20px;
  letter-spacing: -0.5px;
  margin-bottom: 13px;
}
.principles p {
  font-size: 13px;
  line-height: 1.85;
  color: var(--muted);
  max-width: 330px;
}
.company {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 85px;
  align-items: center;
}
.company-photo {
  position: relative;
  min-width: 0;
}
.company-photo > img {
  width: 100%;
  height: 410px;
  object-fit: cover;
  border-radius: 4px;
}
.company-photo figcaption {
  background: #303030;
  color: #dddddd;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 17px 20px;
  font-size: 9px;
}
.company-photo figcaption > span:last-child {
  font-size: 6px;
  letter-spacing: 0.7px;
  align-self: center;
}
.company-copy .eyebrow {
  margin-bottom: 23px;
}
.company-copy > p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
  margin-top: 20px;
}
.company-copy .text-link {
  margin-top: 26px;
}
.contact {
  max-width: none;
  width: 100%;
  background: #232323;
  color: white;
}
.contact-inner {
  width: calc(100% - 112px);
  max-width: 1248px;
  margin-inline: auto;
  padding-block: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
}
.contact .eyebrow {
  margin-bottom: 21px;
  color: #b4b4b4;
}
.contact h2 {
  font-size: 49px;
  max-width: 650px;
}
.contact p:not(.eyebrow) {
  font-size: 14px;
  line-height: 1.85;
  color: #bdbdbd;
  margin-top: 19px;
  max-width: 430px;
}
.contact-action {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 14px;
  position: relative;
  flex-shrink: 0;
}
.contact-action .button {
  background: var(--mint);
  color: var(--ink);
  border-color: var(--mint);
}
.contact-email {
  font-size: 13px;
  color: #e0e0e0;
}
.copy-email {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 0;
  background: transparent;
  padding: 0;
  min-height: 27px;
  font-size: 11px;
  color: #bdbdbd;
}
.copy-email svg {
  width: 13px;
  height: 13px;
}
.copy-status {
  font-size: 11px;
}
.copy-status:empty {
  display: none;
}
.footer {
  padding-top: 54px;
}
.footer-main {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 47px;
}
.footer-main p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 15px;
  line-height: 1.85;
}
.footer-main h3 {
  font-size: 9px;
  letter-spacing: 0.5px;
  margin: 5px 0 16px;
  font-weight: 550;
}
.footer-main nav {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 10px;
}
.footer-main nav h3 {
  margin-bottom: 5px;
}
.footer-main nav a,
.footer-location > a {
  font-size: 12px;
  color: var(--muted);
}
.footer-location p {
  margin-top: 0;
  margin-bottom: 14px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 23px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 10px;
  color: var(--muted);
}
.product-dialog {
  width: calc(100% - 36px);
  max-width: 570px;
  padding: 44px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: white;
  color: var(--ink);
  max-height: calc(100dvh - 48px);
  overflow: auto;
  box-shadow: 0 20px 90px #1d1d1d30;
}
.product-dialog::backdrop {
  background: #24242499;
}
.product-dialog .eyebrow {
  margin-bottom: 24px;
}
.product-dialog h2 {
  font-size: 35px;
  margin-bottom: 18px;
}
.product-dialog > p:not(.eyebrow) {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.8;
}
.product-dialog h3 {
  font-size: 13px;
  margin-top: 25px;
}
.product-dialog ul {
  font-size: 13px;
  line-height: 2;
  padding-left: 18px;
  margin-bottom: 25px;
}
.product-dialog .dialog-note {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-size: 12px !important;
}
.product-dialog .button {
  margin-top: 25px;
}
.dialog-close {
  position: absolute;
  right: 13px;
  top: 13px;
  width: 36px;
  height: 36px;
  border: 0;
  background: transparent;
  display: grid;
  place-items: center;
}
.dialog-close svg {
  width: 20px;
  height: 20px;
}
@media (hover: hover) and (pointer: fine) {
  .desktop-nav a:hover {
    color: var(--mint);
  }
  .footer a:hover,
  .text-link:hover,
  .contact-email:hover,
  .product-link:hover,
  .filter:hover {
    color: var(--accent);
  }
  .hero .text-link:hover,
  .contact-email:hover {
    color: var(--mint);
  }
  .button-primary:hover,
  .contact-action .button:hover {
    background: #e3e3e3;
  }
  .button-dark:hover {
    background: #474747;
  }
  .button-small:hover {
    background: #3c3c3c;
  }
  .product-link:hover svg {
    transform: translate(2px, -2px);
  }
  .product-card:hover .product-visual > img {
    transform: scale(1.025);
  }
  .copy-email:hover {
    text-decoration: underline;
  }
  .dialog-close:hover {
    background: #ececec;
  }
}
@media (max-width: 1100px) {
  .container,
  .contact-inner {
    width: calc(100% - 72px);
  }
  .hero {
    gap: 30px;
    padding-block: 70px;
  }
  .hero h1 {
    font-size: 62px;
    letter-spacing: -2.5px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 0.8px;
  }
  .hero-description {
    font-size: 14px;
  }
  .app-body {
    grid-template-columns: 75px 1fr;
    min-height: 285px;
  }
  .app-sidebar {
    font-size: 6px;
    padding-inline: 7px;
  }
  .app-main {
    padding: 17px 12px 12px;
  }
  .app-title h2 {
    font-size: 14px;
  }
  .app-summary {
    gap: 5px;
  }
  .app-summary > div {
    padding: 7px 4px;
  }
  .app-summary strong {
    font-size: 6px;
  }
  .app-task {
    font-size: 5px;
  }
  .phone-preview {
    width: 128px;
    right: -11px;
    bottom: 20px;
  }
  .intro {
    gap: 55px;
  }
  .capability-grid article {
    padding: 24px 19px;
  }
  .capability-grid h3 {
    font-size: 13px;
  }
  .section-heading {
    gap: 40px;
  }
  .section-heading > p {
    max-width: 310px;
  }
  .product-visual {
    height: 285px;
  }
  .product-copy {
    display: block;
  }
  .product-link {
    justify-content: flex-start;
    margin-top: 14px;
  }
  .product-tags {
    margin-top: 14px;
  }
  .company {
    gap: 50px;
  }
  .contact h2 {
    font-size: 43px;
  }
  .footer-main {
    gap: 25px;
  }
}
@media (max-width: 800px) {
  .container,
  .contact-inner {
    width: calc(100% - 48px);
  }
  .nav-bar {
    height: 76px;
  }
  .desktop-nav {
    margin-left: 0;
    gap: 22px;
  }
  .desktop-nav a {
    font-size: 11px;
  }
  .brand > span {
    font-size: 27px;
  }
  .brand img {
    width: 31px;
    height: 28px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 55px;
    padding-block: 56px 35px;
  }
  .hero h1 {
    font-size: 75px;
    letter-spacing: -3.5px;
  }
  .hero-copy {
    max-width: 550px;
  }
  .hero-description {
    font-size: 15px;
    max-width: 440px;
  }
  .hero-showcase {
    width: 85%;
    margin-left: auto;
    margin-right: 20px;
  }
  .hero .eyebrow {
    font-size: 9px;
  }
  .app-body {
    grid-template-columns: 97px 1fr;
    min-height: 320px;
  }
  .app-sidebar {
    font-size: 7px;
    padding-inline: 12px;
  }
  .app-main {
    padding: 22px 17px 14px;
  }
  .app-title h2 {
    font-size: 17px;
  }
  .app-summary strong {
    font-size: 7px;
  }
  .app-summary > div {
    padding: 10px 6px;
  }
  .phone-preview {
    width: 145px;
    right: -16px;
  }
  .app-task {
    font-size: 6px;
  }
  .hero-bottom {
    font-size: 6px;
  }
  .section {
    padding-block: 70px;
  }
  .intro {
    gap: 35px;
  }
  .intro > div > p:not(.eyebrow) {
    font-size: 13px;
  }
  .capability-grid article {
    padding: 23px 17px;
    min-height: 174px;
  }
  .capability-grid p {
    font-size: 10px;
  }
  .section-heading > p {
    max-width: 270px;
    font-size: 13px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }
  .product-grid {
    gap: 32px 22px;
  }
  .product-visual {
    height: 250px;
  }
  .visual-panel {
    left: 15px;
    right: 15px;
    bottom: 15px;
    padding: 12px;
  }
  .panel-top {
    font-size: 10px;
  }
  .panel-items {
    font-size: 7px;
    gap: 10px;
  }
  .product-name h3 {
    font-size: 20px;
  }
  .principles {
    gap: 25px;
  }
  .principles h3 {
    font-size: 18px;
  }
  .principles p {
    font-size: 12px;
  }
  .company {
    gap: 35px;
  }
  .company-photo > img {
    height: 360px;
  }
  .company-photo figcaption {
    padding: 15px;
    font-size: 8px;
  }
  .company-photo figcaption > span:last-child {
    display: none;
  }
  .company-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .contact-inner {
    gap: 30px;
  }
  .contact h2 {
    font-size: 37px;
  }
  .contact p:not(.eyebrow) {
    font-size: 13px;
  }
  .contact .button {
    font-size: 12px;
    gap: 18px;
    padding-inline: 15px;
  }
  .footer-main {
    grid-template-columns: 1.5fr 1fr 1fr;
  }
  .footer-location {
    display: none;
  }
}
@media (max-width: 600px) {
  html {
    scroll-padding-top: 90px;
  }
  .container,
  .contact-inner {
    width: calc(100% - 40px);
  }
  .nav-bar {
    height: 70px;
  }
  .desktop-nav,
  .nav-contact {
    display: none;
  }
  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 6px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1px solid #626262;
    border-radius: 3px;
  }
  .menu-toggle span {
    display: block;
    width: 17px;
    height: 1px;
    background: #ececec;
    transition: transform 160ms var(--ease);
  }
  .menu-toggle[aria-expanded="true"] span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-menu {
    padding: 12px 20px 24px;
    border-top: 1px solid #ffffff20;
    display: flex;
    flex-direction: column;
    background: #232323;
  }
  .mobile-menu a {
    padding: 13px 7px;
    font-size: 15px;
  }
  .hero {
    padding-block: 44px 21px;
    gap: 39px;
  }
  .hero .eyebrow {
    font-size: 7px;
    letter-spacing: 0.8px;
    margin-bottom: 22px;
    gap: 7px;
  }
  .small-line {
    width: 16px;
  }
  .hero h1 {
    font-size: clamp(44px, 12vw, 65px);
    letter-spacing: -2.6px;
  }
  .hero-description {
    font-size: 14px;
    line-height: 1.85;
    margin-top: 22px;
    max-width: 355px;
  }
  .hero-actions {
    gap: 23px;
    margin-top: 25px;
  }
  .hero-actions .button {
    font-size: 11px;
    padding-inline: 16px;
    gap: 19px;
    min-height: 47px;
  }
  .hero-actions .text-link {
    font-size: 11px;
  }
  .hero-meta {
    font-size: 8px;
    margin-top: 28px;
    gap: 20px;
  }
  .hero-meta span + span {
    padding-left: 20px;
  }
  .hero-showcase {
    width: 100%;
    margin: 0;
    padding-bottom: 48px;
  }
  .showcase-heading {
    font-size: 6px;
    letter-spacing: 0.8px;
    margin-bottom: 12px;
  }
  .app-window {
    border-width: 3px;
    border-radius: 7px;
    transform: none;
    width: calc(100% - 7px);
  }
  .app-chrome {
    height: 25px;
    font-size: 6px;
    padding-inline: 9px;
  }
  .app-body {
    grid-template-columns: 64px 1fr;
    min-height: 250px;
  }
  .app-sidebar {
    padding: 13px 6px;
    font-size: 5px;
    gap: 16px;
  }
  .app-sidebar > strong {
    font-size: 21px;
    margin-bottom: 9px;
  }
  .app-sidebar > span {
    gap: 4px;
  }
  .app-sidebar svg {
    width: 8px;
    height: 8px;
  }
  .app-sidebar > small {
    font-size: 4px;
    letter-spacing: 0.5px;
  }
  .app-main {
    padding: 15px 10px 10px;
  }
  .app-title h2 {
    font-size: 12px;
    letter-spacing: -0.3px;
  }
  .app-title small {
    font-size: 4px;
  }
  .demo-badge {
    font-size: 4px;
    padding: 2px 4px;
  }
  .app-summary {
    gap: 4px;
    margin-top: 13px;
  }
  .app-summary > div {
    padding: 7px 4px;
  }
  .app-summary span {
    font-size: 4px;
  }
  .app-summary strong {
    font-size: 5px;
  }
  .activity-chart {
    padding: 9px 7px 0;
    margin-block: 10px;
  }
  .activity-chart > div {
    font-size: 5px;
  }
  .activity-chart > div > span {
    font-size: 4px;
  }
  .app-task {
    font-size: 4px;
    gap: 5px;
    padding-block: 8px;
  }
  .app-task i {
    width: 3px;
    height: 3px;
  }
  .task-status {
    padding: 2px 3px;
  }
  .phone-preview {
    width: 107px;
    border-width: 4px;
    border-radius: 18px;
    right: 0;
    bottom: 17px;
    padding: 15px 7px 7px;
    transform: rotate(4deg);
  }
  .phone-notch {
    width: 36px;
    height: 7px;
    left: calc(50% - 18px);
  }
  .phone-brand {
    font-size: 10px;
  }
  .phone-preview > small {
    font-size: 4px;
    margin-top: 9px;
  }
  .phone-preview > strong {
    font-size: 12px;
  }
  .phone-preview > img {
    height: 48px;
    margin-top: 9px;
  }
  .phone-record {
    font-size: 4px;
    padding: 6px 4px;
    margin-top: 6px;
  }
  .phone-record b {
    font-size: 4px;
  }
  .phone-nav {
    margin-top: 8px;
    font-size: 8px;
    padding-top: 5px;
  }
  .showcase-caption {
    font-size: 5px;
    gap: 10px;
    margin-top: 12px;
    max-width: 65%;
    flex-wrap: wrap;
  }
  .hero-bottom {
    font-size: 6px;
    letter-spacing: 0.6px;
    align-items: center;
    gap: 25px;
    padding-block: 17px;
  }
  .hero-bottom > span {
    max-width: 150px;
  }
  .hero-bottom a {
    font-size: 8px;
    gap: 12px;
  }
  .section {
    padding-block: 54px;
  }
  .intro {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .intro .eyebrow {
    font-size: 9px;
    margin-bottom: 18px;
  }
  .intro > div > p:not(.eyebrow) {
    font-size: 13px;
    margin-top: 20px;
  }
  .intro .text-link {
    margin-top: 23px;
    font-size: 12px;
  }
  .capability-grid article {
    padding: 22px 18px;
    min-height: 185px;
  }
  .capability-grid h3 {
    font-size: 14px;
  }
  .capability-grid p {
    font-size: 11px;
  }
  .capability-grid svg {
    width: 28px;
    height: 28px;
    margin-bottom: 19px;
  }
  .section-heading {
    display: block;
  }
  .section-heading .eyebrow {
    margin-bottom: 18px;
    font-size: 9px;
  }
  h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
  }
  .section-heading > p {
    max-width: 100%;
    font-size: 13px;
    margin-top: 19px;
  }
  .portfolio-toolbar {
    margin-top: 25px;
    padding-bottom: 12px;
  }
  .filters {
    gap: 18px;
    flex-wrap: wrap;
  }
  .filter {
    font-size: 11px;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 33px;
    margin-top: 24px;
  }
  .product-visual {
    height: 285px;
  }
  .visual-category {
    font-size: 8px;
    top: 16px;
    left: 17px;
  }
  .visual-panel {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 15px;
  }
  .panel-top {
    font-size: 11px;
  }
  .panel-items {
    font-size: 8px;
    gap: 15px;
  }
  .panel-caption {
    font-size: 5px;
  }
  .product-copy {
    padding-top: 19px;
  }
  .product-name h3 {
    font-size: 22px;
    max-width: 100%;
  }
  .product-copy > p {
    font-size: 13px;
    margin-top: 11px;
  }
  .product-tags {
    margin-top: 14px;
    gap: 12px;
  }
  .product-tags span {
    font-size: 10px;
  }
  .product-tags span + span::before {
    margin-right: 12px;
  }
  .product-link {
    font-size: 12px;
    min-height: 34px;
    margin-top: 10px;
    gap: 16px;
  }
  .portfolio-bottom {
    font-size: 11px;
    line-height: 1.9;
    margin-top: 28px;
    padding-top: 20px;
  }
  .portfolio-bottom a {
    display: inline-block;
  }
  .approach .section {
    padding-block: 49px;
  }
  .approach .section-heading > p {
    padding-top: 0;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 28px;
  }
  .principles article {
    padding-top: 17px;
  }
  .principle-number {
    margin-bottom: 15px;
  }
  .principles h3 {
    font-size: 20px;
  }
  .principles p {
    font-size: 13px;
    max-width: 100%;
  }
  .company {
    grid-template-columns: 1fr;
    gap: 31px;
    padding-block: 54px;
  }
  .company-photo > img {
    height: 300px;
  }
  .company-photo figcaption {
    font-size: 9px;
    padding: 15px 17px;
  }
  .company-copy > p:not(.eyebrow) {
    font-size: 13px;
  }
  .company-copy .eyebrow {
    font-size: 9px;
    margin-bottom: 19px;
  }
  .company-copy .text-link {
    font-size: 12px;
  }
  .contact-inner {
    display: block;
    padding-block: 45px;
  }
  .contact .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
  }
  .contact h2 {
    font-size: 35px;
    letter-spacing: -1.3px;
    max-width: 370px;
  }
  .contact-action {
    margin-top: 25px;
    gap: 13px;
  }
  .contact .button {
    font-size: 12px;
    min-height: 47px;
    padding-inline: 18px;
    gap: 25px;
  }
  .contact-email {
    font-size: 12px;
  }
  .footer {
    padding-top: 39px;
  }
  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 29px 20px;
    padding-bottom: 30px;
  }
  .footer-main > div:first-child {
    grid-column: 1/-1;
  }
  .footer-main nav a {
    font-size: 12px;
    min-height: 25px;
  }
  .footer-main h3 {
    font-size: 9px;
  }
  .footer-bottom {
    gap: 15px;
    font-size: 9px;
    align-items: center;
    line-height: 1.6;
  }
  .footer-bottom > span:first-child {
    max-width: 205px;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
  .footer-bottom > a {
    white-space: nowrap;
  }
  .product-dialog {
    padding: 39px 25px 28px;
  }
  .product-dialog h2 {
    font-size: 29px;
  }
  .product-dialog .eyebrow {
    font-size: 10px;
  }
  .product-dialog > p:not(.eyebrow) {
    font-size: 13px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    transition: none !important;
    animation: none !important;
  }
  button:active,
  .button:active {
    transform: none;
  }
}

/* Monochrome photography follows Trianta’s black, grey, and white palette. */
.product-visual > img,
.company-photo > img,
.phone-preview > img {
  filter: grayscale(1);
}
