@font-face {
  font-family: DM Sans;
  src: url("/fonts/dm-sans.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
}
@font-face {
  font-family: Instrument Serif;
  src: url("/fonts/instrument-serif-italic.woff2") format("woff2");
  font-style: italic;
  font-weight: 400;
  font-display: swap;
}
:root {
  --paper: #f5f3ed;
  --white: #fcfbf7;
  --ink: #292b28;
  --muted: #666a62;
  --line: #d9d9cf;
  --copper: #965335;
  --copper-light: #dca583;
  --dark: #262d29;
  --serif: "Instrument Serif", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --gutter: clamp(22px, 4vw, 80px);
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 400 16px/1.65 var(--sans);
  -webkit-font-smoothing: antialiased;
}
button,
input,
textarea {
  font: inherit;
}
button,
a,
input,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button,
a {
  touch-action: manipulation;
}
button {
  color: inherit;
  cursor: pointer;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
video {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 8/5;
  background: #e8e7e0;
}
video::cue {
  font: 500 17px var(--sans);
  background: rgba(20, 27, 22, 0.92);
  color: #fff;
}
h1,
h2,
h3,
p,
figure {
  margin: 0;
}
h1,
h2,
h3 {
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: -0.047em;
}
h1 {
  font-size: clamp(52px, 5.4vw, 88px);
}
h2 {
  font-size: clamp(39px, 3.8vw, 64px);
}
h3 {
  font-size: 27px;
  letter-spacing: -0.035em;
}
em {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.035em;
}
p {
  color: var(--muted);
  text-wrap: pretty;
}
p + p {
  margin-top: 20px;
}
h1 + p,
h2 + p,
h3 + p {
  margin-top: 24px;
}
button:focus-visible,
a:focus-visible,
input:focus-visible,
textarea:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--copper);
  outline-offset: 5px;
}
::selection {
  background: #dec7b5;
  color: #242b25;
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(100% - var(--gutter) * 2, 1640px);
  margin-inline: auto;
}
.section-space {
  padding-block: 112px;
}
.eyebrow {
  display: block;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
}
.eyebrow + h1,
.eyebrow + h2 {
  margin-top: 26px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 20px;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
  padding-block: 9px;
  border-bottom: 1px solid currentColor;
  max-width: 100%;
}
.text-link > span {
  transition: transform 0.2s;
}
.text-link:hover > span {
  transform: translate(3px, -3px);
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  padding: 17px 24px;
  background: var(--ink);
  border: 1px solid var(--ink);
  border-radius: 3px;
  color: var(--white);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  min-height: 52px;
  transition:
    background 0.2s,
    transform 0.2s;
}
.button:hover {
  background: #445044;
  transform: translateY(-2px);
}
.button-light {
  background: var(--paper);
  color: var(--ink);
  border-color: var(--paper);
}
.button-light:hover {
  background: #e1d7c7;
}
.skip {
  position: fixed;
  left: 20px;
  top: -70px;
  padding: 12px 24px;
  background: var(--ink);
  color: white;
  z-index: 100;
}
.skip:focus {
  top: 16px;
}
.site-header {
  background: rgba(245, 243, 237, 0.97);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 30;
}
.site-header nav {
  min-height: 96px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 19px;
  line-height: 1.15;
  font-weight: 600;
  letter-spacing: -0.045em;
  flex-shrink: 0;
}
.brand-sub {
  display: block;
  font-size: 9px;
  letter-spacing: 0.11em;
  font-weight: 400;
  text-transform: uppercase;
  margin-top: 7px;
}
.brand img {
  width: 36px;
  height: 24px;
}
.navlinks {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 12px;
}
.navlinks > a {
  position: relative;
  padding-block: 12px;
}
.navlinks > a[aria-current]::after {
  content: "";
  position: absolute;
  bottom: 3px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--copper);
}
.navlinks > a:hover {
  color: var(--copper);
}
.navlinks .nav-cta {
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 12px 18px;
  display: flex;
  gap: 35px;
  margin-left: 20px;
}
.navtoggle {
  display: none;
}
.home-hero {
  position: relative;
  overflow: hidden;
  padding-block: 88px 76px;
}
.ridge {
  position: absolute;
  pointer-events: none;
  background: url("/img/crest-ridges.svg") center/cover no-repeat;
  opacity: 0.5;
  inset: 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.25fr;
  gap: clamp(36px, 4.6vw, 80px);
  align-items: center;
  position: relative;
}
.hero-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  letter-spacing: 0.12em;
}
.copper-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--copper);
  flex-shrink: 0;
}
.hero-copy h1 {
  font-size: clamp(53px, 4.6vw, 78px);
  line-height: 1.035;
  letter-spacing: -0.055em;
  margin-top: 33px;
}
.hero-copy h1 em {
  display: inline-block;
  line-height: 1.05;
  white-space: nowrap;
  font-size: 1.1em;
  color: var(--copper);
}
.hero-copy > p {
  font-size: 16px;
  max-width: 400px;
  line-height: 1.85;
  margin-top: 30px;
}
.hero-actions {
  display: flex;
  gap: 28px;
  align-items: center;
  margin-top: 32px;
}
.hero-actions > .text-link {
  border: 0;
}
.hero-note {
  display: flex;
  gap: 16px;
  align-items: center;
  margin-top: 64px;
  font-size: 11px;
  line-height: 1.9;
  color: var(--muted);
}
.hero-note strong {
  font-weight: 500;
  color: var(--ink);
}
.tiny-mark {
  font-size: 35px;
  color: var(--copper);
  font-family: Georgia, serif;
}
.showcase {
  background: var(--dark);
  color: var(--paper);
  border-radius: 6px;
  min-width: 0;
  box-shadow: 0 28px 45px -35px #28312b99;
  padding: 26px 26px 0;
}
.showcase-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 25px;
  color: #c1c8bd;
}
.showcase-heading .eyebrow {
  font-size: 8px;
}
.live-dot {
  font-size: 9px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.live-dot::before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--copper-light);
}
.showcase-screen {
  position: relative;
  border: 1px solid #5a6155;
  border-radius: 3px;
  overflow: hidden;
  background: #e8e7e0;
  box-shadow: 0 12px 25px -18px #000;
}
.showcase-screen video {
  aspect-ratio: 8/5;
}
.motion-toggle {
  position: absolute;
  right: 10px;
  bottom: 10px;
  border: 1px solid #d2d7cd;
  background: #fcfbf7ed;
  border-radius: 3px;
  font-size: 10px;
  line-height: 1.4;
  min-height: 36px;
  padding: 9px 12px;
  color: var(--ink);
  box-shadow: 0 2px 6px #0002;
}
.showcase-foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding-block: 24px 26px;
}
.showcase-foot > div > span {
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--copper-light);
}
.showcase-foot h2 {
  font-size: 22px;
  max-width: 280px;
  letter-spacing: -0.03em;
  margin-top: 9px;
  line-height: 1.2;
}
.showcase-foot > .text-link {
  flex-shrink: 0;
  font-size: 10px;
  gap: 16px;
  border-color: #7b8179;
}
.showcase-tabs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid #525a51;
}
.showcase-tabs button {
  background: none;
  border: 0;
  color: #b1b9ae;
  border-top: 2px solid transparent;
  margin-top: -1px;
  padding: 18px 0;
  font-size: 10px;
  text-align: left;
  line-height: 1.4;
}
.showcase-tabs button + button {
  padding-left: 14px;
}
.showcase-tabs button > span {
  font-size: 8px;
  margin-right: 10px;
  color: #c4a38a;
}
.showcase-tabs button[aria-selected="true"] {
  border-color: var(--copper-light);
  color: var(--paper);
}
.showcase-tabs button:hover {
  color: white;
}
.nojs-note {
  padding-bottom: 20px;
  color: var(--paper);
}
.client-strip {
  border-block: 1px solid var(--line);
  padding-block: 30px;
}
.client-strip > .wrap {
  display: flex;
  align-items: center;
  gap: 55px;
}
.client-strip .eyebrow {
  color: var(--muted);
  font-size: 8px;
  width: 132px;
  flex-shrink: 0;
}
.client-strip .wrap > div {
  display: flex;
  justify-content: space-between;
  width: 100%;
  gap: 25px;
  align-items: center;
  flex-wrap: wrap;
}
.client-strip .wrap > div > span {
  font-size: 17px;
  letter-spacing: -0.03em;
  color: #65685f;
  font-weight: 500;
}
.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 52px;
}
.section-heading > div:first-child {
  flex-shrink: 0;
}
.section-heading > p,
.section-heading > div:not(:first-child) {
  max-width: 375px;
  font-size: 15px;
}
.section-heading .text-link {
  flex-shrink: 0;
}
.offer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.offer {
  display: block;
  min-width: 0;
}
.offer-art {
  height: 230px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid #dddacf;
  background: #e8e6de;
  margin-bottom: 27px;
  overflow: hidden;
  border-radius: 3px;
}
.offer .eyebrow {
  font-size: 8px;
  color: var(--muted);
  margin-bottom: 14px;
}
.offer h3 {
  font-size: 25px;
}
.offer p {
  font-size: 13px;
  line-height: 1.85;
  margin-top: 17px;
  max-width: 330px;
}
.offer .text-link {
  margin-top: 18px;
  font-size: 11px;
  border: 0;
}
.offer-art > * {
  transition: transform 0.5s;
}
.offer:hover .offer-art > * {
  transform: translateY(-5px);
}
.mini-browser {
  width: 67%;
  height: 170px;
  background: var(--white);
  box-shadow: 0 20px 25px -20px #65564280;
  border: 1px solid #d1cbbe;
  border-radius: 4px;
  padding: 10px 12px;
  transform: rotate(-4deg);
}
.mini-browser > i {
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #beb7a9;
  vertical-align: top;
}
.mini-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 9px;
  padding: 17px 4px 0;
  border-top: 1px solid #e9e4da;
  position: relative;
}
.mini-layout > b {
  font-size: 23px;
  line-height: 1.08;
  letter-spacing: -1px;
  font-weight: 500;
}
.mini-layout > span {
  height: 9px;
  width: 53px;
  background: var(--copper);
  margin-top: 3px;
}
.mini-mountain {
  height: 68px;
  background: var(--copper);
  clip-path: polygon(0 100%, 28% 40%, 40% 62%, 70% 0, 100% 100%);
}
.art-tools {
  background: #e1e6dd;
}
.mini-schedule {
  background: var(--white);
  padding: 20px;
  width: 67%;
  box-shadow: 0 20px 25px -20px #28442c66;
  transform: rotate(3deg);
  border: 1px solid #c8d0c1;
  border-radius: 4px;
}
.mini-schedule > span {
  font-size: 8px;
  letter-spacing: 1px;
}
.mini-schedule > div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-top: 10px;
}
.mini-schedule b {
  font-size: 8px;
  font-weight: 500;
}
.mini-schedule i {
  height: 23px;
  border-radius: 2px;
  background: #dde5d7;
}
.mini-schedule i:nth-of-type(3n) {
  background: #b6c5ab;
}
.mini-schedule small {
  font-size: 8px;
  color: #627458;
  display: block;
  margin-top: 16px;
}
.art-ai {
  background: #eaddd0;
}
.mini-chat {
  width: 70%;
  font-size: 10px;
  transform: rotate(-3deg);
}
.mini-chat > span {
  display: block;
  margin-left: 20px;
  background: #dac5b2;
  padding: 13px;
  border-radius: 9px 9px 0 9px;
  font-size: 9px;
}
.mini-chat > div {
  display: flex;
  gap: 14px;
  background: #f9f5ee;
  padding: 19px 14px;
  margin-top: 11px;
  border: 1px solid #d3beaa;
  border-radius: 9px 9px 9px 0;
  box-shadow: 0 20px 25px -20px #74513888;
}
.mini-chat > div > b {
  color: var(--copper);
  font-size: 25px;
  line-height: 1;
}
.mini-chat p {
  font-size: 13px;
  line-height: 1.55;
}
.mini-chat i {
  font-size: 9px;
  font-style: normal;
}
.mini-chat small {
  font-size: 8px;
  margin-top: 10px;
  display: block;
}
.home-document {
  border-block: 1px solid var(--line);
  background: #e9e8df;
  overflow: hidden;
}
.home-document-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 90px;
  align-items: center;
  padding-block: 58px;
}
.home-document-grid h2 {
  font-size: 48px;
}
.home-document-grid p {
  font-size: 14px;
  max-width: 340px;
}
.home-document-grid .text-link {
  margin-top: 25px;
}
.document-peek {
  position: relative;
  transform: rotate(-3deg);
  border: 1px solid #c9c7bc;
  box-shadow: 0 14px 30px -20px #2c443b88;
  transition: transform 0.4s;
}
.document-peek:hover {
  transform: rotate(0);
}
.document-peek img {
  width: 100%;
  aspect-ratio: 16/9;
}
.document-peek > span {
  position: absolute;
  bottom: -16px;
  right: 16px;
  font-size: 10px;
  background: var(--dark);
  color: var(--paper);
  padding: 12px 18px;
  border-radius: 2px;
  transform: rotate(3deg);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15%;
  align-items: start;
}
.contact-grid > div > p {
  max-width: 390px;
  font-size: 15px;
}
.contact-email {
  display: inline-block;
  font-size: 19px;
  letter-spacing: -0.02em;
  border-bottom: 1px solid var(--line);
  padding-bottom: 8px;
  margin-top: 25px;
}
.about-note {
  border-top: 1px solid var(--line);
  padding-top: 30px;
  margin-top: 55px;
  max-width: 400px;
}
.about-note p {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 12px;
}
.form-panel {
  border: 1px solid var(--line);
  padding: 35px;
  background: var(--white);
  border-radius: 4px;
}
.contact-form {
  display: grid;
  gap: 22px;
  margin-top: 30px;
}
.contact-form label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #c7c9bf;
  border-radius: 0;
  background: transparent;
  padding: 8px 0;
  color: var(--ink);
  font-size: 16px;
  resize: vertical;
}
.contact-form textarea {
  min-height: 100px;
  font-size: 14px;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--copper);
}
.contact-form .button {
  justify-self: start;
  margin-top: 6px;
  min-width: 160px;
}
.contact-form .button:disabled {
  opacity: 0.6;
  cursor: wait;
  transform: none;
}
.hp {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
.form-status {
  font-size: 12px;
}
.form-status:empty {
  display: none;
}
.form-status.err {
  color: #a23420;
}
.form-status.ok {
  color: #365a37;
}
.form-note {
  font-size: 10px;
  margin-top: 18px;
}
.page-intro {
  padding-block: 88px;
  position: relative;
  overflow: hidden;
}
.intro-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 12%;
  align-items: end;
  position: relative;
}
.intro-grid h1 {
  font-size: clamp(54px, 5.2vw, 86px);
}
.intro-grid h1 em {
  color: var(--copper);
}
.intro-grid p {
  max-width: 480px;
  font-size: 16px;
  line-height: 1.85;
}
.intro-aside .text-link {
  margin-top: 24px;
}
.work-intro {
  border-bottom: 1px solid var(--line);
  padding-block: 78px;
}
.work-index > a {
  display: flex;
  gap: 22px;
  align-items: center;
  border-top: 1px solid var(--line);
  padding: 22px 0;
}
.work-index > a:last-child {
  border-bottom: 1px solid var(--line);
}
.work-index > a > span:first-child {
  font-size: 10px;
  color: var(--copper);
  align-self: start;
  margin-top: 4px;
}
.work-index > a > span:last-child {
  margin-left: auto;
  font-size: 23px;
}
.work-index strong {
  display: block;
  font-size: 20px;
  font-weight: 500;
  letter-spacing: -0.03em;
}
.work-index small {
  display: block;
  color: var(--muted);
  font-size: 11px;
  margin-top: 4px;
}
.work-index > a:hover strong {
  color: var(--copper);
}
.case + .case {
  border-top: 1px solid var(--line);
}
.case:nth-child(even) {
  background: #eceee6;
}
.case-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.65fr;
  gap: 6%;
  align-items: start;
}
.case-copy {
  position: sticky;
  top: 128px;
}
.case-copy h2 {
  font-size: clamp(35px, 2.9vw, 49px);
  line-height: 1.1;
}
.case-copy h3 {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0;
  margin-top: 31px;
}
.case-copy p {
  font-size: 13px;
  line-height: 1.9;
  margin-top: 15px;
}
.case-meta {
  border-top: 1px solid var(--line);
  padding-top: 22px;
  margin-top: 28px;
  margin-bottom: 20px;
}
.case-meta dt {
  font-size: 8px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
}
.case-meta dd {
  margin: 9px 0 0;
  font-size: 11px;
}
.case-copy .text-link {
  font-size: 11px;
}
.private-label {
  font-size: 11px;
  color: var(--muted);
}
.case-demo {
  min-width: 0;
  border: 1px solid #c7cbbf;
  background: var(--white);
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 35px -30px #283b2980;
}
.window-bar {
  height: 38px;
  background: #e4e8de;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-inline: 16px;
  font-size: 9px;
  color: #5e6658;
  border-bottom: 1px solid #ced3c7;
}
.window-bar > span:first-child {
  display: flex;
  gap: 4px;
}
.window-bar i {
  width: 5px;
  height: 5px;
  background: #a8b3a0;
  border-radius: 50%;
  display: block;
}
.demo-caption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 12px 20px;
  font-size: 9px;
  color: var(--muted);
  border-top: 1px solid var(--line);
}
.chapters {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding-inline: 10px;
  border-top: 1px solid var(--line);
  background: #eeefe7;
}
.chapters button {
  background: transparent;
  border: 0;
  border-top: 2px solid transparent;
  text-align: left;
  padding: 16px 10px;
  font-size: 10px;
  line-height: 1.5;
}
.chapters button span {
  font-size: 8px;
  color: var(--copper);
  display: block;
  margin-bottom: 5px;
}
.chapters button:hover,
.chapters button[aria-current="true"] {
  background: #e0e4d6;
  border-top-color: var(--copper);
}
.transcript {
  padding: 14px 20px;
  border-top: 1px solid var(--line);
  font-size: 11px;
}
.transcript summary {
  cursor: pointer;
  color: var(--muted);
  width: fit-content;
}
.transcript ol {
  padding-left: 20px;
  margin: 16px 0 5px;
}
.transcript li {
  margin-block: 10px;
  line-height: 1.85;
  color: var(--muted);
}
.more-sites {
  border-top: 1px solid var(--line);
}
.site-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.site-card img {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 3px;
  aspect-ratio: 8/5;
  object-fit: cover;
  transition: filter 0.25s;
}
.site-card:hover img {
  filter: brightness(0.94);
}
.site-card > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 24px;
}
.site-card h3 {
  font-size: 23px;
}
.site-card p {
  font-size: 12px;
  margin-top: 9px;
}
.service-list {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 50px 1fr 1.05fr 150px;
  gap: 45px;
  padding-block: 42px;
  align-items: center;
  border-bottom: 1px solid var(--line);
}
.service-number {
  align-self: start;
  font-size: 10px;
  color: var(--copper);
  margin-top: 9px;
}
.service-row h2 {
  font-size: 36px;
}
.service-row p {
  font-size: 13px;
  max-width: 400px;
}
.service-examples {
  display: block;
  font-size: 9px;
  color: var(--copper);
  margin-top: 15px;
}
.service-row > .text-link {
  font-size: 11px;
  justify-self: end;
  align-self: center;
}
.document-section {
  background: #e8ebe1;
  margin-top: 90px;
  border-block: 1px solid #d0d6c8;
}
.document-section .section-heading {
  align-items: end;
}
.document-section .section-heading > div:last-child {
  max-width: 390px;
}
.small-note {
  display: block;
  font-size: 11px;
  margin-top: 22px;
  color: #565f4d;
}
.document-comparison {
  border: 1px solid #bfc7b5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--white);
  box-shadow: 0 18px 30px -30px #1d3d23;
}
.comparison-toolbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 24px;
  border-bottom: 1px solid #c9d0c1;
  background: #f3f4ec;
  font-size: 11px;
}
.comparison-toolbar b {
  font-weight: 500;
}
.comparison-toolbar > span > span {
  font-size: 10px;
  color: var(--muted);
}
.comparison-presets {
  display: flex;
  gap: 5px;
}
.comparison-presets button {
  padding: 8px 12px;
  min-height: 34px;
  border: 1px solid transparent;
  border-radius: 2px;
  background: none;
  font-size: 10px;
}
.comparison-presets button:hover {
  border-color: #b0b9a4;
}
.comparison-presets button[aria-pressed="true"] {
  background: #364737;
  color: #fff;
}
.comparison-stage {
  position: relative;
  aspect-ratio: 16/9;
  isolation: isolate;
}
.comparison-stage img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
}
.comparison-after {
  clip-path: inset(0 calc(100% - var(--reveal)) 0 0);
}
.comparison-line {
  position: absolute;
  left: var(--reveal);
  top: 0;
  bottom: 0;
  width: 2px;
  transform: translateX(-50%);
  background: var(--paper);
  box-shadow: 0 0 5px #22332666;
  z-index: 2;
  pointer-events: none;
}
.comparison-line > span {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  box-shadow: 0 3px 10px #24302755;
  font:
    400 23px Georgia,
    serif;
  letter-spacing: 6px;
  padding-left: 6px;
  border: 1px solid #b7bfae;
}
.comparison-stage input {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
  z-index: 4;
  touch-action: pan-y;
  -webkit-appearance: none;
  appearance: none;
}
.comparison-stage input::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 48px;
  height: 100%;
  cursor: ew-resize;
}
.comparison-stage input::-moz-range-thumb {
  border: 0;
  width: 48px;
  height: 100%;
  cursor: ew-resize;
}
.comparison-stage:focus-within {
  outline: 3px solid var(--copper);
  outline-offset: -3px;
}
.comparison-stage:focus-within .comparison-line > span {
  outline: 3px solid var(--copper);
  outline-offset: 4px;
}
.comparison-label {
  position: absolute;
  bottom: 18px;
  background: #fcfbf7ee;
  padding: 7px 12px;
  font-size: 9px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  border: 1px solid #c7cdbf;
  pointer-events: none;
  z-index: 3;
}
.label-after {
  left: 18px;
}
.label-before {
  right: 18px;
}
.comparison-footer {
  padding: 15px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  font-size: 10px;
  color: var(--muted);
}
.comparison-footer > div {
  display: flex;
  gap: 25px;
}
.comparison-footer a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.document-notes {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
  margin-block: 42px;
}
.document-notes > div {
  position: relative;
  padding-left: 35px;
}
.document-notes > div > span {
  position: absolute;
  left: 0;
  top: 5px;
  color: #6c775e;
  font-size: 9px;
}
.document-notes h3 {
  font-size: 21px;
}
.document-notes p {
  font-size: 12px;
  margin-top: 10px;
}
.document-section > .wrap > .text-link {
  font-size: 12px;
}
.process-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16%;
}
.process-grid > div > p {
  font-size: 14px;
  max-width: 330px;
}
.process {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}
.process li {
  display: flex;
  gap: 35px;
  border-top: 1px solid var(--line);
  padding-block: 27px;
}
.process li > span {
  font-size: 10px;
  color: var(--copper);
  padding-top: 5px;
}
.process h3 {
  font-size: 25px;
}
.process p {
  font-size: 13px;
  margin-top: 14px;
  max-width: 410px;
}
.closing {
  border-block: 1px solid #3b4b3d;
  background: var(--dark);
  color: var(--paper);
  padding-block: 70px;
  position: relative;
  overflow: hidden;
}
.closing::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("/img/crest-ridges.svg") right/1000px no-repeat;
  opacity: 0.12;
  filter: invert(1);
  pointer-events: none;
}
.closing-grid {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 55px;
  position: relative;
}
.closing .eyebrow {
  color: var(--copper-light);
}
.closing h2 {
  font-size: 40px;
  max-width: 640px;
  margin-top: 17px;
}
.closing p {
  font-size: 13px;
  color: #b9c2b4;
  margin-top: 16px;
}
.closing .button {
  background: var(--paper);
  color: var(--ink);
  flex-shrink: 0;
}
.page-jumps {
  display: flex;
  gap: 18px;
  margin-top: 24px;
  flex-wrap: wrap;
}
.page-jumps a {
  font-size: 10px;
  border-bottom: 1px solid var(--line);
  padding-bottom: 5px;
}
.game-feature {
  background: #1f2929;
  color: var(--paper);
  padding-block: 60px 25px;
  position: relative;
  overflow: hidden;
}
.game-feature::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    radial-gradient(ellipse at 10% 0, #37605b66, transparent 50%),
    radial-gradient(ellipse at 90% 80%, #614a7044, transparent 50%);
}
.game-feature > .wrap {
  position: relative;
}
.game-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 80px;
  padding-bottom: 48px;
}
.game-heading h2 {
  font-size: clamp(60px, 7vw, 112px);
  line-height: 0.87;
  letter-spacing: -0.04em;
}
.game-heading h2 em {
  color: #aad4c0;
}
.game-heading .eyebrow {
  font-size: 9px;
  color: #b9cec2;
}
.game-heading > div:last-child {
  max-width: 380px;
}
.game-heading p {
  color: #d1dcd1;
  font-size: 15px;
}
.game-heading .button {
  margin-top: 24px;
}
.game-credit {
  display: block;
  font-size: 10px;
  line-height: 1.8;
  color: #b2c2b5;
  margin-top: 21px;
  max-width: 330px;
}
.game-cinema {
  position: relative;
  border: 1px solid #63757080;
  border-radius: 4px;
  overflow: hidden;
  background: #101f27;
}
.game-cinema video {
  aspect-ratio: 16/9;
  object-fit: cover;
  background: #152029;
  max-height: 800px;
}
.game-cinema-label {
  position: absolute;
  top: 15px;
  left: 18px;
  color: #fff;
  font-size: 9px;
  padding: 7px 10px;
  background: #15242adb;
  border: 1px solid #60857566;
  pointer-events: none;
}
.game-foot {
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 10px;
  color: #b8c9bd;
  padding-top: 22px;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.product-card {
  min-width: 0;
}
.product-card > img {
  border: 1px solid var(--line);
  border-radius: 3px;
  width: 100%;
  aspect-ratio: 8/5;
  object-fit: cover;
}
.product-card > div {
  padding-top: 24px;
}
.product-card .eyebrow {
  font-size: 8px;
  color: var(--copper);
}
.product-card h3 {
  font-size: 28px;
  margin-top: 13px;
}
.product-card p {
  font-size: 12px;
  line-height: 1.9;
  margin-top: 14px;
  max-width: 340px;
}
.product-card .text-link {
  font-size: 11px;
  margin-top: 17px;
}
.experiments {
  margin-top: 55px;
  border-block: 1px solid var(--line);
}
.experiments summary {
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  font-size: 15px;
  font-weight: 500;
  padding-block: 24px;
  list-style: none;
}
.experiments summary::-webkit-details-marker {
  display: none;
}
.experiments summary > span:last-child {
  font-size: 11px;
  color: var(--muted);
  font-weight: 400;
}
.experiment-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  padding-bottom: 30px;
}
.experiment-grid img {
  border: 1px solid var(--line);
  border-radius: 3px;
}
.experiment-grid h3 {
  font-size: 21px;
  margin-top: 20px;
}
.experiment-grid p {
  font-size: 12px;
  margin-top: 12px;
}
.more-games {
  background: #e9e6dd;
  border-block: 1px solid var(--line);
  padding-block: 50px;
}
.more-games > .wrap {
  display: grid;
  grid-template-columns: 0.65fr 1fr 1fr;
  gap: 65px;
  align-items: center;
}
.more-games h2 {
  font-size: 43px;
  margin-top: 14px;
}
.more-games .wrap > a {
  display: flex;
  gap: 25px;
  align-items: center;
}
.more-games img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 3px;
  border: 1px solid #c8c3b8;
}
.more-games h3 {
  font-size: 22px;
}
.more-games p {
  font-size: 12px;
  margin-top: 10px;
}
.more-games .text-link {
  font-size: 10px;
  border: 0;
  margin-top: 8px;
}
.platform-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 16%;
  align-items: start;
}
.platform-lede {
  font-size: 20px;
  line-height: 1.7;
  color: var(--ink);
  max-width: 520px;
}
.platform-points {
  display: flex;
  gap: 40px;
  margin-top: 35px;
}
.platform-points h3 {
  font-size: 18px;
}
.platform-points p {
  font-size: 12px;
  margin-top: 12px;
}
.footer-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-block: 42px;
  border-bottom: 1px solid var(--line);
}
.footer-top > span {
  font-size: 11px;
  color: var(--muted);
}
.footer-top > a:last-child {
  font-size: 12px;
}
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  padding-block: 23px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}
@media (min-width: 1800px) {
  .hero-copy > p {
    font-size: 18px;
    max-width: 450px;
  }
  .hero-copy h1 {
    font-size: 84px;
  }
  .home-hero {
    padding-block: 110px 95px;
  }
  .hero-note {
    margin-top: 85px;
  }
  .showcase {
    padding: 32px 32px 0;
  }
  .showcase-foot h2 {
    font-size: 26px;
    max-width: 330px;
  }
  .showcase-tabs button {
    font-size: 12px;
    padding-block: 22px;
  }
  .offer-art {
    height: 260px;
  }
  .mini-browser {
    max-width: 290px;
  }
  .mini-schedule,
  .mini-chat {
    max-width: 290px;
  }
}
@media (max-width: 1150px) {
  .navlinks {
    gap: 23px;
  }
  .navlinks .nav-cta {
    margin-left: 0;
  }
  .hero-grid {
    grid-template-columns: 0.9fr 1.1fr;
    gap: 30px;
  }
  .hero-copy h1 {
    font-size: 50px;
  }
  .hero-copy > p {
    font-size: 14px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
  }
  .hero-actions {
    gap: 18px;
  }
  .hero-actions .button {
    padding-inline: 18px;
  }
  .hero-note {
    margin-top: 35px;
  }
  .showcase {
    padding: 18px 18px 0;
  }
  .showcase-heading {
    margin-bottom: 18px;
  }
  .showcase-heading .live-dot {
    max-width: 125px;
    font-size: 8px;
  }
  .showcase-foot {
    padding-block: 18px;
    gap: 15px;
  }
  .showcase-foot h2 {
    font-size: 19px;
  }
  .showcase-foot .text-link {
    font-size: 9px;
    gap: 6px;
  }
  .showcase-tabs button {
    font-size: 9px;
  }
  .showcase-tabs button > span {
    margin-right: 5px;
  }
  .client-strip > .wrap {
    gap: 30px;
  }
  .client-strip .wrap > div > span {
    font-size: 14px;
  }
  .section-heading {
    gap: 30px;
  }
  .section-heading > p {
    max-width: 300px;
  }
  .section-heading > .text-link {
    display: none;
  }
  .offer-grid,
  .site-grid,
  .product-grid {
    gap: 22px;
  }
  .offer h3 {
    font-size: 22px;
  }
  .offer-art {
    height: 195px;
  }
  .mini-browser,
  .mini-schedule,
  .mini-chat {
    width: 76%;
  }
  .home-document-grid {
    gap: 50px;
  }
  .home-document-grid h2 {
    font-size: 39px;
  }
  .contact-grid {
    gap: 8%;
  }
  .case-grid {
    gap: 4%;
    grid-template-columns: 0.9fr 1.6fr;
  }
  .case-copy h2 {
    font-size: 34px;
  }
  .case-copy p {
    font-size: 12px;
  }
  .chapters button {
    font-size: 9px;
    padding-inline: 7px;
  }
  .service-row {
    grid-template-columns: 25px 1fr 1fr;
    gap: 30px;
  }
  .service-row > .text-link {
    grid-column: 3;
    justify-self: start;
    margin-top: -15px;
  }
  .service-row h2 {
    font-size: 33px;
  }
  .more-games > .wrap {
    gap: 30px;
  }
  .more-games img {
    width: 75px;
    height: 90px;
  }
  .more-games .wrap > a {
    gap: 15px;
  }
  .more-games h3 {
    font-size: 19px;
  }
  .footer-top > span {
    display: none;
  }
}
@media (max-width: 800px) {
  html {
    scroll-padding-top: 95px;
  }
  .site-header nav {
    min-height: 79px;
    flex-wrap: wrap;
    gap: 0;
  }
  .brand {
    font-size: 18px;
  }
  .brand-sub {
    font-size: 8px;
  }
  .navtoggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    background: transparent;
    border: 1px solid var(--line);
    border-radius: 3px;
  }
  .navtoggle span {
    display: block;
    height: 1px;
    width: 18px;
    background: var(--ink);
    margin-inline: auto;
  }
  .navlinks {
    flex-basis: 100%;
    padding-block: 12px 22px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px;
    font-size: 12px;
  }
  .navlinks .nav-cta {
    padding: 8px 12px;
    gap: 12px;
  }
  .section-space {
    padding-block: 72px;
  }
  .home-hero {
    padding-block: 55px;
  }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .hero-copy h1 {
    font-size: clamp(52px, 9.6vw, 76px);
    margin-top: 24px;
  }
  .hero-copy > p {
    font-size: 16px;
    max-width: 470px;
    margin-top: 25px;
  }
  .hero-note {
    margin-top: 29px;
  }
  .hero-copy .eyebrow {
    font-size: 9px;
  }
  .showcase {
    padding: 24px 24px 0;
  }
  .showcase-heading .live-dot {
    max-width: none;
    font-size: 9px;
  }
  .showcase-foot h2 {
    font-size: 23px;
  }
  .showcase-foot .text-link {
    font-size: 11px;
  }
  .showcase-foot {
    padding-block: 24px;
  }
  .showcase-tabs button {
    font-size: 11px;
    padding-block: 20px;
  }
  .client-strip > .wrap {
    align-items: start;
    flex-direction: column;
    gap: 20px;
  }
  .client-strip .eyebrow {
    width: auto;
  }
  .client-strip .wrap > div {
    justify-content: flex-start;
    gap: 20px 28px;
  }
  .client-strip .wrap > div > span {
    font-size: 15px;
  }
  .section-heading {
    align-items: start;
    gap: 25px;
  }
  .section-heading h2 {
    font-size: 42px;
  }
  .section-heading > p,
  .section-heading > div:not(:first-child) {
    font-size: 13px;
    max-width: 270px;
  }
  .offer-grid {
    gap: 18px;
  }
  .offer-art {
    height: 165px;
  }
  .mini-browser {
    height: 132px;
    padding: 8px;
  }
  .mini-layout {
    padding: 10px 2px 0;
  }
  .mini-layout b {
    font-size: 17px;
  }
  .mini-mountain {
    height: 44px;
  }
  .mini-schedule {
    padding: 12px;
  }
  .mini-schedule i {
    height: 16px;
  }
  .mini-chat {
    font-size: 8px;
  }
  .mini-chat > span {
    font-size: 7px;
    padding: 8px;
  }
  .mini-chat > div {
    padding: 10px;
    gap: 6px;
  }
  .mini-chat p {
    font-size: 10px;
  }
  .mini-chat i {
    font-size: 7px;
  }
  .mini-chat small {
    font-size: 7px;
  }
  .offer h3 {
    font-size: 22px;
  }
  .offer p {
    font-size: 12px;
  }
  .home-document-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 55px;
  }
  .home-document-grid h2 {
    font-size: 44px;
  }
  .home-document-grid > div {
    max-width: 500px;
  }
  .document-peek {
    max-width: 600px;
    margin-block: 10px 20px;
  }
  .contact-grid {
    gap: 45px;
    grid-template-columns: 1fr 1fr;
  }
  .contact-grid h2 {
    font-size: 49px;
  }
  .contact-grid > div > p {
    font-size: 13px;
  }
  .contact-email {
    font-size: 15px;
  }
  .about-note {
    margin-top: 30px;
  }
  .form-panel {
    padding: 24px;
  }
  .form-panel > .eyebrow {
    font-size: 8px;
  }
  .intro-grid {
    gap: 40px;
    grid-template-columns: 1fr 1fr;
  }
  .intro-grid h1 {
    font-size: 52px;
  }
  .intro-grid p {
    font-size: 13px;
  }
  .page-intro {
    padding-block: 60px;
  }
  .work-index strong {
    font-size: 17px;
  }
  .work-index a {
    padding-block: 17px;
    gap: 15px;
  }
  .work-index small {
    font-size: 10px;
  }
  .case-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .case-copy {
    position: static;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
  }
  .case-copy .eyebrow,
  .case-copy h2 {
    grid-column: 1;
  }
  .case-copy h2 {
    font-size: 42px;
    margin-top: 20px;
  }
  .case-copy h3 {
    grid-column: 1;
    grid-row: 3;
    margin-top: 20px;
  }
  .case-copy > p {
    grid-column: 2;
    margin-top: 0;
    font-size: 13px;
  }
  .case-copy > p:first-of-type {
    grid-row: 1/3;
  }
  .case-copy > p:nth-of-type(2) {
    grid-row: 3/6;
  }
  .case-meta {
    grid-column: 1;
    margin-top: 20px;
    padding-top: 15px;
    margin-bottom: 12px;
  }
  .case-copy > .text-link,
  .private-label {
    grid-column: 1;
    justify-self: start;
  }
  .chapters button {
    font-size: 10px;
  }
  .service-row {
    gap: 25px;
  }
  .service-row h2 {
    font-size: 30px;
  }
  .document-section {
    margin-top: 60px;
  }
  .comparison-toolbar {
    padding: 14px;
  }
  .comparison-toolbar > span > span {
    display: none;
  }
  .document-notes {
    gap: 25px;
  }
  .document-notes > div {
    padding-left: 0;
  }
  .document-notes > div > span {
    position: static;
    display: block;
    margin-bottom: 13px;
  }
  .document-notes h3 {
    font-size: 20px;
  }
  .process-grid {
    gap: 55px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .process-grid h2 {
    font-size: 43px;
  }
  .process h3 {
    font-size: 23px;
  }
  .process li {
    gap: 20px;
  }
  .process p {
    font-size: 12px;
  }
  .closing-grid {
    gap: 35px;
  }
  .closing h2 {
    font-size: 34px;
  }
  .closing .button {
    font-size: 12px;
    padding-inline: 18px;
  }
  .game-heading {
    gap: 45px;
  }
  .game-heading h2 {
    font-size: 76px;
  }
  .game-heading .eyebrow {
    font-size: 8px;
  }
  .game-heading > div:last-child {
    max-width: 290px;
  }
  .game-heading p {
    font-size: 13px;
  }
  .game-heading .button {
    font-size: 12px;
  }
  .game-credit {
    font-size: 9px;
  }
  .product-grid {
    gap: 20px;
  }
  .product-card h3 {
    font-size: 23px;
  }
  .more-games > .wrap {
    grid-template-columns: 1fr 1fr;
    gap: 35px;
  }
  .more-games .wrap > div {
    grid-column: 1/-1;
  }
  .more-games h2 {
    font-size: 43px;
  }
  .more-games img {
    width: 90px;
    height: 95px;
  }
  .platform-grid {
    gap: 55px;
    grid-template-columns: 0.85fr 1.15fr;
  }
  .platform-grid h2 {
    font-size: 43px;
  }
  .platform-lede {
    font-size: 17px;
  }
  .platform-points {
    flex-direction: column;
    gap: 25px;
  }
  .footer-bottom {
    flex-wrap: wrap;
    gap: 15px;
  }
  .footer-bottom > div {
    width: 100%;
    padding-top: 5px;
  }
  .footer-top {
    padding-block: 32px;
  }
}
@media (max-width: 540px) {
  h1 {
    font-size: 50px;
  }
  h2 {
    font-size: 41px;
  }
  .hero-copy h1 {
    font-size: clamp(44px, 10.7vw, 58px);
  }
  .hero-copy h1 em {
    font-size: 1.08em;
  }
  .hero-copy > p {
    font-size: 14px;
    line-height: 1.8;
    max-width: 340px;
  }
  .hero-actions {
    gap: 23px;
    margin-top: 26px;
  }
  .hero-actions .text-link {
    font-size: 12px;
  }
  .hero-actions .button {
    font-size: 12px;
    padding-inline: 19px;
  }
  .hero-note {
    font-size: 10px;
    gap: 12px;
  }
  .home-hero {
    padding-block: 43px 37px;
  }
  .hero-grid {
    gap: 35px;
  }
  .hero-copy .eyebrow {
    font-size: 8px;
    letter-spacing: 0.08em;
  }
  .showcase {
    padding: 14px 14px 0;
    border-radius: 4px;
  }
  .showcase-heading {
    margin-bottom: 15px;
    gap: 10px;
  }
  .showcase-heading .eyebrow {
    font-size: 7px;
  }
  .showcase-heading .live-dot {
    font-size: 7px;
  }
  .showcase-foot {
    padding-block: 18px;
    gap: 14px;
  }
  .showcase-foot > div > span {
    font-size: 8px;
  }
  .showcase-foot h2 {
    font-size: 20px;
    max-width: 195px;
  }
  .showcase-foot > .text-link {
    font-size: 9px;
    gap: 7px;
  }
  .showcase-tabs button {
    font-size: 9px;
    padding-block: 17px;
  }
  .showcase-tabs button + button {
    padding-left: 8px;
  }
  .showcase-tabs button > span {
    display: none;
  }
  .motion-toggle {
    font-size: 9px;
    bottom: 6px;
    right: 6px;
    min-height: 32px;
    padding: 7px 9px;
  }
  .client-strip {
    padding-block: 24px;
  }
  .client-strip .wrap > div {
    gap: 14px 23px;
  }
  .client-strip .wrap > div > span {
    font-size: 13px;
  }
  .client-strip .eyebrow {
    font-size: 7px;
  }
  .section-space {
    padding-block: 58px;
  }
  .section-heading {
    display: block;
    margin-bottom: 32px;
  }
  .section-heading > p,
  .section-heading > div:not(:first-child) {
    margin-top: 24px;
    max-width: 350px;
    font-size: 14px;
  }
  .section-heading h2 {
    font-size: 41px;
  }
  .offer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .offer {
    display: grid;
    grid-template-columns: 130px 1fr;
    gap: 0 22px;
    align-content: center;
  }
  .offer-art {
    grid-row: 1/5;
    height: 100%;
    min-height: 195px;
    margin: 0;
  }
  .offer > .eyebrow {
    font-size: 7px;
    margin-top: 7px;
    margin-bottom: 12px;
  }
  .offer h3 {
    font-size: 24px;
    line-height: 1.12;
  }
  .offer p {
    font-size: 11px;
    margin-top: 12px;
  }
  .offer .text-link {
    font-size: 10px;
    margin-top: 9px;
  }
  .mini-browser {
    width: 110px;
    height: 140px;
    flex-shrink: 0;
  }
  .mini-layout {
    grid-template-columns: 1fr;
  }
  .mini-layout b {
    font-size: 17px;
  }
  .mini-mountain {
    height: 35px;
    width: 60px;
    position: absolute;
    bottom: 0;
    right: 2px;
    opacity: 0.6;
  }
  .mini-layout > span {
    margin-top: 30px;
    width: 35px;
    height: 7px;
  }
  .mini-schedule {
    width: 105px;
    padding: 9px;
    flex-shrink: 0;
  }
  .mini-schedule > span {
    font-size: 6px;
  }
  .mini-schedule b {
    font-size: 6px;
  }
  .mini-schedule > div {
    gap: 4px;
  }
  .mini-schedule i {
    height: 18px;
  }
  .mini-schedule small {
    font-size: 6px;
  }
  .mini-chat {
    width: 110px;
    flex-shrink: 0;
  }
  .mini-chat > span {
    margin-left: 6px;
    font-size: 6px;
    padding: 10px 7px;
  }
  .mini-chat > div {
    padding: 12px 8px;
    gap: 7px;
  }
  .mini-chat p {
    font-size: 9px;
  }
  .mini-chat > div > b {
    font-size: 20px;
  }
  .mini-chat i {
    font-size: 7px;
  }
  .home-document-grid {
    padding-block: 45px;
    gap: 30px;
  }
  .home-document-grid h2 {
    font-size: 39px;
  }
  .home-document-grid p {
    font-size: 13px;
  }
  .document-peek > span {
    font-size: 8px;
    padding: 10px;
    bottom: -13px;
    right: 8px;
  }
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .contact-grid h2 {
    font-size: 54px;
  }
  .contact-grid > div > p {
    font-size: 14px;
  }
  .contact-email {
    font-size: 17px;
  }
  .about-note {
    max-width: none;
    padding-top: 22px;
    margin-top: 30px;
  }
  .about-note p {
    font-size: 12px;
    max-width: 370px;
  }
  .form-panel {
    padding: 25px;
  }
  .form-panel > .eyebrow {
    font-size: 9px;
  }
  .intro-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .intro-grid h1 {
    font-size: clamp(44px, 10.5vw, 58px);
  }
  .intro-grid p {
    font-size: 14px;
    max-width: 370px;
  }
  .intro-grid .eyebrow + h1 {
    margin-top: 21px;
  }
  .page-intro {
    padding-block: 46px;
  }
  .work-index {
    display: none;
  }
  .case-copy {
    display: block;
  }
  .case-copy h2 {
    font-size: 42px;
    max-width: 350px;
  }
  .case-copy h3 {
    margin-top: 23px;
  }
  .case-copy > p {
    font-size: 13px;
    max-width: 430px;
    margin-top: 15px;
  }
  .case-meta {
    padding-top: 17px;
    margin-top: 23px;
  }
  .case-meta dd {
    font-size: 10px;
  }
  .case-grid {
    gap: 27px;
  }
  .window-bar {
    height: 32px;
    padding-inline: 11px;
    font-size: 8px;
  }
  .chapters {
    grid-template-columns: 1fr 1fr;
    padding-inline: 7px;
  }
  .chapters button {
    padding: 11px 8px;
    font-size: 10px;
    border-bottom: 1px solid var(--line);
  }
  .chapters button span {
    display: inline-block;
    margin: 0 9px 0 0;
  }
  .demo-caption {
    padding: 10px 14px;
    font-size: 8px;
  }
  .transcript {
    padding: 12px 14px;
    font-size: 10px;
  }
  .site-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .site-card > div {
    margin-top: 17px;
  }
  .site-card h3 {
    font-size: 24px;
  }
  .site-card p {
    font-size: 12px;
    margin-top: 7px;
  }
  .service-row {
    grid-template-columns: 25px 1fr;
    gap: 0 18px;
    padding-block: 30px;
  }
  .service-row h2 {
    font-size: 35px;
  }
  .service-row > div {
    grid-column: 2;
    margin-top: 20px;
  }
  .service-row p {
    font-size: 13px;
  }
  .service-row > .text-link {
    grid-column: 2;
    margin-top: 12px;
    font-size: 11px;
  }
  .service-examples {
    font-size: 9px;
  }
  .document-section {
    margin-top: 45px;
  }
  .document-section .section-heading h2 {
    font-size: 40px;
  }
  .comparison-toolbar {
    align-items: start;
    flex-direction: column;
    gap: 13px;
    padding: 13px 14px;
  }
  .comparison-presets {
    width: 100%;
    justify-content: space-between;
  }
  .comparison-presets button {
    padding: 6px 11px;
    font-size: 10px;
  }
  .comparison-stage {
    aspect-ratio: 16/9;
  }
  .comparison-line > span {
    width: 40px;
    height: 40px;
    font-size: 18px;
  }
  .comparison-label {
    bottom: 7px;
    font-size: 7px;
    padding: 4px 6px;
    letter-spacing: 0.05em;
  }
  .label-after {
    left: 7px;
  }
  .label-before {
    right: 7px;
  }
  .comparison-footer {
    flex-direction: column;
    align-items: start;
    gap: 10px;
    padding: 13px 14px;
    font-size: 9px;
  }
  .comparison-footer > div {
    width: 100%;
    justify-content: space-between;
    gap: 15px;
  }
  .document-notes {
    display: block;
    margin-block: 30px;
  }
  .document-notes > div {
    padding: 16px 0 16px 30px;
    border-top: 1px solid #c7cebd;
  }
  .document-notes > div > span {
    position: absolute;
    top: 20px;
    left: 0;
    font-size: 8px;
  }
  .document-notes h3 {
    font-size: 22px;
  }
  .document-notes p {
    font-size: 12px;
    margin-top: 8px;
  }
  .document-section .text-link {
    font-size: 11px !important;
  }
  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .process-grid h2 {
    font-size: 43px;
  }
  .process-grid > div > p {
    font-size: 14px;
  }
  .process h3 {
    font-size: 26px;
  }
  .process p {
    font-size: 13px;
  }
  .closing {
    padding-block: 48px;
  }
  .closing-grid {
    flex-direction: column;
    align-items: start;
    gap: 25px;
  }
  .closing h2 {
    font-size: 37px;
  }
  .closing p {
    font-size: 13px;
  }
  .closing .eyebrow {
    font-size: 8px;
  }
  .game-feature {
    padding-block: 38px 21px;
  }
  .game-heading {
    display: block;
    padding-bottom: 29px;
  }
  .game-heading h2 {
    font-size: 84px;
  }
  .game-heading > div:last-child {
    max-width: none;
    margin-top: 28px;
  }
  .game-heading p {
    font-size: 14px;
    max-width: 330px;
  }
  .game-heading .button {
    margin-top: 20px;
  }
  .game-credit {
    font-size: 10px;
    max-width: 350px;
    margin-top: 18px;
  }
  .game-cinema-label {
    font-size: 7px;
    top: 7px;
    left: 7px;
    padding: 5px 7px;
  }
  .game-foot {
    gap: 15px;
    font-size: 9px;
  }
  .game-foot > span:last-child {
    display: none;
  }
  .product-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .product-card > div {
    padding-top: 19px;
  }
  .product-card h3 {
    font-size: 29px;
  }
  .product-card p {
    font-size: 13px;
  }
  .product-card .text-link {
    margin-top: 13px;
    font-size: 11px;
  }
  .experiments {
    margin-top: 35px;
  }
  .experiments summary {
    display: block;
    font-size: 15px;
    padding-block: 21px;
  }
  .experiments summary > span:last-child {
    display: block;
    font-size: 10px;
    margin-top: 6px;
  }
  .experiment-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .experiment-grid h3 {
    font-size: 25px;
  }
  .experiment-grid p {
    font-size: 13px;
  }
  .more-games > .wrap {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .more-games img {
    width: 100px;
    height: 105px;
  }
  .more-games .wrap > a {
    gap: 25px;
  }
  .more-games h3 {
    font-size: 24px;
  }
  .more-games p {
    font-size: 12px;
  }
  .more-games .text-link {
    font-size: 11px;
  }
  .platform-grid {
    grid-template-columns: 1fr;
    gap: 27px;
  }
  .platform-lede {
    font-size: 18px;
    max-width: 370px;
  }
  .platform-points {
    flex-direction: row;
    gap: 27px;
  }
  .platform-points h3 {
    font-size: 18px;
  }
  .platform-points p {
    font-size: 12px;
  }
  .footer-top {
    flex-direction: column;
    align-items: start;
    gap: 22px;
  }
  .footer-top > a:last-child {
    font-size: 12px;
  }
  .footer-bottom {
    font-size: 8px;
    align-items: start;
    flex-direction: column;
    gap: 10px;
  }
  .footer-bottom > div {
    gap: 25px;
    margin-top: 4px;
  }
  .navlinks {
    column-gap: 12px;
    font-size: 11px;
  }
  .navlinks .nav-cta {
    font-size: 10px;
  }
  .page-jumps {
    gap: 17px;
    font-size: 9px;
  }
}
@media (max-width: 360px) {
  :root {
    --gutter: 18px;
  }
  .brand-sub {
    font-size: 7px;
  }
  .hero-copy h1 {
    font-size: 40px;
  }
  .hero-actions {
    gap: 18px;
  }
  .showcase-foot > .text-link {
    max-width: 75px;
    line-height: 1.5;
  }
  .showcase-foot h2 {
    font-size: 18px;
  }
  .showcase-tabs button {
    font-size: 8px;
  }
  .offer {
    grid-template-columns: 105px 1fr;
    gap: 0 17px;
  }
  .offer h3 {
    font-size: 22px;
  }
  .mini-browser {
    width: 93px;
  }
  .mini-schedule {
    width: 89px;
  }
  .mini-chat {
    width: 91px;
  }
  .navlinks .nav-cta {
    gap: 7px;
    padding-inline: 8px;
  }
  .navlinks {
    gap: 10px;
  }
  .game-heading h2 {
    font-size: 73px;
  }
  .platform-points {
    flex-direction: column;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .site-header,
  .motion-toggle,
  .chapters,
  .closing,
  footer,
  .contact-form {
    display: none !important;
  }
  .wrap {
    width: 100%;
  }
  .case-copy {
    position: static;
  }
  .section-space {
    padding-block: 30px;
  }
  .case-grid,
  .hero-grid {
    display: block;
  }
  .showcase {
    color: #000;
    background: #eee;
  }
  video {
    max-height: 300px;
  }
  .comparison-presets {
    display: none;
  }
  .comparison-stage input {
    display: none;
  }
}

/* Basic content and links remain useful without scripting. */
html:not(.js) .navtoggle,
html:not(.js) .showcase-tabs,
html:not(.js) .comparison-presets,
html:not(.js) .comparison-stage input {
  display: none;
}
.demo-stamp {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 1;
  font-size: 8px;
  line-height: 1.4;
  padding: 5px 7px;
  background: #fcfbf7ec;
  color: #555e51;
  border: 1px solid #c2c9b9;
  border-radius: 2px;
  pointer-events: none;
}
@media (max-width: 540px) {
  .comparison-presets button {
    min-height: 44px;
  }
  .demo-stamp {
    font-size: 7px;
    top: 5px;
    right: 5px;
    padding: 4px 6px;
  }
}
@media (max-width: 540px) {
  .work-index {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 15px;
  }
  .work-index > a {
    display: block;
    padding: 12px 0;
    border-bottom: 1px solid var(--line);
  }
  .work-index > a > span:first-child {
    display: block;
    font-size: 8px;
    margin: 0 0 8px;
  }
  .work-index strong {
    font-size: 12px;
    line-height: 1.45;
    letter-spacing: -0.01em;
  }
  .work-index small,
  .work-index > a > span:last-child {
    display: none;
  }
}
