@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-latin-variable.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

/* Native HTML/CSS. Editorial gallery, not an implementation of a third-party design system.
   DESIGN_VARIANCE 7 / MOTION_INTENSITY 4 / VISUAL_DENSITY 3.
   Radii: buttons 999px, image tiles 10px, large surfaces 24px. Layers: header 10, dialogs native top layer. */
:root {
  color-scheme: light;
  --bg: #f6f7f4;
  --surface: #fcfdfa;
  --tint: #e9ede6;
  --tint-strong: #dfe7db;
  --ink: #202820;
  --muted: #626c60;
  --line: #d7ddd2;
  --accent: #35543d;
  --accent-hover: #26432e;
  --on-accent: #fafcf8;
  --shadow: 48, 68, 40;
  --radius: 24px;
  --ease: cubic-bezier(0.2, 0.7, 0.2, 1);
}
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) {
    color-scheme: dark;
    --bg: #141a16;
    --surface: #1c241e;
    --tint: #202b23;
    --tint-strong: #2a382c;
    --ink: #eef1e9;
    --muted: #b1bead;
    --line: #354234;
    --accent: #c1d9b7;
    --accent-hover: #d5e8cb;
    --on-accent: #1c3020;
    --shadow: 0, 8, 0;
  }
}
:root[data-theme="dark"] {
  color-scheme: dark;
  --bg: #141a16;
  --surface: #1c241e;
  --tint: #202b23;
  --tint-strong: #2a382c;
  --ink: #eef1e9;
  --muted: #b1bead;
  --line: #354234;
  --accent: #c1d9b7;
  --accent-hover: #d5e8cb;
  --on-accent: #1c3020;
  --shadow: 0, 8, 0;
}
*,
*::before,
*::after {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 106px;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Manrope, Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
body:has(dialog[open]) {
  overflow: hidden;
}
/* The tilted hero intentionally reaches the viewport edge; contain only its visual overflow. */
main {
  overflow: clip;
}
button,
input,
select,
textarea {
  font: inherit;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  color: inherit;
  cursor: pointer;
}
button,
a {
  touch-action: manipulation;
}
button {
  border: 0;
}
a {
  color: inherit;
  text-decoration: none;
}
img {
  display: block;
  max-width: 100%;
  height: auto;
}
svg {
  display: block;
  flex-shrink: 0;
}
figure,
p,
h1,
h2,
h3 {
  margin: 0;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex="0"]:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 5px;
}
::selection {
  color: var(--on-accent);
  background: var(--accent);
}
[hidden] {
  display: none !important;
}
.container {
  width: min(1200px, calc(100% - 96px));
  margin-inline: auto;
}
.section-space {
  padding-block: 114px;
}
.icon {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.eyebrow {
  font-size: 11px;
  font-weight: 700;
  line-height: 1.6;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h2 {
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.13;
  letter-spacing: -0.055em;
  font-weight: 600;
}
h3 {
  font-size: 23px;
  line-height: 1.3;
  letter-spacing: -0.035em;
  font-weight: 600;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 11px;
  min-height: 54px;
  padding: 14px 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.4;
  white-space: nowrap;
  transition:
    background-color 0.2s,
    color 0.2s,
    transform 0.2s var(--ease),
    border-color 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.button:active {
  transform: scale(0.98);
}
.button-primary {
  color: var(--on-accent);
  background: var(--accent);
}
.button-primary:hover {
  background: var(--accent-hover);
}
.button-outline {
  border-color: var(--line);
  background: transparent;
}
.button-outline:hover {
  background: var(--tint);
  border-color: var(--accent);
}
.button-small {
  min-height: 43px;
  padding: 10px 18px;
  font-size: 12px;
  gap: 20px;
}
.button-small .icon {
  width: 17px;
  height: 17px;
}
.button-wide {
  display: flex;
  width: 100%;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.6;
}
.text-link .icon {
  width: 18px;
  height: 18px;
  transition: transform 0.25s var(--ease);
}
.text-link:hover .icon {
  transform: translateX(4px);
}
.icon-button {
  display: grid;
  place-items: center;
  padding: 10px;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
}
.icon-button:hover {
  background: var(--tint);
}
.site-header {
  position: relative;
  z-index: 10;
  background: var(--bg);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  border-bottom: 1px solid var(--line);
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  line-height: 1;
  font-size: 26px;
  letter-spacing: -1.25px;
  font-weight: 700;
  flex-shrink: 0;
}
.brand-mark {
  width: 33px;
  height: 38px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.brand-mark img {
  max-width: none;
  width: 54px;
  height: 54px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-left: 28px;
  font-size: 12px;
  font-weight: 600;
}
.nav-links a {
  padding: 12px 0;
  color: var(--muted);
  transition: color 0.2s;
}
.nav-links a:hover {
  color: var(--ink);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.menu-toggle {
  display: none;
}
.hero {
  display: grid;
  grid-template-columns: 1.13fr 1fr;
  align-items: center;
  min-height: 632px;
  gap: 26px;
  padding-block: 38px 52px;
  position: relative;
}
.hero-copy {
  position: relative;
  z-index: 1;
  padding-bottom: 6px;
}
.hero h1 {
  font-size: clamp(48px, 6.08vw, 82px);
  line-height: 1.08;
  letter-spacing: -0.067em;
  font-weight: 600;
  margin: 25px 0 26px;
}
.hero h1 span {
  color: var(--accent);
  white-space: nowrap;
}
.hero-description {
  font-size: 16px;
  line-height: 1.8;
  max-width: 375px;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  align-items: flex-start;
  flex-direction: column;
  gap: 21px;
  margin-top: 30px;
}
.hero-actions .text-link {
  padding-left: 8px;
  font-size: 12px;
}
.hero-art {
  height: 541px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
  transform: rotate(-7deg);
  margin-right: -32px;
  margin-left: 10px;
  overflow: hidden;
  mask-image: linear-gradient(
    to bottom,
    transparent,
    #000 6%,
    #000 94%,
    transparent
  );
}
.art-column {
  display: flex;
  flex-direction: column;
  gap: 13px;
}
.art-column-one {
  margin-top: -100px;
}
.art-column-two {
  margin-top: 31px;
}
.art-column-three {
  margin-top: -18px;
}
.hero-art img {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
  background: var(--tint);
}
.hero-art .art-tall {
  height: 245px;
}
.hero-art .art-small {
  height: 155px;
}
.hero-art .art-square {
  height: 195px;
}
.reassurance {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 27px;
  font-size: 12px;
}
.reassurance p {
  line-height: 1.7;
  color: var(--muted);
}
.reassurance strong {
  font-weight: 600;
  color: var(--ink);
}
.reassurance > span {
  display: flex;
  align-items: center;
  gap: 11px;
  white-space: nowrap;
}
.reassurance .icon {
  width: 19px;
  height: 19px;
  color: var(--accent);
}
.section-heading {
  max-width: 650px;
  margin-bottom: 36px;
}
.section-heading > p {
  max-width: 440px;
  color: var(--muted);
  margin-top: 22px;
  font-size: 14px;
  line-height: 1.8;
}
.product-section {
  padding-bottom: 104px;
}
.product-tour {
  margin-top: 42px;
}
.tour-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  margin-bottom: 23px;
}
.tour-tabs button {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
}
.tour-tabs button .icon {
  width: 17px;
  height: 17px;
}
.tour-tabs button[aria-selected="true"] {
  background: var(--tint-strong);
  color: var(--ink);
}
.tour-tabs button:hover {
  color: var(--ink);
  background: var(--tint);
}
.product-image-wrap {
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--tint);
  box-shadow: 0 22px 60px -30px rgba(var(--shadow), 0.27);
}
.product-image-wrap img {
  width: 100%;
  aspect-ratio: 16/9;
  border-radius: 11px;
  object-fit: cover;
  background: #111713;
}
.tour-caption {
  text-align: center;
  font-size: 14px;
  margin-top: 24px;
  min-height: 24px;
}
.sample-note {
  text-align: center;
  color: var(--muted);
  font-size: 10px;
  margin-top: 7px;
}
.workflow-section {
  background: var(--tint);
  padding-block: 96px;
}
.workflow-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 120px;
  align-items: center;
}
.workflow-heading h2 {
  margin: 18px 0 20px;
}
.workflow-heading > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
}
.workflow-heading > .text-link {
  margin-top: 25px;
}
.capture-image {
  margin-top: 34px;
  width: 160px;
  height: 130px;
  border-radius: 10px;
  overflow: hidden;
  transform: rotate(-5deg);
}
.capture-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.workflow-steps {
  display: grid;
  gap: 35px;
}
.workflow-step {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 18px;
  padding-bottom: 34px;
  border-bottom: 1px solid var(--line);
}
.workflow-step:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}
.step-icon {
  display: grid;
  place-items: center;
  background: var(--surface);
  width: 41px;
  height: 41px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--accent);
  margin-top: 1px;
}
.step-icon .icon {
  width: 19px;
  height: 19px;
}
.workflow-step p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.9;
  max-width: 350px;
  margin-top: 13px;
}
.collection-section .section-heading {
  max-width: 750px;
}
.collection-section .section-heading p {
  max-width: 470px;
}
.collection-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 36px 0 28px;
  gap: 16px;
}
.filter-buttons {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.filter-button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 9px 15px;
  min-height: 42px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  transition:
    background 0.2s,
    color 0.2s;
}
.filter-button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--bg);
  border-color: var(--ink);
}
.filter-button:hover:not([aria-pressed="true"]) {
  background: var(--tint);
}
.collection-hint {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 10px;
}
.collection-hint .icon {
  width: 16px;
  height: 16px;
}
.reference-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 18px;
  min-height: 304px;
  align-items: start;
}
.reference {
  padding: 0;
  background: transparent;
  text-align: left;
  min-width: 0;
}
.reference:nth-child(2),
.reference:nth-child(5) {
  margin-top: 32px;
}
.reference:nth-child(3),
.reference:nth-child(6) {
  margin-top: 12px;
}
.reference img {
  width: 100%;
  height: 213px;
  object-fit: cover;
  border-radius: 10px;
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
  background: var(--tint);
}
.reference:nth-child(2) img,
.reference:nth-child(5) img {
  height: 250px;
}
.reference:nth-child(3) img,
.reference:nth-child(6) img {
  height: 220px;
}
.reference > span {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  margin-top: 13px;
  font-size: 10px;
  font-weight: 600;
  line-height: 1.7;
}
.reference > span .icon {
  width: 14px;
  height: 14px;
  color: var(--muted);
}
.reference:hover img {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px -12px rgba(var(--shadow), 0.23);
}
.reference-grid.is-filtered {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  min-height: 319px;
}
.reference-grid.is-filtered .reference {
  margin-top: 0;
}
.reference-grid.is-filtered .reference img {
  height: 260px;
}
.local-section {
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 40px;
  padding: 70px 78px;
  overflow: hidden;
}
.local-art {
  min-height: 300px;
  display: grid;
  place-items: center;
  position: relative;
}
.local-logo {
  width: 185px;
  height: 185px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 40px;
  transform: rotate(-10deg);
  box-shadow: 0 18px 25px -20px rgba(var(--shadow), 0.25);
  display: grid;
  place-items: center;
}
.local-logo img {
  width: 220px;
  max-width: none;
}
.local-file {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 13px 19px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 10px;
  font-size: 11px;
  box-shadow: 0 10px 30px -20px rgba(var(--shadow), 0.25);
}
.local-file .icon {
  color: var(--accent);
  width: 17px;
  height: 17px;
}
.file-one {
  top: 4px;
  left: 8px;
  transform: rotate(-7deg);
}
.file-two {
  bottom: 10px;
  right: 1px;
  transform: rotate(6deg);
}
.local-copy h2 {
  margin: 17px 0 20px;
}
.local-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.9;
  max-width: 365px;
}
.local-details {
  display: grid;
  gap: 11px;
  margin-top: 24px;
  font-size: 11px;
}
.local-details span {
  display: flex;
  align-items: center;
  gap: 9px;
}
.local-details .icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
}
.faq-section {
  display: grid;
  grid-template-columns: 0.9fr 1.3fr;
  gap: 90px;
  padding-top: 132px;
}
.faq-heading > p {
  color: var(--muted);
  margin-top: 22px;
  font-size: 13px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 24px 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary .icon {
  width: 18px;
  height: 18px;
  color: var(--muted);
  transition: transform 0.2s var(--ease);
}
.faq-list details[open] summary .icon {
  transform: rotate(45deg);
}
.faq-list details[open] summary {
  padding-bottom: 14px;
}
.faq-list details > p {
  padding: 0 35px 24px 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.9;
  max-width: 510px;
}
.faq-list p a {
  text-decoration: underline;
  text-underline-offset: 3px;
}
.download-section {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  align-items: center;
  gap: 50px;
  background: var(--tint-strong);
  border-radius: var(--radius);
  padding: 66px 80px;
  overflow: hidden;
  min-height: 390px;
}
.download-copy {
  position: relative;
  z-index: 1;
}
.download-copy h2 {
  font-size: clamp(36px, 4vw, 55px);
}
.download-copy > p {
  color: var(--muted);
  font-size: 13px;
  margin-top: 20px;
}
.download-copy > .button {
  margin-top: 27px;
}
.download-copy .download-note {
  font-size: 10px;
  margin-top: 13px;
}
.download-art {
  height: 260px;
  position: relative;
}
.download-art img {
  position: absolute;
  width: 186px;
  height: 232px;
  object-fit: cover;
  border: 7px solid var(--surface);
  border-radius: 12px;
  box-shadow: 0 12px 30px -18px rgba(var(--shadow), 0.3);
}
.download-image-back {
  left: 0;
  top: -6px;
  transform: rotate(-15deg);
}
.download-image-front {
  right: 0;
  top: 33px;
  transform: rotate(9deg);
}
.footer {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 30px;
  padding-block: 57px 28px;
}
.footer .brand {
  font-size: 23px;
}
.footer > div > p {
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
}
.footer-links {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 28px;
  font-size: 11px;
}
.footer-links a {
  display: flex;
  gap: 6px;
  align-items: center;
}
.footer-links a:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-links a .icon {
  width: 14px;
  height: 14px;
}
.theme-toggle {
  border: 1px solid var(--line);
  width: 35px;
  height: 35px;
}
.theme-toggle .icon {
  width: 16px;
  height: 16px;
}
.copyright {
  grid-column: 1/-1;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-size: 9px;
  color: var(--muted);
}
.modal {
  width: min(510px, calc(100% - 32px));
  max-height: calc(100dvh - 48px);
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  color: var(--ink);
  box-shadow: 0 24px 100px rgba(var(--shadow), 0.25);
  overscroll-behavior: contain;
}
.modal::backdrop {
  background: rgba(12, 24, 15, 0.55);
  backdrop-filter: blur(7px);
}
.modal-close {
  position: absolute;
  top: 13px;
  right: 13px;
}
.modal h2 {
  font-size: 34px;
  letter-spacing: -0.045em;
  line-height: 1.2;
  margin-bottom: 15px;
}
.modal > p {
  font-size: 13px;
  color: var(--muted);
}
.dialog-app-icon {
  width: 70px;
  height: 70px;
  margin: 0 0 25px -10px;
  display: grid;
  place-items: center;
}
.dialog-app-icon img {
  max-width: none;
  width: 104px;
  height: 104px;
}
.modal > .button {
  margin-top: 27px;
  font-size: 12px;
  padding-inline: 18px;
}
.download-modal > .button > span {
  margin-left: auto;
  font-size: 10px;
  opacity: 0.85;
}
.install-note {
  margin-top: 25px;
  padding: 18px;
  background: var(--tint);
  border-radius: 10px;
  font-size: 11px;
}
.install-note strong {
  font-size: 12px;
}
.install-note p {
  color: var(--muted);
  margin-top: 8px;
  line-height: 1.8;
}
.modal > .text-link {
  font-size: 12px;
  margin-top: 24px;
}
.checksum-link {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 14px;
  text-decoration: underline;
  text-underline-offset: 3px;
}
.dialog-icon {
  width: 36px;
  height: 36px;
  color: var(--accent);
  margin-bottom: 23px;
}
.setup-steps {
  list-style: decimal;
  padding-left: 20px;
  margin: 27px 0 0;
  display: grid;
  gap: 22px;
}
.setup-steps li {
  padding-left: 10px;
  font-size: 12px;
}
.setup-steps li::marker {
  color: var(--muted);
  font-weight: 700;
}
.setup-steps strong {
  display: block;
  font-size: 12px;
}
.setup-steps span {
  display: block;
  color: var(--muted);
  margin-top: 5px;
  font-size: 11px;
}
code {
  font-size: 10px;
  overflow-wrap: anywhere;
}
.reference-modal {
  width: min(850px, calc(100% - 32px));
  padding: 20px;
}
.reference-modal[open] {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 35px;
  align-items: center;
}
.reference-preview-image {
  background: var(--tint);
  border-radius: 12px;
  min-height: 400px;
  display: grid;
  place-items: center;
  padding: 25px;
}
.reference-preview-image img {
  max-height: 400px;
  width: auto;
  max-width: 100%;
  border-radius: 8px;
  object-fit: contain;
}
.reference-preview-copy {
  padding: 40px 25px 40px 0;
}
.reference-preview-copy .eyebrow {
  font-size: 9px;
  margin-bottom: 18px;
}
.reference-preview-copy h2 {
  font-size: 30px;
}
.reference-preview-copy > p:not(.eyebrow) {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.8;
}
.reference-tip {
  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 24px;
}
.reference-preview-copy .button {
  margin-top: 26px;
  font-size: 11px;
  min-height: 45px;
  padding: 12px 18px;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 20;
  padding: 10px 16px;
  background: var(--surface);
  border: 1px solid var(--accent);
  transform: translateY(-150%);
}
.skip-link:focus {
  transform: translateY(0);
}

@media (prefers-reduced-motion: no-preference) {
  .hero-copy {
    animation: hero-arrive 0.8s var(--ease) both;
  }
  .hero-art {
    animation: art-arrive 1.1s var(--ease) both;
  }
  .reveal.is-visible {
    animation: arrive 0.7s var(--ease) both;
  }
  .product-image-wrap.is-changing img {
    animation: picture-arrive 0.45s var(--ease);
  }
  dialog[open] {
    animation: dialog-arrive 0.24s var(--ease);
  }
  .reference:not([hidden]) {
    animation: picture-arrive 0.4s var(--ease) both;
  }
  @keyframes arrive {
    from {
      opacity: 0;
      transform: translateY(20px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes hero-arrive {
    from {
      transform: translateY(14px);
    }
    to {
      transform: translateY(0);
    }
  }
  @keyframes art-arrive {
    from {
      opacity: 0;
      transform: rotate(-5deg) translateY(24px);
    }
    to {
      opacity: 1;
      transform: rotate(-7deg) translateY(0);
    }
  }
  @keyframes picture-arrive {
    from {
      opacity: 0.25;
      transform: translateY(7px);
    }
    to {
      opacity: 1;
      transform: translateY(0);
    }
  }
  @keyframes dialog-arrive {
    from {
      opacity: 0;
      transform: translateY(10px) scale(0.98);
    }
    to {
      opacity: 1;
      transform: translateY(0) scale(1);
    }
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover,
  .reference:hover img,
  .text-link:hover .icon {
    transform: none;
  }
}
@media (prefers-reduced-transparency: reduce) {
  .modal::backdrop {
    backdrop-filter: none;
    background: rgba(12, 24, 15, 0.9);
  }
}
@media (min-width: 1536px) {
  .hero {
    min-height: 680px;
  }
  .hero-art {
    height: 585px;
  }
  .hero-art .art-tall {
    height: 265px;
  }
  .hero-art .art-square {
    height: 215px;
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 64px);
  }
  .hero {
    min-height: 595px;
    grid-template-columns: 1.15fr 1fr;
    gap: 18px;
  }
  .hero-art {
    height: 500px;
    margin-right: -18px;
    gap: 10px;
  }
  .art-column {
    gap: 10px;
  }
  .hero-art .art-tall {
    height: 216px;
  }
  .hero-art .art-square {
    height: 170px;
  }
  .hero-art .art-small {
    height: 140px;
  }
  .hero-description {
    font-size: 14px;
    max-width: 340px;
  }
  .reassurance {
    gap: 16px;
    font-size: 10px;
  }
  .reassurance > span {
    gap: 8px;
  }
  .workflow-layout {
    gap: 70px;
  }
  .reference-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 26px 20px;
  }
  .reference:nth-child(n) {
    margin-top: 0;
  }
  .reference:nth-child(n) img {
    height: 250px;
  }
  .reference > span {
    font-size: 12px;
  }
  .collection-hint {
    display: none;
  }
  .local-section {
    padding: 60px 48px;
    gap: 40px;
  }
  .faq-section {
    gap: 60px;
  }
  .download-section {
    padding: 60px 55px;
    gap: 35px;
  }
  .download-art img {
    width: 156px;
    height: 200px;
  }
}
@media (max-width: 767px) {
  html {
    scroll-padding-top: 24px;
  }
  .container {
    width: calc(100% - 40px);
  }
  .section-space {
    padding-block: 75px;
  }
  .nav {
    height: 76px;
    gap: 12px;
  }
  .brand {
    font-size: 23px;
    gap: 6px;
  }
  .brand-mark {
    width: 29px;
    height: 32px;
  }
  .brand-mark img {
    width: 49px;
    height: 49px;
  }
  .button-small {
    padding: 10px 14px;
    font-size: 11px;
    gap: 8px;
    min-height: 40px;
  }
  .menu-toggle {
    display: grid;
    width: 34px;
    height: 40px;
    padding: 7px;
  }
  .nav-links {
    position: absolute;
    left: 20px;
    right: 20px;
    top: 76px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--surface);
    padding: 12px 22px;
    border: 1px solid var(--line);
    border-radius: 16px;
    margin: 0;
    box-shadow: 0 12px 25px -15px rgba(var(--shadow), 0.3);
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    padding: 13px 0;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 22px;
    min-height: 0;
    padding-block: 54px 32px;
    overflow: hidden;
  }
  .hero-copy {
    padding-bottom: 0;
  }
  .hero h1 {
    font-size: clamp(43px, 10.4vw, 70px);
    line-height: 1.08;
    margin: 19px 0 23px;
    letter-spacing: -0.06em;
  }
  .hero-description {
    font-size: 14px;
    max-width: 360px;
    line-height: 1.8;
  }
  .hero-actions {
    gap: 17px;
    margin-top: 27px;
  }
  .hero-actions .button {
    font-size: 12px;
    min-height: 51px;
    padding-inline: 21px;
  }
  .eyebrow {
    font-size: 9px;
  }
  .hero-art {
    height: 310px;
    width: 100%;
    margin: 12px 0 0;
    gap: 10px;
    transform: rotate(-7deg);
  }
  .art-column-one {
    margin-top: -85px;
  }
  .art-column-two {
    margin-top: 7px;
  }
  .art-column-three {
    margin-top: -36px;
  }
  .hero-art .art-tall {
    height: 175px;
  }
  .hero-art .art-square {
    height: 145px;
  }
  .hero-art .art-small {
    height: 130px;
  }
  .reassurance {
    grid-template-columns: 1fr 1fr;
    gap: 17px 12px;
    padding-block: 23px;
    font-size: 10px;
  }
  .reassurance p {
    font-size: 10px;
  }
  .reassurance .icon {
    width: 17px;
    height: 17px;
  }
  h2 {
    font-size: 37px;
    letter-spacing: -0.05em;
  }
  h3 {
    font-size: 21px;
  }
  .section-heading > p {
    font-size: 13px;
    margin-top: 19px;
    max-width: 360px;
  }
  .section-heading {
    margin-bottom: 28px;
  }
  .product-tour {
    margin-top: 26px;
  }
  .tour-tabs {
    gap: 3px;
    justify-content: flex-start;
    margin-bottom: 16px;
  }
  .tour-tabs button {
    font-size: 10px;
    gap: 6px;
    padding: 10px 12px;
    min-height: 41px;
    white-space: nowrap;
  }
  .tour-tabs button .icon {
    width: 14px;
    height: 14px;
  }
  .product-image-wrap {
    padding: 7px;
    border-radius: 13px;
  }
  .product-image-wrap img {
    border-radius: 7px;
  }
  .tour-caption {
    font-size: 12px;
    margin-top: 20px;
    min-height: 40px;
    padding-inline: 10px;
  }
  .sample-note {
    font-size: 9px;
    margin-top: 2px;
  }
  .workflow-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }
  .workflow-heading h2 {
    margin-top: 16px;
  }
  .workflow-heading > p:not(.eyebrow) {
    font-size: 13px;
  }
  .capture-image {
    display: none;
  }
  .workflow-steps {
    gap: 26px;
  }
  .workflow-step {
    grid-template-columns: 37px 1fr;
    gap: 15px;
    padding-bottom: 26px;
  }
  .step-icon {
    width: 35px;
    height: 35px;
  }
  .step-icon .icon {
    width: 17px;
    height: 17px;
  }
  .workflow-step p {
    font-size: 12px;
    line-height: 1.9;
    margin-top: 12px;
    max-width: none;
  }
  .collection-controls {
    margin-top: 26px;
    margin-bottom: 25px;
  }
  .filter-buttons {
    gap: 7px;
  }
  .filter-button {
    font-size: 10px;
    padding: 8px 13px;
    min-height: 38px;
  }
  .reference-grid,
  .reference-grid.is-filtered {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 14px;
    min-height: 0;
  }
  .reference:nth-child(n) img,
  .reference-grid.is-filtered .reference img {
    height: 210px;
  }
  .reference:nth-child(n) {
    margin: 0;
  }
  .reference:nth-child(even) {
    margin-top: 24px;
  }
  .reference > span {
    font-size: 10px;
    gap: 5px;
    margin-top: 10px;
  }
  .local-section {
    grid-template-columns: 1fr;
    padding: 30px 27px 38px;
    gap: 24px;
  }
  .local-art {
    min-height: 230px;
    max-width: 320px;
    width: 100%;
    margin-inline: auto;
  }
  .local-logo {
    width: 140px;
    height: 140px;
    border-radius: 30px;
  }
  .local-logo img {
    width: 170px;
  }
  .local-file {
    padding: 11px 13px;
    font-size: 10px;
  }
  .file-one {
    top: 5px;
    left: 0;
  }
  .file-two {
    bottom: 0;
    right: 0;
  }
  .local-copy h2 {
    margin-top: 13px;
  }
  .local-copy > p:not(.eyebrow) {
    font-size: 12px;
  }
  .local-details {
    font-size: 10px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .faq-heading h2 br {
    display: none;
  }
  .faq-heading > p {
    font-size: 12px;
    margin-top: 15px;
  }
  .faq-list summary {
    font-size: 12px;
    padding-block: 21px;
    gap: 18px;
  }
  .faq-list details > p {
    font-size: 11px;
    padding-right: 20px;
  }
  .download-section {
    grid-template-columns: 1fr;
    gap: 30px;
    padding: 39px 27px 32px;
  }
  .download-copy h2 {
    font-size: 40px;
  }
  .download-copy > p {
    font-size: 12px;
  }
  .download-copy .button {
    font-size: 11px;
    padding-inline: 18px;
    min-height: 49px;
    gap: 8px;
  }
  .download-copy .download-note {
    font-size: 9px;
    max-width: 230px;
  }
  .download-art {
    height: 185px;
    width: 240px;
    justify-self: center;
    margin-top: 6px;
  }
  .download-art img {
    width: 137px;
    height: 167px;
    border-width: 5px;
  }
  .download-image-front {
    top: 11px;
  }
  .footer {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 39px;
  }
  .footer-links {
    justify-content: flex-start;
    gap: 23px;
    font-size: 10px;
  }
  .footer-links .theme-toggle {
    margin-left: auto;
  }
  .copyright {
    font-size: 9px;
    padding-top: 18px;
  }
  .modal {
    padding: 34px 25px;
    max-height: calc(100dvh - 28px);
    border-radius: 18px;
  }
  .modal h2 {
    font-size: 30px;
  }
  .modal > p {
    font-size: 12px;
  }
  .reference-modal[open] {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 20px;
  }
  .reference-preview-image {
    min-height: 230px;
    padding: 18px;
  }
  .reference-preview-image img {
    max-height: 270px;
  }
  .reference-preview-copy {
    padding: 0 8px 10px;
  }
  .reference-preview-copy .eyebrow {
    margin-bottom: 9px;
  }
  .reference-preview-copy h2 {
    font-size: 27px;
  }
  .reference-tip {
    margin-top: 16px;
    padding-top: 16px;
  }
  .reference-modal .modal-close {
    background: var(--surface);
    top: 10px;
    right: 10px;
  }
}
@media (max-width: 374px) {
  .container {
    width: calc(100% - 32px);
  }
  .hero h1 {
    font-size: 40px;
  }
  .nav-actions {
    gap: 3px;
  }
  .nav-actions .button .icon {
    display: none;
  }
  .tour-tabs button {
    padding: 10px 8px;
    font-size: 9px;
    gap: 4px;
  }
  .reference:nth-child(n) img {
    height: 180px;
  }
  .reassurance {
    font-size: 9px;
  }
  .reassurance > span {
    gap: 6px;
  }
  .download-section {
    padding-inline: 22px;
  }
}
