@font-face {
  font-family: "Cormorant Garamond";
  src: url("media/cormorant-garamond-600.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Jost";
  src: url("media/jost-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Jost";
  src: url("media/jost-600.woff2") format("woff2");
  font-display: swap;
  font-weight: 600;
}

@font-face {
  font-family: "Anton";
  src: url("media/anton-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Archivo";
  src: url("media/archivo-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

@font-face {
  font-family: "Playfair Display";
  src: url("media/playfair-display-400.woff2") format("woff2");
  font-display: swap;
  font-weight: 400;
}

:root {
  --ink: #11100f;
  --paper: #f7f5f0;
  --chalk: #fffefb;
  --stone: #d3ccc0;
  --taupe: #65584d;
  --signal: #ff4e1a;
  --concrete: #dce0df;
  --slate: #485052;
  --rule: rgba(17, 16, 15, 0.22);
  --page: clamp(1.25rem, 4vw, 4.5rem);
  --display: "Cormorant Garamond", Georgia, serif;
  --body: "Jost", Arial, sans-serif;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  line-height: 1.55;
  text-rendering: optimizeLegibility;
}

body,
button,
a {
  -webkit-font-smoothing: antialiased;
}

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

button,
a {
  color: inherit;
}

a {
  text-decoration: none;
}

button {
  font: inherit;
}

.skip-link {
  position: fixed;
  z-index: 100;
  top: 0.5rem;
  left: 0.5rem;
  padding: 0.75rem 1rem;
  background: var(--chalk);
  color: var(--ink);
  transform: translateY(-150%);
}

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

:focus-visible {
  outline: 2px solid currentColor;
  outline-offset: 4px;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: grid;
  width: 100%;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.35rem var(--page);
  border-bottom: 1px solid rgba(255, 255, 255, 0.32);
  color: var(--chalk);
  transition: background 300ms ease, color 300ms ease, border-color 300ms ease;
}

.site-header.is-sticky {
  position: fixed;
  background: rgba(247, 245, 240, 0.93);
  border-color: var(--rule);
  color: var(--ink);
  backdrop-filter: blur(12px);
}

.wordmark {
  justify-self: start;
  font-family: var(--display);
  font-size: 1.7rem;
  font-weight: 600;
  line-height: 1;
  letter-spacing: -0.04em;
}

.header-nav {
  display: flex;
  gap: clamp(1.2rem, 3vw, 3rem);
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.header-nav a,
.header-cta,
.text-link {
  position: relative;
}

.header-nav a::after,
.header-cta::after,
.text-link::after {
  position: absolute;
  right: 0;
  bottom: -0.25rem;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 400ms var(--ease);
}

.header-nav a:hover::after,
.header-cta:hover::after,
.text-link:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  justify-self: end;
  font-size: 0.7rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.hero {
  position: relative;
  min-height: min(920px, 100svh);
  overflow: hidden;
  background: var(--ink);
  color: var(--chalk);
}

.hero-media,
.hero-scrim {
  position: absolute;
  inset: 0;
}

.hero-media {
  display: grid;
  grid-template-columns: 52fr 24fr 24fr;
}

.hero-slice {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border-right: 1px solid rgba(255, 255, 255, 0.28);
}

.hero-slice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.84);
  transition: filter 800ms ease, transform 1.4s var(--ease);
}

.hero-slice picture {
  display: block;
  width: 100%;
  height: 100%;
}

.hero-slice--ledger img {
  object-position: 47% center;
}

.hero-slice--sodium img {
  object-position: 58% center;
}

.hero-slice--museum img {
  object-position: 50% center;
}

.hero:hover .hero-slice img {
  transform: scale(1.015);
}

.hero:hover .hero-slice--sodium img {
  filter: saturate(1);
}

.hero-scrim {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.77) 0%, rgba(13, 12, 11, 0.2) 58%, rgba(13, 12, 11, 0.5) 100%),
    linear-gradient(0deg, rgba(13, 12, 11, 0.67), transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(980px, 80vw);
  min-height: min(920px, 100svh);
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  padding: 9rem var(--page) clamp(5rem, 10vh, 8rem);
}

.eyebrow,
.section-index,
.feature-label,
.preset-kicker {
  margin: 0;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-eyebrow {
  margin-bottom: 1.4rem;
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.8rem, 7.8vw, 8.7rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.78;
}

.hero h1 span {
  display: block;
}

.hero h1 span:last-child {
  margin-left: clamp(1rem, 8vw, 8rem);
  font-style: italic;
}

.hero-copy {
  max-width: 620px;
  margin: 2.5rem 0 0 clamp(1rem, 8vw, 8rem);
  font-size: clamp(1rem, 1.4vw, 1.25rem);
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1.7rem;
  margin: 2rem 0 0 clamp(1rem, 8vw, 8rem);
}

.button {
  display: inline-flex;
  min-height: 3.25rem;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.85rem 1.3rem;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--chalk);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 250ms ease, color 250ms ease;
}

.button:hover {
  background: transparent;
  color: var(--ink);
}

.button--light {
  border-color: var(--chalk);
  background: var(--chalk);
  color: var(--ink);
}

.button--light:hover {
  background: transparent;
  color: var(--chalk);
}

.text-link {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.text-link--light {
  color: var(--chalk);
}

.hero-folio {
  position: absolute;
  z-index: 2;
  right: var(--page);
  bottom: 2rem;
  display: flex;
  gap: 1.5rem;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.proof-rail {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--rule);
}

.proof-rail p {
  display: flex;
  min-height: 6.5rem;
  align-items: center;
  gap: 0.8rem;
  margin: 0;
  padding: 1rem var(--page);
  border-right: 1px solid var(--rule);
}

.proof-rail p:last-child {
  border-right: 0;
}

.proof-rail strong {
  font-family: var(--display);
  font-size: 2.4rem;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.proof-rail span {
  max-width: 7rem;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  line-height: 1.35;
  text-transform: uppercase;
}

.section-shell {
  padding-right: var(--page);
  padding-left: var(--page);
}

.intro {
  padding-top: clamp(6rem, 13vw, 12rem);
  padding-bottom: clamp(6rem, 13vw, 12rem);
}

.section-index {
  color: var(--taupe);
}

.intro > .section-index {
  padding-bottom: 1.4rem;
  border-bottom: 1px solid var(--rule);
}

.intro-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(18rem, 0.65fr);
  gap: clamp(3rem, 9vw, 9rem);
  padding-top: 2.5rem;
}

.intro h2,
.preset-heading h2,
.feature-heading h2,
.proof-intro h2,
.motion-copy h2,
.stack-heading h2,
.merchant-copy h2,
.explore-copy h2,
.final-section h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.1rem, 6vw, 7.4rem);
  font-weight: 600;
  letter-spacing: -0.058em;
  line-height: 0.91;
}

.intro-copy {
  align-self: end;
  color: #35322f;
}

.intro-copy p {
  margin: 0 0 1rem;
}

.preset-section {
  overflow: hidden;
  background: #d9d1c5;
  transition: background 700ms var(--ease), color 700ms var(--ease);
}

.preset-section .section-index {
  color: currentColor;
}

.preset-section[data-active-preset="sodium"] {
  background: #111;
  color: #fff;
}

.preset-section[data-active-preset="museum"] {
  background: var(--concrete);
  color: #222728;
}

.preset-heading {
  display: grid;
  grid-template-columns: 1.5fr minmax(17rem, 0.5fr);
  gap: 4rem;
  align-items: end;
  padding-top: clamp(5rem, 10vw, 9rem);
  padding-bottom: 3rem;
}

.preset-heading h2 {
  margin-top: 1rem;
}

.preset-heading > p {
  margin: 0;
}

.preset-switcher {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.preset-tab {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0 1rem;
  min-height: 6.7rem;
  padding: 1.3rem 1.5rem;
  border: 0;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: inherit;
  cursor: pointer;
  text-align: left;
  transition: background 250ms ease, color 250ms ease;
}

.preset-tab:last-child {
  border-right: 0;
}

.preset-tab span {
  grid-row: 1 / span 2;
  padding-top: 0.18rem;
  font-size: 0.58rem;
  letter-spacing: 0.15em;
}

.preset-tab strong {
  font-family: var(--display);
  font-size: 1.65rem;
  line-height: 1;
}

.preset-tab small {
  align-self: end;
  font-size: 0.63rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.preset-tab.is-active {
  background: var(--ink);
  color: var(--chalk);
}

[data-active-preset="sodium"] .preset-tab {
  font-family: "Archivo", sans-serif;
}

[data-active-preset="sodium"] .preset-tab strong {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

[data-active-preset="sodium"] .preset-tab.is-active {
  background: var(--signal);
  color: #111;
}

[data-active-preset="museum"] .preset-tab strong {
  font-family: "Playfair Display", serif;
}

[data-active-preset="museum"] .preset-tab.is-active {
  background: var(--slate);
  color: #fff;
}

.preset-stage {
  display: grid;
  min-height: min(780px, 80vw);
  grid-template-columns: minmax(0, 1.55fr) minmax(21rem, 0.55fr);
}

.preset-stage-media {
  min-width: 0;
  min-height: 42rem;
  margin: 0;
  overflow: hidden;
}

.preset-stage-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: preset-in 900ms var(--ease) both;
}

[data-preset-media="marque"] img {
  object-position: center 30%;
}

.preset-stage-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(2rem, 5vw, 5rem);
}

.preset-stage-copy article {
  animation: copy-in 650ms var(--ease) both;
}

.preset-stage-copy h3 {
  max-width: 10ch;
  margin: 1rem 0 1.5rem;
  font-family: var(--display);
  font-size: clamp(2.7rem, 4vw, 5.2rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

[data-active-preset="sodium"] .preset-stage-copy h3 {
  max-width: 8ch;
  font-family: "Anton", sans-serif;
  font-size: clamp(3.2rem, 5.3vw, 6.6rem);
  letter-spacing: -0.03em;
  line-height: 0.9;
  text-transform: uppercase;
}

[data-active-preset="museum"] .preset-stage-copy h3 {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.preset-stage-copy article > p:not(.preset-kicker) {
  max-width: 40rem;
}

.preset-details {
  margin: 2rem 0 2.5rem;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.preset-details li {
  padding: 0.7rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.preset-demo-link {
  align-self: flex-start;
}

[data-active-preset="sodium"] .preset-demo-link {
  border-color: var(--signal);
  background: var(--signal);
  color: #111;
}

[data-active-preset="museum"] .preset-demo-link {
  border-color: var(--slate);
  background: var(--slate);
}

@keyframes preset-in {
  from { opacity: 0; transform: scale(1.025); }
  to { opacity: 1; transform: scale(1); }
}

@keyframes copy-in {
  from { opacity: 0; transform: translateY(1rem); }
  to { opacity: 1; transform: translateY(0); }
}

.motion-section {
  display: grid;
  grid-template-columns: 1.6fr 0.7fr;
  background: var(--ink);
  color: var(--chalk);
}

.motion-media {
  position: relative;
  min-height: 47rem;
  overflow: hidden;
}

.motion-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.film-control {
  position: absolute;
  right: 1.5rem;
  bottom: 1.5rem;
  min-height: 2.75rem;
  padding: 0.5rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.6);
  background: rgba(0, 0, 0, 0.25);
  color: #fff;
  cursor: pointer;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.motion-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(3rem, 6vw, 6.5rem) var(--page);
}

.motion-copy .section-index {
  color: var(--stone);
}

.motion-copy h2 {
  margin-top: 1rem;
  font-size: clamp(2.9rem, 4.7vw, 5.8rem);
}

.motion-copy > p:not(.section-index) {
  max-width: 35rem;
  margin: 2rem 0 3rem;
  color: #ccc7bf;
}

.motion-copy dl {
  margin: 0;
  border-top: 1px solid rgba(255, 255, 255, 0.35);
}

.motion-copy dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.8rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.35);
}

.motion-copy dt,
.motion-copy dd {
  margin: 0;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-section {
  padding-top: clamp(6rem, 12vw, 11rem);
  padding-bottom: clamp(6rem, 12vw, 11rem);
}

.proof-intro {
  display: grid;
  grid-template-columns: 1.2fr minmax(18rem, 0.45fr);
  gap: 4rem;
  align-items: end;
}

.proof-intro .section-index {
  grid-column: 1 / -1;
  padding-bottom: 1.2rem;
  border-bottom: 1px solid var(--rule);
}

.proof-intro p:last-child {
  margin: 0;
}

.score-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
}

.score-card {
  min-height: 34rem;
  padding: clamp(1.5rem, 3vw, 3rem);
  border: 1px solid var(--ink);
}

.score-card + .score-card {
  border-left: 0;
}

.score-card--ink {
  background: var(--ink);
  color: var(--chalk);
}

.score-card > p,
.score-card > span {
  margin: 0;
  font-size: 0.67rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.score-card > strong {
  display: block;
  margin: 2.5rem 0 0;
  font-family: var(--display);
  font-size: clamp(7rem, 12vw, 12rem);
  font-weight: 600;
  letter-spacing: -0.09em;
  line-height: 0.65;
}

.score-card > span {
  display: block;
  margin-top: 2rem;
}

.score-card dl {
  margin: 5rem 0 0;
  border-top: 1px solid currentColor;
}

.score-card dl div {
  display: flex;
  justify-content: space-between;
  padding: 0.75rem 0;
  border-bottom: 1px solid currentColor;
}

.score-card dt,
.score-card dd {
  margin: 0;
  font-size: 0.65rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.proof-note {
  max-width: 48rem;
  margin: 1.5rem 0 0 auto;
  font-size: 0.72rem;
  color: #57514c;
}

.feature-section {
  padding-top: clamp(5rem, 10vw, 9rem);
  background: #e5e0d7;
}

.feature-heading {
  display: grid;
  grid-template-columns: 0.4fr 1fr;
  gap: 4rem;
  align-items: start;
  padding-bottom: clamp(5rem, 9vw, 9rem);
}

.feature-heading h2 {
  max-width: 12ch;
}

.feature-story {
  display: grid;
  min-height: 50rem;
  grid-template-columns: 1.45fr 0.65fr;
  border-top: 1px solid var(--rule);
}

.feature-story:nth-of-type(even) {
  grid-template-columns: 0.65fr 1.45fr;
}

.feature-story:nth-of-type(even) .feature-image {
  grid-column: 2;
}

.feature-story:nth-of-type(even) .feature-copy {
  grid-row: 1;
  grid-column: 1;
}

.feature-image {
  min-height: 50rem;
  overflow: hidden;
}

.feature-image > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-story--product .feature-image {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
}

.feature-story--product .feature-image img {
  min-width: 0;
  height: 100%;
  object-fit: cover;
}

.feature-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(2rem, 6vw, 6rem) var(--page);
}

.feature-copy h3 {
  margin: 1rem 0 1.6rem;
  font-family: var(--display);
  font-size: clamp(2.8rem, 4.6vw, 5.8rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.93;
}

.feature-copy > p:not(.feature-label) {
  max-width: 32rem;
}

.feature-copy ul,
.merchant-copy ul {
  margin: 2rem 0 0;
  padding: 0;
  border-top: 1px solid currentColor;
  list-style: none;
}

.feature-copy li,
.merchant-copy li {
  padding: 0.72rem 0;
  border-bottom: 1px solid currentColor;
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stack-section {
  display: grid;
  grid-template-columns: 0.8fr 1fr 0.7fr;
  background: var(--chalk);
}

.stack-heading,
.stack-total {
  padding: clamp(4rem, 8vw, 8rem) var(--page);
}

.stack-heading h2 {
  margin-top: 1rem;
  font-size: clamp(3rem, 5vw, 6rem);
}

.stack-heading > p:last-child {
  max-width: 30rem;
  margin-top: 2rem;
}

.stack-list {
  margin: 0;
  padding: 0;
  border-right: 1px solid var(--rule);
  border-left: 1px solid var(--rule);
  list-style: none;
}

.stack-list li {
  display: flex;
  min-height: 8rem;
  flex-direction: column;
  justify-content: center;
  margin: 0;
  padding: 1rem clamp(1.5rem, 4vw, 4rem);
  border-bottom: 1px solid var(--rule);
}

.stack-list li:last-child {
  border-bottom: 0;
}

.stack-list span {
  font-family: var(--display);
  font-size: 2rem;
  line-height: 1;
}

.stack-list small {
  margin-top: 0.6rem;
  font-size: 0.68rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.stack-total {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  background: #b9ad9d;
}

.stack-total > span {
  font-size: 0.66rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.stack-total > strong {
  display: block;
  margin: 1.5rem 0;
  font-family: var(--display);
  font-size: clamp(4rem, 7vw, 8rem);
  font-weight: 600;
  letter-spacing: -0.07em;
  line-height: 0.72;
}

.stack-total > strong small {
  display: block;
  margin-top: 1rem;
  font-family: var(--body);
  font-size: 0.68rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stack-total p {
  max-width: 27rem;
  font-size: 0.72rem;
}

.merchant-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 10vw, 10rem);
  padding-top: clamp(6rem, 12vw, 12rem);
  padding-bottom: clamp(6rem, 12vw, 12rem);
}

.merchant-art {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-self: center;
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--ink);
  transform: rotate(-2deg);
}

.merchant-art p,
.merchant-art strong {
  display: flex;
  min-height: 8rem;
  align-items: center;
  margin: 0;
  padding: 1rem;
  border-right: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.merchant-art p {
  align-items: flex-start;
  font-size: 0.62rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.merchant-art strong {
  justify-content: flex-end;
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 4.5rem);
  line-height: 1;
}

.merchant-copy {
  align-self: center;
}

.merchant-copy h2 {
  margin-top: 1rem;
  font-size: clamp(3rem, 5.2vw, 6.4rem);
}

.merchant-copy > p:not(.section-index) {
  max-width: 37rem;
  margin-top: 2rem;
}

.explore-section {
  padding: clamp(6rem, 10vw, 10rem) var(--page);
  background: #c8c1b6;
}

.explore-section .section-index {
  color: var(--ink);
}

.explore-copy {
  display: grid;
  grid-template-columns: 0.55fr 1fr 0.55fr;
  gap: 3rem;
  align-items: end;
}

.explore-copy h2 {
  text-align: center;
}

.explore-copy > p:last-child {
  margin: 0;
}

.demo-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 4rem;
}

.demo-card {
  position: relative;
  display: block;
  min-height: 32rem;
  overflow: hidden;
  border-right: 1px solid var(--chalk);
  color: #fff;
}

.demo-card:last-child {
  border-right: 0;
}

.demo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.78), transparent 60%);
  content: "";
}

.demo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 900ms var(--ease), filter 400ms ease;
}

.demo-card--ledger img {
  object-position: 45% center;
}

.demo-card:hover img {
  transform: scale(1.035);
}

.demo-card span,
.demo-card b {
  position: absolute;
  z-index: 1;
  bottom: 2rem;
}

.demo-card span {
  left: 2rem;
}

.demo-card strong,
.demo-card small {
  display: block;
}

.demo-card strong {
  font-family: var(--display);
  font-size: 2.6rem;
  line-height: 1;
}

.demo-card--sodium strong {
  font-family: "Anton", sans-serif;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}

.demo-card--museum strong {
  font-family: "Playfair Display", serif;
  font-weight: 400;
}

.demo-card small {
  margin-top: 0.5rem;
  font-size: 0.62rem;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.demo-card b {
  right: 2rem;
  font-size: 1.4rem;
  font-weight: 400;
}

.final-section {
  min-height: 85svh;
  padding: clamp(7rem, 15vw, 14rem) var(--page);
  background: var(--ink);
  color: var(--chalk);
  text-align: center;
}

.final-section .eyebrow {
  margin-bottom: 2rem;
}

.final-section h2 {
  font-size: clamp(4rem, 10vw, 11rem);
  line-height: 0.79;
}

.final-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 2rem;
  margin-top: 3rem;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 1.5rem var(--page);
  border-top: 1px solid rgba(255, 255, 255, 0.25);
  background: var(--ink);
  color: var(--chalk);
}

.site-footer p {
  margin: 0;
  font-size: 0.62rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.site-footer p:last-child {
  justify-self: end;
}

.site-footer a:not(.wordmark) {
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.45);
  text-underline-offset: 0.22em;
}

.studio-page {
  background: var(--paper);
}

.studio-hero {
  position: relative;
  display: grid;
  min-height: min(860px, 100svh);
  grid-template-columns: 1.06fr 0.94fr;
  overflow: hidden;
  background: var(--ink);
  color: var(--chalk);
}

.studio-hero-copy {
  display: flex;
  min-height: min(860px, 100svh);
  flex-direction: column;
  justify-content: flex-end;
  padding: 10rem var(--page) clamp(5rem, 9vw, 8rem);
}

.studio-hero-copy h1 {
  max-width: 780px;
  margin: 1.5rem 0 2rem;
  font-family: var(--display);
  font-size: clamp(4.2rem, 8vw, 8.4rem);
  font-weight: 600;
  letter-spacing: -0.065em;
  line-height: 0.8;
}

.studio-hero-copy h1 em {
  display: block;
  margin-left: clamp(1rem, 7vw, 7rem);
  font-weight: inherit;
}

.studio-hero-copy > p:last-child {
  max-width: 37rem;
  margin: 0 0 0 clamp(1rem, 7vw, 7rem);
  font-size: clamp(1rem, 1.4vw, 1.2rem);
}

.studio-hero-media {
  position: relative;
  min-width: 0;
  margin: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.25);
}

.studio-hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 16, 15, 0.08), rgba(17, 16, 15, 0.55));
  content: "";
}

.studio-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.75);
}

.studio-manifesto {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(3rem, 8vw, 10rem);
  padding-top: clamp(6rem, 10vw, 11rem);
  padding-bottom: clamp(6rem, 10vw, 11rem);
}

.studio-manifesto h2,
.studio-release-copy h2,
.studio-contact h2 {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(3.4rem, 6.2vw, 7rem);
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 0.88;
}

.studio-manifesto-copy {
  max-width: 49rem;
  font-size: clamp(1.15rem, 1.7vw, 1.55rem);
}

.studio-manifesto-copy p {
  margin: 0 0 1.4rem;
}

.studio-principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  padding: 0;
  margin: 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  list-style: none;
}

.studio-principles li {
  min-height: 24rem;
  padding: 2rem var(--page);
  border-right: 1px solid var(--ink);
}

.studio-principles li:last-child {
  border-right: 0;
}

.studio-principles span {
  display: block;
  margin-bottom: 7rem;
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.studio-principles h2 {
  margin: 0 0 1.2rem;
  font-family: var(--display);
  font-size: clamp(2.2rem, 3.3vw, 3.6rem);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 0.9;
}

.studio-principles p {
  margin: 0;
}

.studio-release {
  display: grid;
  min-height: 48rem;
  grid-template-columns: 1.1fr 0.9fr;
  background: var(--concrete);
}

.studio-release-media {
  position: relative;
  min-height: 42rem;
  margin: 0;
}

.studio-release-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.studio-release-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  padding: clamp(4rem, 8vw, 8rem) var(--page);
}

.studio-release-copy h2 {
  margin: 1.5rem 0 2rem;
}

.studio-release-copy > p:not(.section-index) {
  max-width: 34rem;
  margin: 0 0 2rem;
}

.studio-release-meta {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(2, 1fr);
  padding: 0;
  margin: 1rem 0 2.5rem;
  border-top: 1px solid var(--ink);
}

.studio-release-meta div {
  padding: 1rem 0;
  border-bottom: 1px solid var(--ink);
}

.studio-release-meta dt {
  font-size: 0.65rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.studio-release-meta dd {
  margin: 0.35rem 0 0;
  font-family: var(--display);
  font-size: 1.5rem;
}

.studio-contact {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: clamp(3rem, 8vw, 10rem);
  padding-top: clamp(7rem, 12vw, 13rem);
  padding-bottom: clamp(7rem, 12vw, 13rem);
  background: var(--taupe);
  color: var(--chalk);
}

.studio-contact-copy {
  max-width: 40rem;
  font-size: 1.1rem;
}

.studio-contact-copy p {
  margin: 0 0 2rem;
}

.studio-contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

[hidden] {
  display: none !important;
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .header-nav {
    display: none;
  }

  .hero-media {
    grid-template-columns: 1fr 0.18fr 0.18fr;
  }

  .hero-content {
    width: 92vw;
  }

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

  .proof-rail p:nth-child(2) {
    border-right: 0;
  }

  .proof-rail p:nth-child(-n+2) {
    border-bottom: 1px solid var(--rule);
  }

  .preset-stage,
  .motion-section,
  .stack-section,
  .studio-hero,
  .studio-release {
    grid-template-columns: 1fr;
  }

  .studio-hero-media {
    min-height: 48rem;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-left: 0;
  }

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

  .studio-principles li:nth-child(2) {
    border-right: 0;
  }

  .studio-principles li:nth-child(-n+2) {
    border-bottom: 1px solid var(--ink);
  }

  .preset-stage {
    min-height: 0;
  }

  .preset-stage-media {
    min-height: 65svh;
  }

  .motion-media {
    min-height: 70svh;
  }

  .stack-list {
    border: 0;
    border-top: 1px solid var(--rule);
    border-bottom: 1px solid var(--rule);
  }

  .stack-list li {
    min-height: 6rem;
  }

  .feature-story,
  .feature-story:nth-of-type(even) {
    grid-template-columns: 1fr 1fr;
  }

  .feature-story:nth-of-type(even) .feature-image {
    grid-column: 2;
  }

  .feature-story:nth-of-type(even) .feature-copy {
    grid-column: 1;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-top: 1rem;
    padding-bottom: 1rem;
  }

  .header-cta {
    font-size: 0.6rem;
  }

  .hero {
    min-height: 780px;
  }

  .hero-media {
    display: block;
  }

  .hero-slice {
    position: absolute;
    inset: 0;
    border: 0;
  }

  .hero-slice--sodium,
  .hero-slice--museum {
    display: none;
  }

  .hero-content {
    min-height: 780px;
    padding-top: 7rem;
    padding-bottom: 5rem;
  }

  .hero h1 {
    font-size: clamp(3.5rem, 17vw, 5.2rem);
    line-height: 0.86;
  }

  .hero h1 span:last-child,
  .hero-copy,
  .hero-actions {
    margin-left: 0;
  }

  .hero-copy {
    max-width: 31rem;
  }

  .hero-actions,
  .final-actions {
    align-items: flex-start;
    flex-direction: column;
  }

  .hero-folio {
    right: auto;
    left: var(--page);
  }

  .proof-rail p {
    min-height: 6rem;
    padding: 1rem var(--page);
  }

  .proof-rail strong {
    font-size: 2rem;
  }

  .intro-grid,
  .preset-heading,
  .proof-intro,
  .feature-heading,
  .merchant-section,
  .explore-copy,
  .studio-manifesto,
  .studio-contact {
    grid-template-columns: 1fr;
  }

  .intro-grid,
  .preset-heading,
  .proof-intro,
  .feature-heading,
  .merchant-section,
  .explore-copy,
  .studio-manifesto,
  .studio-contact {
    gap: 2rem;
  }

  .studio-hero {
    display: block;
  }

  .studio-hero-copy {
    min-height: 720px;
    padding-top: 8rem;
    padding-bottom: 5rem;
  }

  .studio-hero-copy h1 {
    font-size: clamp(3.7rem, 17vw, 5.4rem);
  }

  .studio-hero-copy h1 em,
  .studio-hero-copy > p:last-child {
    margin-left: 0;
  }

  .studio-hero-media {
    min-height: 34rem;
  }

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

  .studio-principles li,
  .studio-principles li:nth-child(2) {
    min-height: 20rem;
    border-right: 0;
    border-bottom: 1px solid var(--ink);
  }

  .studio-principles li:last-child {
    border-bottom: 0;
  }

  .studio-principles span {
    margin-bottom: 4rem;
  }

  .studio-release-media {
    min-height: 34rem;
  }

  .intro h2,
  .preset-heading h2,
  .feature-heading h2,
  .proof-intro h2,
  .motion-copy h2,
  .stack-heading h2,
  .merchant-copy h2,
  .explore-copy h2 {
    font-size: clamp(3rem, 14vw, 5rem);
  }

  .preset-switcher {
    padding: 0;
  }

  .preset-tab {
    min-height: 6rem;
    grid-template-columns: 1fr;
    gap: 0.2rem;
    padding: 1rem 0.8rem;
  }

  .preset-tab span {
    grid-row: auto;
  }

  .preset-tab strong {
    font-size: 1.15rem;
  }

  .preset-tab small {
    display: none;
  }

  .preset-stage-media {
    min-height: 31rem;
  }

  .preset-stage-copy {
    min-height: 39rem;
  }

  .motion-media {
    min-height: 34rem;
  }

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

  .score-card {
    min-height: 27rem;
  }

  .score-card + .score-card {
    border-top: 0;
    border-left: 1px solid var(--ink);
  }

  .score-card dl {
    margin-top: 3.5rem;
  }

  .feature-heading {
    padding-bottom: 5rem;
  }

  .feature-story,
  .feature-story:nth-of-type(even) {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .feature-story:nth-of-type(even) .feature-image,
  .feature-story:nth-of-type(even) .feature-copy {
    grid-row: auto;
    grid-column: auto;
  }

  .feature-image,
  .feature-story--product .feature-image {
    min-height: 32rem;
  }

  .feature-story--product .feature-image {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .feature-copy {
    min-height: 34rem;
  }

  .stack-total {
    min-height: 34rem;
  }

  .merchant-art {
    margin: 2rem 0;
  }

  .merchant-art p,
  .merchant-art strong {
    min-height: 6rem;
  }

  .explore-copy h2 {
    text-align: left;
  }

  .demo-cards {
    grid-template-columns: 1fr;
  }

  .demo-card {
    min-height: 28rem;
    border-right: 0;
    border-bottom: 1px solid var(--chalk);
  }

  .site-footer {
    grid-template-columns: 1fr auto;
    gap: 1rem;
  }

  .site-footer p:first-of-type {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
