:root {
  --xfx-ground: #162129;
  --xfx-text: #F4EFE4;
  --xfx-muted: #AEB7B4;
  --xfx-line: #41505A;
  --xfx-accent: #D79A2B;
  --xfx-ground-soft: #1d2a33;
  --xfx-display: Georgia, "Times New Roman", Times, serif;
  --xfx-body: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  --xfx-s-1: 0.72rem;
  --xfx-s0: 0.86rem;
  --xfx-s1: 1rem;
  --xfx-s2: 1.18rem;
  --xfx-s3: 1.45rem;
  --xfx-s4: 2.2rem;
  --xfx-s5: 3.4rem;
  --xfx-s6: 5.2rem;
  --xfx-wrap: 1180px;
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--xfx-ground);
}

body {
  margin: 0;
  font-family: var(--xfx-body);
  font-size: var(--xfx-s1);
  line-height: 1.65;
  color: var(--xfx-text);
  background: var(--xfx-ground);
  overflow-x: hidden;
}

img,
svg {
  max-width: 100%;
  height: auto;
}

svg {
  width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  overflow-wrap: anywhere;
}

p,
li,
td,
th,
h1,
h2,
h3,
small,
span {
  min-width: 0;
  overflow-wrap: anywhere;
}

p {
  margin: 0;
  max-width: 72ch;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 600;
  line-height: 1.04;
  text-wrap: balance;
}

h1,
h2 {
  font-family: var(--xfx-display);
  letter-spacing: -0.035em;
}

h3 {
  line-height: 1.2;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

li {
  list-style: none;
}

::selection {
  background: var(--xfx-accent);
  color: var(--xfx-ground);
}

.xfx-page {
  min-height: 100vh;
}

.xfx-kicker,
.xfx-card-label {
  font-size: var(--xfx-s-1);
  line-height: 1.2;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--xfx-muted);
  font-weight: 600;
}

.xfx-letter {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: clamp(3rem, 7vw, 7rem) clamp(1rem, 4vw, 4rem);
  border-bottom: 1px solid var(--xfx-line);
}

.xfx-letter__inner {
  width: min(1120px, 100%);
  margin: 0 auto;
}

.xfx-letter__title {
  margin-top: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 12.5em;
  font-size: clamp(2.65rem, 7.8vw, var(--xfx-s6));
  font-weight: 400;
}

.xfx-letter__copy {
  margin-top: clamp(2rem, 5vw, 4.5rem);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(1.25rem, 4vw, 4rem);
  max-width: 1040px;
}

.xfx-letter__copy p {
  color: var(--xfx-muted);
  font-size: clamp(1rem, 1.4vw, var(--xfx-s2));
}

.xfx-letter__copy p:first-child {
  color: var(--xfx-text);
}

.xfx-letter__signature {
  margin-top: clamp(2rem, 4vw, 3.5rem);
  padding-top: 1rem;
  border-top: 1px solid var(--xfx-line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  color: var(--xfx-muted);
}

.xfx-letter__signature span {
  font-family: var(--xfx-display);
  font-size: var(--xfx-s3);
  color: var(--xfx-text);
}

.xfx-letter__signature a,
.xfx-nav a,
.xfx-text-link,
.xfx-contact-email,
.xfx-huge-email {
  transition: color 220ms ease, transform 220ms ease, border-color 220ms ease;
}

.xfx-letter__signature a:hover,
.xfx-nav a:hover,
.xfx-text-link:hover,
.xfx-contact-email:hover,
.xfx-huge-email:hover {
  color: var(--xfx-accent);
}

.xfx-sitebar {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 0.85rem clamp(1rem, 4vw, 3rem);
  background: color-mix(in srgb, var(--xfx-ground) 92%, black);
  border-bottom: 1px solid var(--xfx-line);
}

.xfx-sitebar--top {
  position: sticky;
}

.xfx-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  flex: 0 0 auto;
}

.xfx-brand__mark {
  display: grid;
  place-items: center;
  inline-size: 2rem;
  block-size: 2rem;
  border: 1px solid var(--xfx-accent);
  color: var(--xfx-accent);
  font-family: var(--xfx-display);
  font-size: 1.15rem;
}

.xfx-brand__text {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.xfx-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(0.65rem, 2vw, 1.35rem);
  flex-wrap: wrap;
  font-size: var(--xfx-s0);
  color: var(--xfx-muted);
}

.xfx-page-progress {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--xfx-line);
}

.xfx-page-progress span {
  display: block;
  width: var(--xfx-page-progress, 0%);
  height: 1px;
  background: var(--xfx-accent);
}

.xfx-sitebar--top .xfx-page-progress {
  position: fixed;
  left: auto;
  right: clamp(0.65rem, 2vw, 1.35rem);
  top: 5.75rem;
  bottom: auto;
  width: 1px;
  height: min(240px, 34vh);
  background: var(--xfx-line);
  z-index: 15;
}

.xfx-sitebar--top .xfx-page-progress::before,
.xfx-sitebar--top .xfx-page-progress::after {
  content: "";
  position: absolute;
  left: -3px;
  width: 7px;
  height: 1px;
  background: var(--xfx-line);
}

.xfx-sitebar--top .xfx-page-progress::before {
  top: 0;
}

.xfx-sitebar--top .xfx-page-progress::after {
  bottom: 0;
}

.xfx-sitebar--top .xfx-page-progress span {
  position: absolute;
  left: -4px;
  top: var(--xfx-page-progress, 0%);
  width: 9px;
  height: 9px;
  border: 1px solid var(--xfx-accent);
  background: var(--xfx-ground);
  transform: translateY(-50%);
}

.xfx-ledger {
  width: min(var(--xfx-wrap), calc(100% - 2rem));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr);
  gap: clamp(2rem, 5vw, 5rem);
}

.xfx-ledger__content {
  min-width: 0;
}

.xfx-rail {
  position: sticky;
  top: 5.25rem;
  align-self: start;
  height: calc(100vh - 6rem);
  padding-top: 1rem;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  column-gap: 1rem;
  row-gap: 0.85rem;
  font-size: var(--xfx-s-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--xfx-muted);
}

.xfx-rail__rule {
  grid-row: 1 / span 5;
  position: relative;
  width: 1px;
  height: min(420px, 62vh);
  background: var(--xfx-line);
  justify-self: center;
}

.xfx-rail__marker {
  position: absolute;
  left: -4px;
  top: var(--xfx-rail-progress, 0%);
  width: 9px;
  height: 9px;
  border: 1px solid var(--xfx-accent);
  background: var(--xfx-ground);
  transform: translateY(-50%);
}

.xfx-rail a {
  display: flex;
  gap: 0.65rem;
  align-items: baseline;
  min-height: 1.5rem;
  transition: color 180ms ease, transform 180ms ease;
}

.xfx-rail a:hover,
.xfx-rail a.is-active {
  color: var(--xfx-text);
  transform: translateX(0.18rem);
}

.xfx-rail a.is-active span {
  color: var(--xfx-accent);
}

.xfx-section {
  padding: clamp(4rem, 8vw, 8rem) 0;
  border-bottom: 1px solid var(--xfx-line);
}

.xfx-section__head,
.xfx-detail-section {
  display: grid;
  grid-template-columns: clamp(4.5rem, 10vw, 9rem) minmax(0, 1fr);
  gap: clamp(1rem, 4vw, 3rem);
  align-items: start;
  margin-bottom: clamp(2rem, 4vw, 4rem);
}

.xfx-section__num {
  font-family: var(--xfx-display);
  font-size: clamp(2.4rem, 7vw, var(--xfx-s6));
  line-height: 0.8;
  color: transparent;
  -webkit-text-stroke: 1px var(--xfx-line);
  max-width: none;
}

.xfx-section h2,
.xfx-detail-section h2 {
  margin-top: 0.5rem;
  font-size: clamp(2.1rem, 5vw, var(--xfx-s5));
  font-weight: 400;
  max-width: 12em;
}

.xfx-service-grid,
.xfx-budget-grid,
.xfx-booking-grid,
.xfx-contact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: stretch;
  gap: 1px;
  background: var(--xfx-line);
  border: 1px solid var(--xfx-line);
}

.xfx-service-card,
.xfx-budget-card,
.xfx-terms-card,
.xfx-contact-card {
  background: var(--xfx-ground);
  padding: clamp(1.25rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.xfx-service-card h3,
.xfx-budget-card h3,
.xfx-terms-card h2,
.xfx-contact-card h2 {
  margin-top: 1rem;
  font-size: clamp(1.25rem, 2.4vw, var(--xfx-s4));
  font-family: var(--xfx-display);
  font-weight: 400;
}

.xfx-service-card ul,
.xfx-terms-card ul {
  margin-top: 1.5rem;
  color: var(--xfx-muted);
}

.xfx-service-card li,
.xfx-terms-card li,
.xfx-check-list li {
  position: relative;
  padding: 0.75rem 0 0.75rem 1.4rem;
  border-top: 1px solid var(--xfx-line);
  transition: color 180ms ease, transform 180ms ease;
}

.xfx-service-card li::before,
.xfx-terms-card li::before,
.xfx-check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 1.32rem;
  width: 0.45rem;
  height: 1px;
  background: var(--xfx-accent);
}

.xfx-service-card li:hover,
.xfx-terms-card li:hover,
.xfx-check-list li:hover,
.xfx-lined-list li:hover {
  color: var(--xfx-text);
  transform: translateX(0.22rem);
}

.xfx-text-link {
  margin-top: auto;
  padding-top: 1.5rem;
  display: inline-flex;
  width: fit-content;
  color: var(--xfx-accent);
  font-weight: 600;
}

.xfx-text-link::after {
  content: "›";
  padding-left: 0.45rem;
}

.xfx-button {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  padding: 0.75rem 1rem;
  border: 1px solid var(--xfx-accent);
  color: var(--xfx-accent);
  font-weight: 600;
  line-height: 1;
  transition: color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.xfx-button:hover {
  color: var(--xfx-text);
  border-color: var(--xfx-text);
  transform: translateX(0.2rem);
}

.xfx-spec-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(250px, 0.8fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: stretch;
}

.xfx-table-wrap {
  width: 100%;
  overflow-x: auto;
  border: 1px solid var(--xfx-line);
}

table {
  width: 100%;
  border-collapse: collapse;
  min-width: 680px;
}

caption {
  text-align: left;
  padding: 1rem;
  color: var(--xfx-muted);
  font-size: var(--xfx-s0);
  border-bottom: 1px solid var(--xfx-line);
}

th,
td {
  padding: 1rem;
  vertical-align: top;
  border-bottom: 1px solid var(--xfx-line);
  text-align: left;
}

th {
  color: var(--xfx-text);
  font-weight: 600;
}

td {
  color: var(--xfx-muted);
}

.xfx-rate-table td:nth-child(2),
.xfx-rate-table th:nth-child(2) {
  font-family: var(--xfx-display);
  font-size: var(--xfx-s3);
  color: var(--xfx-text);
  white-space: nowrap;
}

.xfx-rate-table--large td:nth-child(2) {
  font-size: clamp(1.4rem, 3vw, var(--xfx-s4));
}

.xfx-note {
  margin-top: 1.25rem;
  color: var(--xfx-muted);
  font-size: var(--xfx-s0);
}

.xfx-calibration {
  margin: 0;
  min-width: 0;
  border: 1px solid var(--xfx-line);
  padding: clamp(1rem, 3vw, 2rem);
  display: grid;
  place-items: center;
  overflow: hidden;
}

.xfx-calibration svg path,
.xfx-calibration svg circle {
  fill: none;
  stroke: var(--xfx-line);
  stroke-width: 2;
  vector-effect: non-scaling-stroke;
}

.xfx-calibration svg circle {
  fill: var(--xfx-ground);
}

.xfx-calibration svg .xfx-calibration__accent {
  stroke: var(--xfx-accent);
  stroke-width: 3;
}

.xfx-calibration svg text {
  fill: var(--xfx-muted);
  font-family: var(--xfx-body);
  font-size: 17px;
  letter-spacing: 0.22em;
}

.xfx-process-list {
  counter-reset: process;
  border-top: 1px solid var(--xfx-line);
}

.xfx-process-list li {
  display: grid;
  grid-template-columns: 4rem minmax(10rem, 0.45fr) minmax(0, 1fr);
  gap: 1.25rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--xfx-line);
  transition: color 180ms ease, transform 180ms ease;
}

.xfx-process-list li:hover {
  transform: translateX(0.22rem);
}

.xfx-process-list span {
  color: var(--xfx-accent);
  font-size: var(--xfx-s-1);
  letter-spacing: 0.18em;
}

.xfx-process-list h3 {
  font-size: var(--xfx-s2);
}

.xfx-process-list p {
  color: var(--xfx-muted);
}

.xfx-contact-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1fr);
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(1.5rem, 5vw, 4rem);
  border: 1px solid var(--xfx-line);
}

.xfx-contact-strip h2 {
  margin-top: 0.5rem;
  font-size: clamp(2.2rem, 6vw, var(--xfx-s5));
}

.xfx-contact-strip__details {
  display: grid;
  gap: 0.9rem;
  color: var(--xfx-muted);
}

.xfx-contact-email {
  color: var(--xfx-text);
  font-family: var(--xfx-display);
  font-size: clamp(1.8rem, 5vw, var(--xfx-s4));
  line-height: 1.1;
}

.xfx-subpage {
  width: min(var(--xfx-wrap), calc(100% - 2rem));
  margin: 0 auto;
  padding-bottom: clamp(4rem, 8vw, 7rem);
}

.xfx-masthead {
  padding: clamp(5rem, 12vw, 10rem) 0 clamp(3rem, 7vw, 6rem);
  border-bottom: 1px solid var(--xfx-line);
}

.xfx-masthead h1 {
  margin-top: 1rem;
  max-width: 12em;
  font-size: clamp(2.8rem, 8vw, var(--xfx-s6));
  font-weight: 400;
}

.xfx-masthead p:last-child {
  margin-top: 1.5rem;
  color: var(--xfx-muted);
  font-size: var(--xfx-s2);
}

.xfx-project-index,
.xfx-case,
.xfx-detail-section,
.xfx-booking-grid,
.xfx-contact-grid {
  margin-top: clamp(2.5rem, 6vw, 5rem);
}

.xfx-project-index h2 {
  font-size: clamp(2rem, 5vw, var(--xfx-s5));
  font-weight: 400;
  margin-bottom: 1.5rem;
}

.xfx-index-list {
  border-top: 1px solid var(--xfx-line);
}

.xfx-index-list a {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(12rem, 0.55fr);
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--xfx-line);
  transition: color 180ms ease, transform 180ms ease;
}

.xfx-index-list a:hover {
  color: var(--xfx-accent);
  transform: translateX(0.25rem);
}

.xfx-index-list span {
  font-size: var(--xfx-s2);
  font-weight: 600;
}

.xfx-index-list small,
.xfx-case__meta,
.xfx-case__lead,
.xfx-case p,
.xfx-detail-section p,
.xfx-terms-card p,
.xfx-contact-card p {
  color: var(--xfx-muted);
}

.xfx-index-meta {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.55rem;
  align-items: start;
}

.xfx-index-meta b {
  display: grid;
  gap: 0.12rem;
  font-weight: 500;
  line-height: 1.35;
}

.xfx-index-meta em {
  font-style: normal;
  font-size: var(--xfx-s-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--xfx-accent);
}

.xfx-case-stack {
  margin-top: clamp(3rem, 7vw, 6rem);
}

.xfx-case {
  padding: clamp(1.5rem, 4vw, 3rem) 0;
  border-top: 1px solid var(--xfx-line);
}

.xfx-case__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1rem;
}

.xfx-case__meta span {
  border: 1px solid var(--xfx-line);
  padding: 0.25rem 0.55rem;
  font-size: var(--xfx-s-1);
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.xfx-case h2 {
  font-size: clamp(2rem, 5vw, var(--xfx-s5));
  font-weight: 400;
}

.xfx-case__lead {
  margin-top: 1rem;
  font-size: var(--xfx-s2);
}

.xfx-case__grid,
.xfx-two-col {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(1rem, 4vw, 3rem);
}

.xfx-case__grid h3 {
  margin-bottom: 0.75rem;
}

.xfx-case__grid li {
  padding: 0.5rem 0;
  color: var(--xfx-muted);
  border-top: 1px solid var(--xfx-line);
}

.xfx-detail-section {
  padding-top: clamp(2.5rem, 6vw, 5rem);
  border-top: 1px solid var(--xfx-line);
}

.xfx-detail-section > div > p:not(.xfx-kicker) {
  margin-top: 1.25rem;
  font-size: var(--xfx-s2);
}

.xfx-check-list {
  border-top: 1px solid var(--xfx-line);
  color: var(--xfx-muted);
}

.xfx-lined-list {
  margin-top: 1.5rem;
  border-top: 1px solid var(--xfx-line);
}

.xfx-lined-list li {
  padding: 1rem 0;
  color: var(--xfx-muted);
  border-bottom: 1px solid var(--xfx-line);
  transition: color 180ms ease, transform 180ms ease;
}

.xfx-lined-list strong {
  color: var(--xfx-text);
  font-weight: 600;
}

.xfx-booking-grid {
  background: transparent;
  border: 0;
  gap: 1rem;
}

.xfx-terms-card {
  border: 1px solid var(--xfx-line);
}

.xfx-budget-grid {
  margin-top: 1.75rem;
}

.xfx-budget-card h3 {
  color: var(--xfx-text);
}

.xfx-budget-card p {
  margin-top: 1rem;
  color: var(--xfx-muted);
}

.xfx-contact-page {
  padding-bottom: 7rem;
}

.xfx-contact-hero {
  min-height: 70vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.xfx-huge-email {
  display: inline-flex;
  width: fit-content;
  margin-top: 1.5rem;
  font-family: var(--xfx-display);
  font-size: clamp(2rem, 7vw, var(--xfx-s6));
  line-height: 1;
  color: var(--xfx-accent);
}

.xfx-contact-grid {
  background: transparent;
  border: 0;
  gap: 1rem;
}

.xfx-contact-card {
  border: 1px solid var(--xfx-line);
}

.xfx-contact-card p {
  margin-top: 1rem;
}

.xfx-small-note {
  font-size: var(--xfx-s0) !important;
  color: var(--xfx-muted);
  max-width: 70ch;
}

.xfx-reveal {
  transition: opacity 560ms ease, transform 560ms ease;
}

.xfx-reveal.xfx-reveal--hidden {
  opacity: 1;
  transform: translateY(1rem);
}

.xfx-wipe {
  transition: clip-path 900ms cubic-bezier(0.2, 0.7, 0.1, 1);
}

.xfx-wipe.xfx-wipe--ready {
  clip-path: inset(0 100% 0 0);
}

.xfx-wipe.xfx-wipe--run {
  clip-path: inset(0 0 0 0);
}

@media (prefers-reduced-motion: no-preference) {
  .xfx-calibration {
    animation: xfx-drift 18s ease-in-out infinite alternate;
  }
}

@keyframes xfx-drift {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-0.35rem);
  }
}

@media (max-width: 900px) {
  .xfx-letter__copy,
  .xfx-ledger,
  .xfx-spec-layout,
  .xfx-contact-strip,
  .xfx-service-grid,
  .xfx-budget-grid,
  .xfx-booking-grid,
  .xfx-contact-grid,
  .xfx-case__grid,
  .xfx-two-col {
    grid-template-columns: 1fr;
  }

  .xfx-rail {
    display: none;
  }

  .xfx-section__head,
  .xfx-detail-section {
    grid-template-columns: 1fr;
  }

  .xfx-section__num {
    font-size: var(--xfx-s4);
  }

  .xfx-sitebar {
    align-items: flex-start;
    flex-direction: column;
  }

  .xfx-sitebar--top .xfx-page-progress {
    top: 8.75rem;
    height: 160px;
  }

  .xfx-nav {
    justify-content: flex-start;
  }

  .xfx-process-list li,
  .xfx-index-list a {
    grid-template-columns: 1fr;
  }

  .xfx-index-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 700px) {
  .xfx-page--services .xfx-masthead h1,
  .xfx-page--services .xfx-detail-section h2 {
    font-size: clamp(2rem, 13vw, 3.6rem);
  }
}

@media (max-width: 560px) {
  :root {
    --xfx-s6: 3.6rem;
  }

  .xfx-letter {
    align-items: flex-start;
    min-height: auto;
  }

  .xfx-letter__signature {
    flex-direction: column;
  }

  .xfx-section {
    padding: 3.5rem 0;
  }

  .xfx-subpage,
  .xfx-ledger {
    width: min(100% - 1rem, var(--xfx-wrap));
  }

  .xfx-sitebar--top .xfx-page-progress {
    top: 10.25rem;
    right: 0.5rem;
    height: 120px;
  }

  .xfx-index-meta {
    grid-template-columns: 1fr;
  }

  th,
  td {
    padding: 0.85rem;
  }

  .xfx-rate-table td:nth-child(2),
  .xfx-rate-table th:nth-child(2) {
    white-space: normal;
  }

  table.xfx-handover-table {
    min-width: 0;
    table-layout: fixed;
  }

  table.xfx-handover-table th,
  table.xfx-handover-table td {
    overflow-wrap: anywhere;
    word-break: break-word;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }

  .xfx-reveal.xfx-reveal--hidden,
  .xfx-wipe.xfx-wipe--ready {
    opacity: 1;
    transform: none;
    clip-path: none;
  }
}