:root {
  --ink: #1d3d4f;
  --ink-deep: #102b39;
  --ink-soft: #56707e;
  --paper: #f5f2ed;
  --paper-deep: #e9e4dc;
  --white: #fffdfa;
  --graphite: #16181a;
  --slate: #263f5d;
  --blue: #5d84b5;
  --line: rgba(29, 61, 79, 0.18);
  --line-strong: rgba(29, 61, 79, 0.34);
  --shadow: 0 24px 70px rgba(16, 43, 57, 0.12);
  --radius-sm: 10px;
  --radius-md: 18px;
  --radius-lg: 30px;
  --page: min(1180px, calc(100vw - 48px));
  --measure: 720px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  min-width: 320px;
  color: var(--ink-deep);
  background:
    linear-gradient(rgba(29, 61, 79, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 61, 79, 0.035) 1px, transparent 1px),
    var(--paper);
  background-size: 48px 48px;
  font-family: "Helvetica Neue", Helvetica, Arial, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
input,
textarea,
select {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid #e09847;
  outline-offset: 4px;
}

::selection {
  color: var(--white);
  background: var(--ink);
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  color: var(--white);
  background: var(--ink-deep);
  border-radius: 8px;
  transform: translateY(-150%);
  transition: transform 160ms ease;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  z-index: 100;
  top: 0;
  border-bottom: 1px solid rgba(29, 61, 79, 0.11);
  background: rgba(245, 242, 237, 0.88);
  backdrop-filter: blur(18px) saturate(120%);
  transition: background 280ms ease, border-color 280ms ease, box-shadow 280ms ease;
}

.site-header.is-scrolled {
  border-color: rgba(29, 61, 79, 0.16);
  background: rgba(245, 242, 237, 0.94);
  box-shadow: 0 12px 34px rgba(16, 43, 57, 0.08);
}

.header-inner {
  width: var(--page);
  min-height: 76px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand-lockup {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--ink-deep);
  font-size: 20px;
  font-weight: 640;
  letter-spacing: -0.035em;
  text-decoration: none;
}

.brand-lockup img {
  width: 34px;
  height: 34px;
  border-radius: 3px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 7px;
}

.site-nav a {
  padding: 9px 13px;
  color: var(--ink-soft);
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-decoration: none;
  transition: color 180ms ease, background 180ms ease;
}

.site-nav a:hover,
.site-nav a[aria-current="page"] {
  color: var(--ink-deep);
  background: rgba(29, 61, 79, 0.08);
}

.site-nav .nav-contact {
  margin-left: 4px;
  color: var(--white);
  background: var(--ink);
}

.site-nav .nav-contact:hover,
.site-nav .nav-contact[aria-current="page"] {
  color: var(--white);
  background: var(--ink-deep);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  align-items: center;
  justify-content: center;
  color: var(--ink-deep);
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.nav-toggle svg {
  width: 20px;
  height: 20px;
}

main {
  overflow: hidden;
}

.motion-ready .reveal-item {
  opacity: 0;
  filter: blur(2px);
  translate: 0 22px;
  transition:
    opacity 680ms var(--ease) var(--reveal-delay, 0ms),
    filter 680ms var(--ease) var(--reveal-delay, 0ms),
    translate 680ms var(--ease) var(--reveal-delay, 0ms);
  will-change: opacity, filter, translate;
}

.motion-ready .reveal-item.reveal-visible {
  opacity: 1;
  filter: none;
  translate: 0 0;
}

.container {
  width: var(--page);
  margin-inline: auto;
}

.section {
  padding: 110px 0;
}

.section-tight {
  padding: 78px 0;
}

.section-ink {
  color: var(--white);
  background: var(--ink-deep);
}

.section-graphite {
  color: #f6f6f4;
  background: var(--graphite);
}

.section-paper {
  background: rgba(255, 253, 250, 0.7);
  border-block: 1px solid var(--line);
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 22px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 720;
  letter-spacing: 0.13em;
  line-height: 1.2;
  text-transform: uppercase;
}

.eyebrow::before {
  width: 26px;
  height: 1px;
  content: "";
  background: currentColor;
}

.section-ink .eyebrow,
.section-graphite .eyebrow,
.product-hero-dark .eyebrow,
.product-hero-slate .eyebrow {
  color: rgba(255, 255, 255, 0.62);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  text-wrap: balance;
}

h1 {
  margin-bottom: 28px;
  font-size: clamp(54px, 7.2vw, 106px);
  font-weight: 510;
  letter-spacing: -0.065em;
  line-height: 0.94;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 520;
  letter-spacing: -0.055em;
  line-height: 1;
}

h3 {
  margin-bottom: 12px;
  font-size: 24px;
  font-weight: 620;
  letter-spacing: -0.035em;
  line-height: 1.15;
}

.lede {
  max-width: 660px;
  margin-bottom: 34px;
  color: var(--ink-soft);
  font-size: clamp(19px, 2.1vw, 24px);
  line-height: 1.42;
  text-wrap: pretty;
}

.section-ink .lede,
.section-graphite .lede,
.product-hero-dark .lede,
.product-hero-slate .lede {
  color: rgba(255, 255, 255, 0.68);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.button {
  min-height: 48px;
  padding: 13px 20px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--white);
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  font-size: 15px;
  font-weight: 650;
  line-height: 1;
  text-decoration: none;
  transition: transform 180ms var(--ease), background 180ms ease, border-color 180ms ease;
}

.button:hover {
  background: var(--ink-deep);
  border-color: var(--ink-deep);
  transform: translateY(-2px);
}

.button svg {
  width: 16px;
  height: 16px;
}

.button-secondary {
  color: var(--ink-deep);
  border-color: var(--line-strong);
  background: transparent;
}

.button-secondary:hover {
  color: var(--ink-deep);
  border-color: var(--ink);
  background: rgba(29, 61, 79, 0.06);
}

.section-ink .button,
.section-graphite .button,
.product-hero-dark .button,
.product-hero-slate .button {
  color: var(--ink-deep);
  border-color: var(--white);
  background: var(--white);
}

.section-ink .button:hover,
.section-graphite .button:hover,
.product-hero-dark .button:hover,
.product-hero-slate .button:hover {
  background: var(--paper-deep);
}

.section-ink .button-secondary,
.section-graphite .button-secondary,
.product-hero-dark .button-secondary,
.product-hero-slate .button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.28);
  background: transparent;
}

.section-ink .button-secondary:hover,
.section-graphite .button-secondary:hover,
.product-hero-dark .button-secondary:hover,
.product-hero-slate .button-secondary:hover {
  border-color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.07);
}

.home-hero {
  --hero-copy-shift: 0px;
  --hero-haze-shift: 0px;
  --stage-shift: 0px;
  --water-shift: 0px;
  position: relative;
  z-index: 1;
  min-height: min(900px, calc(100vh - 76px));
  padding: 82px 0;
  display: grid;
  align-items: center;
  isolation: isolate;
}

.home-hero::before,
.home-hero::after {
  position: absolute;
  z-index: -1;
  pointer-events: none;
  content: "";
}

.home-hero::before {
  inset: -18% -8%;
  background:
    radial-gradient(circle at 78% 38%, rgba(93, 132, 181, 0.12), transparent 25%),
    radial-gradient(circle at 17% 80%, rgba(29, 61, 79, 0.08), transparent 28%);
  transform: translate3d(0, var(--hero-haze-shift), 0);
  will-change: transform;
}

.home-hero::after {
  right: -12%;
  bottom: -30px;
  left: -12%;
  height: 180px;
  background: radial-gradient(ellipse at 50% 100%, rgba(29, 61, 79, 0.13), transparent 66%);
  opacity: 0.52;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.68fr);
  align-items: center;
  gap: clamp(42px, 6vw, 80px);
}

.hero-copy {
  transform: translate3d(0, var(--hero-copy-shift), 0);
  will-change: transform;
}

.hero-copy h1 {
  max-width: 790px;
}

.brand-tagline {
  max-width: none;
  font-size: clamp(62px, 7vw, 92px);
  line-height: 0.98;
}

.hero-copy .brand-tagline {
  font-size: clamp(54px, 4.7vw, 60px);
}

.hero-copy .lede {
  max-width: 590px;
}

.brand-stage {
  --stage-pointer-x: 0deg;
  --stage-pointer-y: 0deg;
  position: relative;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(rgba(29, 61, 79, 0.09) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 61, 79, 0.09) 1px, transparent 1px),
    rgba(255, 253, 250, 0.72);
  background-size: 50% 50%;
  box-shadow: var(--shadow);
  transform: perspective(1100px) translate3d(0, var(--stage-shift), 0) rotateX(var(--stage-pointer-y)) rotateY(var(--stage-pointer-x));
  transform-style: preserve-3d;
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
  will-change: transform;
}

.brand-stage::before,
.brand-stage::after {
  position: absolute;
  width: 54%;
  height: 54%;
  content: "";
  border: 1px solid rgba(29, 61, 79, 0.22);
  border-radius: 50%;
}

.brand-stage::before {
  top: -34%;
  left: -12%;
  animation: mere-ring-drift 9s ease-in-out infinite alternate;
}

.brand-stage::after {
  right: -12%;
  bottom: -34%;
  animation: mere-ring-drift-reverse 11s ease-in-out infinite alternate;
}

.brand-stage img {
  position: relative;
  z-index: 4;
  width: 48%;
  height: auto;
  aspect-ratio: 1;
  object-fit: contain;
  border-radius: 4px;
  box-shadow: 0 18px 50px rgba(16, 43, 57, 0.16);
  scale: 1;
  animation: mere-mark-breathe 7s ease-in-out infinite;
  transform: translateZ(28px);
}

.mere-surface {
  position: absolute;
  z-index: 2;
  inset: 48% 0 0;
  overflow: hidden;
  border-top: 1px solid rgba(29, 61, 79, 0.2);
  background: linear-gradient(180deg, rgba(93, 132, 181, 0.04), rgba(29, 61, 79, 0.13));
  transform: translate3d(var(--water-shift), 0, 12px);
  will-change: transform;
}

.mere-surface::before,
.mere-surface::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.mere-surface::before {
  inset: 0;
  background:
    linear-gradient(rgba(29, 61, 79, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(29, 61, 79, 0.11) 1px, transparent 1px);
  background-position: 7px -6px;
  background-size: 50% 50%;
  opacity: 0.54;
  transform: scaleY(-1) skewX(-1.4deg);
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.92), transparent 92%);
}

.mere-surface::after {
  inset: -20% -45%;
  background: linear-gradient(112deg, transparent 38%, rgba(255, 255, 255, 0.52) 49%, transparent 61%);
  opacity: 0.34;
  animation: mere-shimmer 9s ease-in-out infinite;
}

.mere-surface svg {
  position: absolute;
  z-index: 2;
  top: -61px;
  left: -18%;
  width: 140%;
  height: 120px;
  overflow: visible;
  animation: mere-wave-drift 12s linear infinite;
}

.mere-surface path {
  fill: none;
  stroke: rgba(29, 61, 79, 0.32);
  stroke-width: 1.2;
  vector-effect: non-scaling-stroke;
}

.mere-surface path + path {
  stroke: rgba(93, 132, 181, 0.19);
}

.stage-note {
  position: absolute;
  z-index: 5;
  right: 18px;
  bottom: 15px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.home-hero + .section-ink {
  position: relative;
  z-index: 2;
  margin-top: -24px;
  overflow: hidden;
  border-radius: 30px 30px 0 0;
  box-shadow: 0 -22px 65px rgba(16, 43, 57, 0.12);
}

.home-studio {
  --studio-image-shift: 0px;
  position: relative;
  background: var(--ink-deep);
  isolation: isolate;
}

.home-studio::before,
.home-studio::after {
  position: absolute;
  pointer-events: none;
  content: "";
}

.home-studio::before {
  z-index: -2;
  inset: -10% -4%;
  background-image: url("/assets/images/pixelmere-mere-waves.jpg");
  background-position: center;
  background-size: cover;
  filter: saturate(0.78) contrast(1.06);
  opacity: 0.86;
  transform: translate3d(0, var(--studio-image-shift), 0) scaleX(-1) scale(1.08);
  will-change: transform;
}

.home-studio::after {
  z-index: -1;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(16, 43, 57, 0.26) 0%, rgba(16, 43, 57, 0.52) 42%, rgba(16, 43, 57, 0.9) 74%, var(--ink-deep) 100%),
    linear-gradient(180deg, rgba(16, 43, 57, 0.18), rgba(16, 43, 57, 0.66));
}

.home-studio .container {
  position: relative;
  z-index: 1;
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.66fr 1.34fr;
  align-items: start;
  gap: 70px;
}

.statement-grid h2 {
  max-width: 850px;
}

.statement-copy {
  max-width: 670px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 20px;
}

.app-grid {
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px;
}

.app-card {
  --card-lift: 0px;
  --card-tilt-x: 0deg;
  --card-tilt-y: 0deg;
  --glow-x: 50%;
  --glow-y: 45%;
  position: relative;
  min-height: 620px;
  padding: clamp(28px, 4vw, 52px);
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: rgba(255, 253, 250, 0.8);
  box-shadow: 0 10px 40px rgba(16, 43, 57, 0.07);
  transform: perspective(1200px) translateY(var(--card-lift)) rotateX(var(--card-tilt-y)) rotateY(var(--card-tilt-x));
  transform-style: preserve-3d;
  transition: transform 320ms var(--ease), box-shadow 320ms var(--ease);
  will-change: transform;
}

.app-card::before {
  position: absolute;
  z-index: 0;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.15), transparent 34%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.app-card > * {
  position: relative;
  z-index: 1;
}

.app-card:hover {
  --card-lift: -7px;
  box-shadow: var(--shadow);
}

.app-card:hover::before {
  opacity: 1;
}

.app-card-markwise {
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--slate);
}

.app-card-promptbar {
  color: white;
  border-color: rgba(255, 255, 255, 0.12);
  background: var(--graphite);
}

.app-card-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 18px;
}

.app-icon {
  width: 86px;
  height: 86px;
  object-fit: contain;
  filter: drop-shadow(0 12px 24px rgba(0, 0, 0, 0.2));
}

.app-icon[src*="markwise"],
.product-title-row img[src*="markwise"],
.support-card img[src*="markwise"] {
  border-radius: 22%;
}

.status-pill {
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 11px;
  font-weight: 720;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.app-card h3 {
  margin: 45px 0 14px;
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 540;
  letter-spacing: -0.055em;
}

.app-card p {
  max-width: 490px;
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 18px;
}

.app-card-visual {
  position: relative;
  height: clamp(230px, 23vw, 290px);
  margin-top: 30px;
  padding: 13px;
  display: grid;
  place-items: center;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 20px;
  box-shadow: 0 22px 45px rgba(0, 0, 0, 0.2);
  transform: translateZ(20px);
  transition: transform 420ms var(--ease), box-shadow 420ms var(--ease);
}

.app-card-visual::after {
  position: absolute;
  z-index: 2;
  inset: 0;
  pointer-events: none;
  content: "";
  background: radial-gradient(circle at var(--glow-x) var(--glow-y), rgba(255, 255, 255, 0.2), transparent 29%);
  opacity: 0;
  transition: opacity 320ms ease;
}

.app-card-visual-promptbar {
  background: #242021;
}

.app-card-visual-markwise {
  background: #1d324b;
}

.app-card-visual img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 14px 25px rgba(0, 0, 0, 0.22));
  transition: transform 450ms var(--ease);
}

.app-card:hover .app-card-visual img {
  transform: scale(1.018);
}

.app-card:hover .app-card-visual {
  box-shadow: 0 28px 55px rgba(0, 0, 0, 0.26);
}

.app-card:hover .app-card-visual::after {
  opacity: 0.68;
}

.app-card-link {
  margin-top: 28px;
  padding-top: 0;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  align-self: flex-start;
  font-size: 15px;
  font-weight: 680;
  text-decoration: none;
}

.app-card-link span {
  transition: transform 180ms var(--ease);
}

.app-card-link:hover span {
  transform: translateX(4px);
}

.principles-grid {
  position: relative;
  margin-top: 55px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  isolation: isolate;
}

.principles-grid::after {
  position: absolute;
  z-index: -1;
  top: -165px;
  right: -165px;
  width: 360px;
  height: 360px;
  content: "";
  border: 1px solid rgba(29, 61, 79, 0.08);
  border-radius: 50%;
  box-shadow: 0 0 0 55px rgba(29, 61, 79, 0.025), 0 0 0 110px rgba(29, 61, 79, 0.018);
}

.principle {
  padding: 30px 36px 0 0;
}

.principle + .principle {
  padding-left: 36px;
  border-left: 1px solid var(--line);
}

.principle-number {
  margin-bottom: 55px;
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.principle p {
  color: var(--ink-soft);
}

.product-hero {
  position: relative;
  min-height: 720px;
  padding: 110px 0 90px;
  display: grid;
  align-items: center;
}

.product-hero-dark {
  color: var(--white);
  background: var(--graphite);
}

.product-hero-slate {
  color: var(--white);
  background:
    radial-gradient(circle at 80% 20%, rgba(108, 147, 193, 0.23), transparent 35%),
    var(--slate);
}

.product-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(420px, 1.15fr);
  align-items: center;
  gap: clamp(50px, 7vw, 100px);
}

.product-hero-dark .product-hero-grid {
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.58fr);
}

.product-hero-dark .interface-frame-screenshot {
  width: min(320px, 100%);
  justify-self: center;
}

.product-title-row {
  margin-bottom: 28px;
  display: flex;
  align-items: center;
  gap: 20px;
}

.product-title-row img {
  width: 82px;
  height: 82px;
  object-fit: contain;
  filter: drop-shadow(0 12px 26px rgba(0, 0, 0, 0.25));
}

.product-title-row h1 {
  margin: 0;
  font-size: clamp(55px, 7vw, 92px);
}

.availability {
  margin-top: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 13px;
  font-weight: 650;
}

.availability::before {
  width: 8px;
  height: 8px;
  content: "";
  border: 2px solid currentColor;
  border-radius: 50%;
}

.interface-frame {
  position: relative;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.06);
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.3);
  transform: rotate(1.25deg);
  transition: transform 520ms var(--ease), box-shadow 520ms var(--ease);
}

.interface-label {
  position: absolute;
  z-index: 5;
  top: -42px;
  right: 10px;
  padding: 7px 11px;
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(16, 43, 57, 0.94);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  line-height: 1;
  white-space: nowrap;
  text-transform: uppercase;
}

.interface-frame-screenshot {
  padding: 0;
  border: 0;
  background: transparent;
}

.product-screenshot-crop {
  position: relative;
  width: 100%;
  overflow: visible;
  background: transparent;
}

.product-screenshot-crop-promptbar {
  aspect-ratio: auto;
}

.product-screenshot-crop-markwise {
  aspect-ratio: auto;
}

.product-screenshot-crop img {
  position: static;
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: contain;
  filter: drop-shadow(0 28px 45px rgba(0, 0, 0, 0.28));
}

.promptbar-preview {
  min-height: 440px;
  padding: 26px;
  color: #1e2429;
  border-radius: 16px;
  background: #f2f0ec;
}

.preview-menubar {
  margin-bottom: 26px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.preview-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
}

.preview-tab {
  padding: 7px 12px;
  color: #697078;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.05);
  font-size: 11px;
  font-weight: 670;
}

.preview-tab.active {
  color: #fff;
  background: #24272a;
}

.preview-gear {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  color: #73777b;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 50%;
  font-size: 12px;
}

.prompt-row {
  padding: 18px 4px;
  display: grid;
  grid-template-columns: 38px 1fr auto;
  align-items: center;
  gap: 12px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.prompt-symbol {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 10px;
  background: #2f3337;
  font-size: 13px;
  font-weight: 700;
}

.prompt-text strong,
.prompt-text small {
  display: block;
}

.prompt-text strong {
  margin-bottom: 2px;
  font-size: 13px;
}

.prompt-text small {
  max-width: 330px;
  overflow: hidden;
  color: #747b82;
  font-size: 10px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.copy-pill {
  padding: 7px 10px;
  color: #3b4248;
  border: 1px solid rgba(0, 0, 0, 0.12);
  border-radius: 999px;
  font-size: 10px;
  font-weight: 700;
}

.markwise-preview {
  min-height: 470px;
  display: grid;
  grid-template-columns: 150px 1fr;
  overflow: hidden;
  color: #243444;
  border-radius: 16px;
  background: #f7f7f5;
}

.notes-sidebar {
  padding: 24px 14px;
  border-right: 1px solid rgba(25, 48, 70, 0.1);
  background: #e8edf2;
}

.traffic-lights {
  margin-bottom: 25px;
  display: flex;
  gap: 6px;
}

.traffic-lights span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(29, 61, 79, 0.25);
}

.sidebar-title {
  margin-bottom: 13px;
  color: #6b7783;
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.note-item {
  margin-bottom: 5px;
  padding: 8px 9px;
  overflow: hidden;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 620;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.note-item.active {
  color: #fff;
  background: #304c68;
}

.editor-pane {
  padding: 28px 34px;
}

.editor-toolbar {
  margin-bottom: 32px;
  display: flex;
  justify-content: space-between;
  color: #84909a;
  font-size: 9px;
  font-weight: 700;
}

.rendered-note h4 {
  margin: 0 0 14px;
  font-size: 29px;
  font-weight: 610;
  letter-spacing: -0.045em;
}

.rendered-note p {
  margin-bottom: 15px;
  color: #62707c;
  font-size: 11px;
  line-height: 1.6;
}

.rendered-note blockquote {
  margin: 20px 0;
  padding: 10px 14px;
  color: #47617a;
  border-left: 3px solid #6689ae;
  background: #edf2f6;
  font-size: 10px;
}

.rendered-note code {
  padding: 2px 5px;
  border-radius: 4px;
  background: #e9edf0;
  font-size: 9px;
}

.feature-grid {
  margin-top: 60px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.63);
}

.feature {
  min-height: 230px;
  padding: 30px;
}

.feature:nth-child(n + 4) {
  border-top: 1px solid var(--line);
}

.feature:not(:nth-child(3n + 1)) {
  border-left: 1px solid var(--line);
}

.feature-symbol {
  width: 38px;
  height: 38px;
  margin-bottom: 45px;
  display: grid;
  place-items: center;
  color: var(--ink);
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  font-size: 14px;
  font-weight: 720;
}

.feature p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.feature-spotlight {
  margin-top: 84px;
  padding: clamp(30px, 5vw, 58px);
  display: grid;
  grid-template-columns: minmax(260px, 0.65fr) minmax(0, 1.35fr);
  align-items: center;
  gap: clamp(38px, 6vw, 76px);
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  background: var(--slate);
  box-shadow: var(--shadow);
}

.feature-spotlight-promptbar {
  grid-template-columns: minmax(280px, 0.9fr) minmax(280px, 0.7fr);
  background:
    radial-gradient(circle at 85% 10%, rgba(255, 151, 109, 0.16), transparent 34%),
    var(--graphite);
}

.feature-spotlight .eyebrow {
  color: rgba(255, 255, 255, 0.6);
}

.feature-spotlight h3 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1;
}

.feature-spotlight-copy > p:last-child {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 17px;
}

.comparison-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

.product-shot {
  margin: 0;
  padding: 10px 10px 0;
  overflow: visible;
  color: var(--ink-deep);
  border: 1px solid rgba(29, 61, 79, 0.13);
  border-radius: 22px;
  background: rgba(255, 253, 250, 0.96);
  box-shadow: 0 22px 54px rgba(16, 43, 57, 0.15);
  transform: translateY(0) rotate(0);
  transition: transform 480ms var(--ease), box-shadow 480ms var(--ease);
}

.product-shot img {
  width: 100%;
  height: auto;
  border-radius: 0;
}

.product-shot figcaption {
  min-height: 58px;
  padding: 13px 7px 14px;
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 18px;
  font-size: 12px;
}

.product-shot figcaption strong {
  font-size: 13px;
}

.product-shot figcaption span {
  color: var(--ink-soft);
  text-align: right;
}

.product-shot-dark {
  color: #f6f6f4;
  border-color: rgba(255, 255, 255, 0.13);
  background: #151515;
}

.product-shot-dark figcaption span {
  color: rgba(255, 255, 255, 0.58);
}

.product-shot-compact {
  width: min(460px, 100%);
  justify-self: end;
}

.section-theme-showcase {
  border-block: 1px solid var(--line);
  background:
    radial-gradient(circle at 12% 20%, rgba(129, 160, 197, 0.22), transparent 26%),
    radial-gradient(circle at 86% 78%, rgba(193, 152, 215, 0.19), transparent 30%),
    rgba(255, 253, 250, 0.72);
}

.showcase-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  align-items: end;
  gap: clamp(48px, 9vw, 130px);
}

.showcase-heading-row h2,
.showcase-heading-row .lede {
  margin-bottom: 0;
}

.theme-gallery {
  margin-top: 58px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
  gap: 18px;
}

.settings-showcase {
  margin-top: 32px;
  padding-top: 78px;
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  border-top: 1px solid var(--line);
}

.settings-showcase h3 {
  max-width: 500px;
  margin-bottom: 18px;
  font-size: clamp(34px, 4vw, 48px);
  font-weight: 540;
  letter-spacing: -0.05em;
  line-height: 1.04;
}

.settings-showcase .lede {
  margin-bottom: 0;
  font-size: 18px;
}

.product-shot-settings {
  background: #f1eef1;
}

.split-section {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: start;
  gap: clamp(60px, 10vw, 150px);
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 15px;
  border-bottom: 1px solid var(--line);
}

.step-number {
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 730;
  letter-spacing: 0.1em;
}

.step h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
}

.spec-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-block: 1px solid var(--line);
}

.spec {
  padding: 28px 24px;
}

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

.spec dt {
  margin-bottom: 8px;
  color: var(--ink-soft);
  font-size: 10px;
  font-weight: 740;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.spec dd {
  margin: 0;
  font-size: 16px;
  font-weight: 640;
}

.page-hero {
  padding: 105px 0 75px;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 250, 0.5);
}

.page-hero h1 {
  max-width: 940px;
}

.page-hero .lede {
  margin-bottom: 0;
}

.content-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, var(--measure));
  justify-content: space-between;
  gap: 80px;
}

.side-nav {
  position: sticky;
  top: 108px;
  align-self: start;
}

.side-nav strong {
  margin-bottom: 14px;
  display: block;
  font-size: 12px;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.side-nav a {
  padding: 7px 0;
  display: block;
  color: var(--ink-soft);
  font-size: 14px;
  text-decoration: none;
}

.side-nav a:hover {
  color: var(--ink-deep);
}

.prose {
  max-width: var(--measure);
}

.prose h2 {
  margin: 70px 0 22px;
  padding-top: 10px;
  font-size: 34px;
  letter-spacing: -0.04em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin-top: 35px;
  font-size: 20px;
}

.prose p,
.prose li {
  color: #415b69;
}

.prose ul,
.prose ol {
  padding-left: 1.35em;
}

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

.prose a {
  color: var(--ink-deep);
  font-weight: 600;
}

.prose .meta {
  margin-bottom: 40px;
  color: var(--ink-soft);
  font-size: 13px;
}

.notice {
  margin: 32px 0;
  padding: 22px 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 253, 250, 0.74);
}

.notice strong {
  margin-bottom: 5px;
  display: block;
}

.notice p {
  margin: 0;
  font-size: 15px;
}

.support-grid {
  margin-top: 52px;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}

.support-card {
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: rgba(255, 253, 250, 0.72);
}

.support-card img {
  width: 60px;
  height: 60px;
  margin-bottom: 30px;
  object-fit: contain;
}

.support-card p {
  color: var(--ink-soft);
}

.support-card a {
  font-weight: 660;
}

.faq-list {
  margin-top: 40px;
  border-top: 1px solid var(--line);
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 24px 42px 24px 0;
  position: relative;
  list-style: none;
  font-size: 18px;
  font-weight: 640;
  cursor: pointer;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 5px;
  content: "+";
  color: var(--ink-soft);
  font-size: 22px;
  font-weight: 400;
  line-height: 1;
  transition: transform 180ms ease;
}

.faq-list details[open] summary::after {
  transform: rotate(45deg);
}

.faq-answer {
  max-width: 670px;
  padding: 0 40px 25px 0;
  color: var(--ink-soft);
}

.faq-answer p:last-child {
  margin-bottom: 0;
}

.contact-band {
  padding: 90px 0;
  color: var(--white);
  background: var(--ink);
}

.contact-band-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 40px;
}

.contact-band h2 {
  max-width: 850px;
  margin: 0;
}

.contact-band p {
  margin: 15px 0 0;
  color: rgba(255, 255, 255, 0.65);
}

.contact-band .button {
  color: var(--ink-deep);
  border-color: var(--white);
  background: var(--white);
}

.site-footer {
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink-deep);
}

.footer-main {
  width: var(--page);
  padding: 76px 0 54px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.3fr repeat(3, minmax(120px, 0.55fr));
  gap: 50px;
}

.footer-brand .brand-lockup {
  margin-bottom: 20px;
  color: var(--white);
}

.footer-brand p {
  max-width: 340px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 14px;
}

.footer-column strong {
  margin-bottom: 17px;
  display: block;
  color: var(--white);
  font-size: 11px;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.footer-column a {
  margin-bottom: 9px;
  display: block;
  color: rgba(255, 255, 255, 0.58);
  font-size: 14px;
  text-decoration: none;
}

.footer-column a:hover {
  color: var(--white);
}

.footer-bottom {
  width: var(--page);
  padding: 22px 0 30px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: 30px;
  color: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.four-oh-four {
  min-height: 70vh;
  display: grid;
  place-items: center;
  text-align: center;
}

.four-oh-four strong {
  margin-bottom: 10px;
  display: block;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.four-oh-four h1 {
  font-size: clamp(52px, 8vw, 90px);
}

@keyframes mere-ring-drift {
  from {
    translate: 0 0;
    rotate: 0deg;
  }
  to {
    translate: 10px 8px;
    rotate: 3deg;
  }
}

@keyframes mere-ring-drift-reverse {
  from {
    translate: 0 0;
    rotate: 0deg;
  }
  to {
    translate: -9px -6px;
    rotate: -2.5deg;
  }
}

@keyframes mere-mark-breathe {
  0%, 100% {
    scale: 1;
  }
  50% {
    scale: 1.012;
  }
}

@keyframes mere-wave-drift {
  from {
    translate: 0 0;
  }
  to {
    translate: -14.28% 0;
  }
}

@keyframes mere-shimmer {
  0%, 22% {
    translate: -22% 0;
  }
  68%, 100% {
    translate: 22% 0;
  }
}

@media (hover: hover) and (pointer: fine) {
  .interface-frame:hover {
    box-shadow: 0 42px 115px rgba(0, 0, 0, 0.36);
    transform: translateY(-7px) rotate(0.35deg);
  }

  .product-shot:hover {
    box-shadow: 0 30px 68px rgba(16, 43, 57, 0.2);
    transform: translateY(-6px) rotate(-0.25deg);
  }
}

@media (max-width: 980px) {
  .hero-grid,
  .product-hero-grid,
  .statement-grid,
  .split-section {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 70px;
  }

  .hero-copy {
    max-width: 760px;
  }

  .brand-stage {
    width: min(620px, 100%);
  }

  .statement-grid {
    gap: 25px;
  }

  .app-card {
    min-height: 560px;
  }

  .product-hero-grid {
    gap: 75px;
  }

  .product-hero-dark .product-hero-grid {
    grid-template-columns: 1fr;
  }

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

  .interface-frame {
    max-width: 760px;
  }

  .feature-spotlight,
  .feature-spotlight-promptbar,
  .showcase-heading-row,
  .settings-showcase {
    grid-template-columns: 1fr;
  }

  .feature-spotlight-copy {
    max-width: 650px;
  }

  .product-shot-compact {
    justify-self: start;
  }

  .settings-showcase {
    gap: 55px;
  }

  .product-shot-settings {
    max-width: 760px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }

  .side-nav {
    position: static;
    padding-bottom: 20px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px 18px;
    border-bottom: 1px solid var(--line);
  }

  .side-nav strong {
    width: 100%;
  }

  .side-nav a {
    padding: 2px 0;
  }

  .footer-main {
    grid-template-columns: 1.4fr repeat(2, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 760px) {
  :root {
    --page: min(100% - 32px, 620px);
  }

  body {
    font-size: 16px;
    background-size: 32px 32px;
  }

  .header-inner {
    min-height: 66px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 66px;
    right: 16px;
    left: 16px;
    padding: 13px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    border: 1px solid var(--line);
    border-radius: 16px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .site-nav[data-open="true"] {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .site-nav .nav-contact {
    margin: 4px 0 0;
    text-align: center;
  }

  .section {
    padding: 80px 0;
  }

  .section-tight {
    padding: 58px 0;
  }

  h1 {
    font-size: clamp(49px, 15vw, 74px);
  }

  .brand-tagline,
  .hero-copy .brand-tagline {
    font-size: clamp(48px, 13vw, 62px);
  }

  h2 {
    font-size: clamp(37px, 11vw, 54px);
  }

  .home-hero {
    min-height: auto;
    padding: 62px 0 80px;
  }

  .home-hero::before {
    transform: none;
  }

  .home-hero + .section-ink {
    margin-top: -14px;
    border-radius: 21px 21px 0 0;
  }

  .home-studio::before {
    inset: -7%;
    background-position: 72% center;
    opacity: 0.84;
    transform: scaleX(-1) scale(1.06);
  }

  .home-studio::after {
    background:
      linear-gradient(90deg, rgba(16, 43, 57, 0.46), rgba(16, 43, 57, 0.64)),
      linear-gradient(180deg, rgba(16, 43, 57, 0.16), rgba(16, 43, 57, 0.62));
  }

  .hero-grid {
    gap: 60px;
  }

  .hero-copy,
  .brand-stage {
    transform: none;
  }

  .mere-surface {
    transform: none;
  }

  .motion-ready .reveal-item {
    filter: none;
    translate: 0 14px;
  }

  .app-card,
  .app-card:hover {
    --card-lift: 0px;
    --card-tilt-x: 0deg;
    --card-tilt-y: 0deg;
  }

  .app-card-visual {
    transform: none;
  }

  .button-row .button {
    flex: 1 1 auto;
  }

  .app-grid,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .app-card {
    min-height: 510px;
  }

  .app-card-visual {
    height: min(74vw, 310px);
  }

  .principles-grid {
    grid-template-columns: 1fr;
  }

  .principle,
  .principle + .principle {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .principle-number {
    margin-bottom: 28px;
  }

  .product-hero {
    min-height: auto;
    padding: 75px 0 80px;
  }

  .product-title-row {
    align-items: flex-start;
    flex-direction: column;
  }

  .product-title-row img {
    width: 70px;
    height: 70px;
  }

  .product-title-row h1 {
    font-size: clamp(52px, 16vw, 78px);
  }

  .promptbar-preview {
    min-height: 380px;
    padding: 18px;
  }

  .preview-tabs .preview-tab:nth-child(n + 3) {
    display: none;
  }

  .prompt-row {
    grid-template-columns: 34px 1fr;
  }

  .copy-pill {
    display: none;
  }

  .markwise-preview {
    min-height: 420px;
    grid-template-columns: 90px 1fr;
  }

  .notes-sidebar {
    padding: 20px 8px;
  }

  .editor-pane {
    padding: 23px 18px;
  }

  .rendered-note h4 {
    font-size: 23px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature,
  .feature:nth-child(n + 4),
  .feature:not(:nth-child(3n + 1)) {
    min-height: 0;
    border-top: 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .feature:last-child {
    border-bottom: 0;
  }

  .feature-symbol {
    margin-bottom: 28px;
  }

  .feature-spotlight {
    margin-top: 60px;
    padding: 30px;
    gap: 38px;
  }

  .comparison-grid,
  .theme-gallery {
    grid-template-columns: 1fr;
  }

  .theme-gallery {
    gap: 24px;
  }

  .theme-gallery .product-shot {
    width: min(620px, 100%);
  }

  .settings-showcase {
    margin-top: 10px;
    padding-top: 62px;
  }

  .spec-strip {
    grid-template-columns: repeat(2, 1fr);
  }

  .spec + .spec {
    border-left: 0;
  }

  .spec:nth-child(even) {
    border-left: 1px solid var(--line);
  }

  .spec:nth-child(n + 3) {
    border-top: 1px solid var(--line);
  }

  .page-hero {
    padding: 75px 0 55px;
  }

  .contact-band-inner {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .contact-band .button {
    justify-self: start;
  }

  .footer-main {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px 28px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }
}

@media (max-width: 430px) {
  .app-card {
    min-height: 470px;
    padding: 27px;
  }

  .app-icon {
    width: 72px;
    height: 72px;
  }

  .app-card-visual {
    height: 220px;
    margin-top: 24px;
    padding: 9px;
    border-radius: 16px;
  }

  .interface-frame {
    margin-inline: -9px;
    padding: 8px;
    transform: none;
  }

  .promptbar-preview {
    padding: 14px;
  }

  .prompt-text small {
    max-width: 180px;
  }

  .feature {
    padding: 26px;
  }

  .feature-spotlight {
    padding: 24px;
    border-radius: 22px;
  }

  .product-shot {
    padding: 6px 6px 0;
    border-radius: 17px;
  }

  .product-shot img {
    border-radius: 0;
  }

  .product-shot figcaption {
    min-height: 54px;
    padding-inline: 5px;
  }

  .support-card {
    padding: 27px;
  }

  .footer-main {
    grid-template-columns: 1fr;
  }

  .footer-brand {
    grid-column: auto;
  }
}

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

  .motion-ready .reveal-item,
  .motion-ready .reveal-item.reveal-visible {
    opacity: 1 !important;
    filter: none !important;
    translate: none !important;
  }

  .hero-copy,
  .brand-stage,
  .mere-surface,
  .app-card,
  .app-card:hover,
  .app-card-visual,
  .interface-frame,
  .interface-frame:hover,
  .product-shot,
  .product-shot:hover {
    transform: none !important;
  }
}

@media print {
  .site-header,
  .site-footer,
  .contact-band,
  .side-nav,
  .button-row {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
    font-size: 12pt;
  }

  .page-hero,
  .section {
    padding: 20px 0;
  }

  .content-grid {
    display: block;
  }
}
