:root {
  color-scheme: light;
  --font-display: "Geist", "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-heading: "Geist", "Helvetica Neue", Arial, system-ui, sans-serif;
  --font-title: "Libre Baskerville", Georgia, "Times New Roman", serif;
  --font-mono: "JetBrains Mono", "SFMono-Regular", Consolas, monospace;
  --bg: oklch(97.2% 0.018 78);
  --surface: oklch(98.6% 0.01 78);
  --ink: oklch(17.5% 0.02 255);
  --muted: oklch(45% 0.026 255);
  --quiet: oklch(63% 0.026 255);
  --line: oklch(82% 0.022 76);
  --line-strong: oklch(67% 0.026 76);
  --hot: oklch(61% 0.24 31);
  --hot-dark: oklch(49% 0.2 31);
  --yellow: oklch(79% 0.12 82);
  --shadow: 0 24px 70px oklch(30% 0.04 55 / 10%);
  --radius-sm: 6px;
  --radius: 8px;
  --space-xs: 0.25rem;
  --space-sm: 0.5rem;
  --space-md: 0.75rem;
  --space-lg: 1rem;
  --space-xl: 1.5rem;
  --space-2xl: 2rem;
  --space-3xl: 3rem;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
  box-sizing: border-box;
}

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

body {
  min-width: 320px;
  margin: 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.5;
  background:
    radial-gradient(circle at 7% 4%, oklch(99% 0.03 80) 0 14rem, transparent 27rem),
    linear-gradient(90deg, oklch(42% 0.014 255 / 4%) 1px, transparent 1px),
    linear-gradient(180deg, oklch(42% 0.014 255 / 4%) 1px, transparent 1px),
    var(--bg);
  background-size: auto, 48px 48px, 48px 48px, auto;
  text-rendering: geometricPrecision;
}

body.nav-open {
  overflow: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

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

button {
  color: inherit;
}

:focus-visible {
  outline: 3px solid oklch(69% 0.2 31);
  outline-offset: 3px;
}

::selection {
  color: var(--surface);
  background: var(--hot);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  top: 1rem;
  left: 1rem;
  z-index: 30;
  padding: 0.75rem 1rem;
  color: var(--surface);
  background: var(--ink);
  border-radius: var(--radius-sm);
  transform: translateY(-140%);
  transition: transform 180ms var(--ease-out);
}

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

.site-header,
.section-shell,
.site-footer {
  width: min(100% - 2rem, 88rem);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  min-height: 5.25rem;
  gap: var(--space-xl);
  background: oklch(97.2% 0.018 78 / 88%);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 800;
  letter-spacing: 0;
  white-space: nowrap;
}

.brand-mark {
  display: inline-grid;
  grid-template-columns: repeat(5, 3px);
  align-items: center;
  gap: 3px;
  width: 27px;
  height: 28px;
  color: var(--hot);
}

.brand-mark span {
  display: block;
  width: 3px;
  background: currentColor;
  border-radius: 99px;
}

.brand-mark span:nth-child(1),
.brand-mark span:nth-child(5) {
  height: 12px;
}

.brand-mark span:nth-child(2),
.brand-mark span:nth-child(4) {
  height: 22px;
}

.brand-mark span:nth-child(3) {
  height: 28px;
}

.site-nav {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.5rem);
  color: var(--ink);
  font-weight: 700;
}

.site-nav a {
  position: relative;
  color: oklch(28% 0.024 255);
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -0.4rem;
  height: 2px;
  background: var(--hot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 160ms var(--ease-out);
}

.site-nav a:hover::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.2rem;
  padding: 0.85rem 1.15rem;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  font-weight: 800;
  line-height: 1;
  text-align: center;
  transition:
    transform 160ms var(--ease-out),
    box-shadow 160ms var(--ease-out),
    background-color 160ms var(--ease-out),
    border-color 160ms var(--ease-out);
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: var(--surface);
  background: var(--hot);
  border-color: var(--hot);
  box-shadow: 0 14px 28px oklch(61% 0.24 31 / 18%);
}

.button-primary:hover {
  background: var(--hot-dark);
  border-color: var(--hot-dark);
}

.button-secondary {
  background: var(--surface);
}

.button-small {
  min-height: 2.75rem;
  padding-inline: 1.1rem;
  color: var(--hot);
  border-color: var(--hot);
  background: oklch(99% 0.012 78);
}

.nav-toggle {
  display: none;
  width: 2.75rem;
  height: 2.75rem;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.28rem auto;
  background: var(--ink);
  transition: transform 180ms var(--ease-out), opacity 180ms var(--ease-out);
}

.nav-open .nav-toggle span:first-child {
  transform: translateY(5px) rotate(45deg);
}

.nav-open .nav-toggle span:nth-child(2) {
  transform: translateY(-5px) rotate(-45deg);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(34rem, 1fr);
  align-items: center;
  gap: clamp(2rem, 6vw, 6.5rem);
  padding-block: clamp(3.25rem, 7vw, 7rem) var(--space-2xl);
}

.hero-copy {
  display: grid;
  gap: var(--space-xl);
  max-width: 45rem;
}

.status,
.eyebrow {
  margin: 0;
  color: var(--hot);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.status {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  margin-bottom: 0;
}

.status span {
  width: 0.6rem;
  height: 0.6rem;
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 0 0 6px oklch(61% 0.24 31 / 11%);
}

h1,
h2,
.hero-map-bold-studio .studio-top strong {
  font-family: var(--font-heading);
  font-kerning: normal;
  letter-spacing: 0;
}

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

h1 {
  font-family: var(--font-title);
  font-kerning: normal;
  display: grid;
  gap: 0.08em;
  width: 100%;
  max-width: 32.25rem;
  padding-top: 0.06em;
  margin-bottom: 0;
  font-size: 8rem;
  font-weight: 700;
  line-height: 0.86;
  letter-spacing: 0;
}

.hero-title-top {
  display: grid;
  grid-template-columns: auto auto minmax(clamp(2rem, 7vw, 4.5rem), 1fr);
  align-items: baseline;
  column-gap: 0.18em;
  font-size: 0.52em;
  line-height: 0.96;
}

.hero-title-to {
  align-self: center;
  color: var(--hot-dark);
  font-family: var(--font-display);
  font-size: 0.46em;
  font-weight: 800;
  line-height: 1;
  transform: translateY(0.12em);
}

.hero-title-rule {
  align-self: center;
  height: 0.065em;
  border-radius: 999px;
  background:
    linear-gradient(90deg, var(--hot), oklch(61% 0.24 31 / 18%));
  transform: translateY(0.13em);
}

.hero-title-bottom {
  display: block;
  font-size: 1em;
  line-height: 0.82;
}

.hero-heading-stack {
  display: grid;
  gap: var(--space-lg);
}

.hero-deck {
  max-width: 100%;
  margin: 0;
  color: var(--hot-dark);
  font-size: clamp(1.42rem, 2.1vw, 1.65rem);
  font-weight: 800;
  line-height: 1.12;
  white-space: nowrap;
}

.hero-lede {
  max-width: 36rem;
  margin-bottom: 0;
  color: oklch(28% 0.026 255);
  font-size: 1.24rem;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-lg);
  margin: var(--space-sm) 0 0;
}

.proof-row {
  display: grid;
  grid-template-columns: repeat(2, max-content);
  justify-content: start;
  gap: var(--space-lg);
  max-width: 44rem;
  padding: 0;
  margin: 0;
  list-style: none;
  color: oklch(30% 0.026 255);
  font-size: 0.95rem;
  font-weight: 700;
}

.proof-row li {
  position: relative;
  padding-left: 1rem;
  white-space: nowrap;
}

.proof-row li::before {
  content: "";
  position: absolute;
  top: 0.63em;
  left: 0;
  width: 0.42rem;
  height: 0.42rem;
  background: var(--hot);
  border-radius: 50%;
}

.hero-map {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 5.25rem 1.05fr;
  align-items: center;
  gap: var(--space-xl);
  min-height: 35rem;
}

.workbench-panel {
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: oklch(98.8% 0.01 78 / 90%);
  box-shadow: 0 10px 40px oklch(28% 0.036 70 / 6%);
}

.mini-icon,
.file-list span,
.format-grid span,
.creator-grid span {
  position: relative;
  display: inline-grid;
  flex: 0 0 auto;
  width: 1.4rem;
  height: 1.4rem;
  color: var(--ink);
}

.mini-icon::before,
.file-list span::before,
.format-grid span::before,
.creator-grid span::before {
  content: "";
  position: absolute;
  inset: 0.1rem;
  border: 2px solid currentColor;
  border-radius: 3px;
}

.document-icon::after {
  content: "";
  position: absolute;
  top: 0.22rem;
  right: 0.18rem;
  width: 0.42rem;
  height: 0.42rem;
  border-left: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  background: var(--surface);
}

.inbox-icon::before {
  border-radius: 3px;
}

.inbox-icon::after {
  content: "";
  position: absolute;
  left: 0.2rem;
  right: 0.2rem;
  top: 0.42rem;
  height: 0.6rem;
  border-bottom: 2px solid currentColor;
  transform: skewY(-28deg);
}

.play-icon::before {
  border-radius: 50%;
}

.play-icon::after {
  content: "";
  position: absolute;
  left: 0.56rem;
  top: 0.42rem;
  width: 0;
  height: 0;
  border-top: 0.3rem solid transparent;
  border-bottom: 0.3rem solid transparent;
  border-left: 0.42rem solid currentColor;
}

.audio-icon::before,
.broadcast-icon::before {
  border: 0;
  background:
    linear-gradient(currentColor 0 0) 17% 50% / 2px 46% no-repeat,
    linear-gradient(currentColor 0 0) 37% 50% / 2px 82% no-repeat,
    linear-gradient(currentColor 0 0) 57% 50% / 2px 58% no-repeat,
    linear-gradient(currentColor 0 0) 77% 50% / 2px 92% no-repeat;
}

.table-icon::before {
  background:
    linear-gradient(90deg, transparent 31%, currentColor 31% 39%, transparent 39% 62%, currentColor 62% 70%, transparent 70%),
    linear-gradient(180deg, transparent 31%, currentColor 31% 39%, transparent 39% 62%, currentColor 62% 70%, transparent 70%);
}

.notes-icon::after {
  content: "";
  position: absolute;
  left: 0.38rem;
  right: 0.38rem;
  top: 0.48rem;
  height: 0.5rem;
  border-top: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
}

.book-icon::before {
  border-radius: 2px 5px 5px 2px;
  box-shadow: inset 0.48rem 0 0 transparent;
}

.image-icon::after {
  content: "";
  position: absolute;
  left: 0.28rem;
  right: 0.28rem;
  bottom: 0.3rem;
  height: 0.48rem;
  background: linear-gradient(135deg, transparent 35%, currentColor 36% 45%, transparent 46%);
}

.person-icon::before {
  border-radius: 50% 50% 45% 45%;
  transform: scale(0.52) translateY(-0.42rem);
}

.person-icon::after {
  content: "";
  position: absolute;
  left: 0.24rem;
  right: 0.24rem;
  bottom: 0.08rem;
  height: 0.64rem;
  border: 2px solid currentColor;
  border-radius: 50% 50% 3px 3px;
}

.hash-icon::before {
  border: 0;
  background:
    linear-gradient(90deg, transparent 29%, currentColor 29% 39%, transparent 39% 59%, currentColor 59% 69%, transparent 69%),
    linear-gradient(0deg, transparent 29%, currentColor 29% 39%, transparent 39% 59%, currentColor 59% 69%, transparent 69%);
  transform: rotate(8deg);
}

.sparkle-icon::before {
  border: 0;
  background:
    radial-gradient(circle, currentColor 0 18%, transparent 20%) center / 100% 100%,
    linear-gradient(currentColor 0 0) 50% 50% / 2px 90% no-repeat,
    linear-gradient(90deg, currentColor 0 0) 50% 50% / 90% 2px no-repeat;
  transform: rotate(45deg) scale(0.86);
}

.sliders-icon::before {
  border: 0;
  background:
    linear-gradient(currentColor 0 0) 22% 50% / 2px 86% no-repeat,
    linear-gradient(currentColor 0 0) 50% 50% / 2px 86% no-repeat,
    linear-gradient(currentColor 0 0) 78% 50% / 2px 86% no-repeat,
    radial-gradient(circle, currentColor 0 22%, transparent 24%) 22% 30% / 100% 100% no-repeat,
    radial-gradient(circle, currentColor 0 22%, transparent 24%) 50% 66% / 100% 100% no-repeat,
    radial-gradient(circle, currentColor 0 22%, transparent 24%) 78% 42% / 100% 100% no-repeat;
}

.shield-icon::before {
  inset: 0.04rem 0.12rem;
  border: 0;
  border-radius: 0;
  background: currentColor;
  clip-path: polygon(50% 0, 92% 16%, 82% 72%, 50% 100%, 18% 72%, 8% 16%);
}

.shield-icon::after {
  content: "";
  position: absolute;
  left: 0.45rem;
  top: 0.48rem;
  width: 0.46rem;
  height: 0.26rem;
  border-left: 2px solid var(--surface);
  border-bottom: 2px solid var(--surface);
  transform: rotate(-45deg);
}

.file-list strong,
.format-grid h3,
.creator-grid h3 {
  font-size: 0.96rem;
}

.node-core {
  display: grid;
  grid-template-columns: repeat(5, 4px);
  place-content: center;
  align-items: center;
  gap: 5px;
  width: 5.25rem;
  height: 5.25rem;
  color: var(--hot);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.node-core span {
  display: block;
  width: 4px;
  background: currentColor;
  border-radius: 999px;
}

.node-core span:nth-child(1),
.node-core span:nth-child(5) {
  height: 1.1rem;
}

.node-core span:nth-child(2),
.node-core span:nth-child(4) {
  height: 2rem;
}

.node-core span:nth-child(3) {
  height: 2.9rem;
}

@keyframes studio-wave-pulse {
  0%,
  100% {
    opacity: 0.72;
    transform: scaleY(0.72);
  }

  50% {
    opacity: 1;
    transform: scaleY(1.08);
  }
}

.hero-map-bold-studio {
  grid-template-columns: minmax(22rem, 1fr);
  gap: clamp(1rem, 3vw, 2.4rem);
  min-height: 35rem;
  padding: clamp(1rem, 2.2vw, 1.5rem);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
}

.hero-map-bold-studio .studio-player {
  display: grid;
  align-self: stretch;
  gap: 1.2rem;
  padding: clamp(1.2rem, 3vw, 2rem);
  overflow: hidden;
  color: var(--surface);
  border: 1px solid oklch(49% 0.2 31);
  border-radius: calc(var(--radius) + 4px);
  background:
    linear-gradient(160deg, color-mix(in oklch, var(--hot) 87.44%, var(--hot-dark)), var(--hot-dark));
  box-shadow: 0 28px 80px oklch(61% 0.24 31 / 26%);
}

.hero-map-bold-studio .studio-top {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
}

.hero-map-bold-studio .studio-top p {
  margin: 0 0 0.35rem;
  color: oklch(98.6% 0.01 78 / 78%);
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-map-bold-studio .studio-top strong {
  display: block;
  max-width: 12ch;
  font-size: 3.75rem;
  font-weight: 800;
  line-height: 0.96;
}

.hero-map-bold-studio .studio-badge {
  align-self: start;
  padding: 0.5rem 0.62rem;
  color: var(--hot-dark);
  border-radius: var(--radius-sm);
  background: oklch(98.6% 0.01 78);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  white-space: nowrap;
}

.hero-map-bold-studio .studio-wave {
  display: grid;
  grid-template-columns: repeat(24, 1fr);
  align-items: center;
  gap: 4px;
  height: clamp(8rem, 19vw, 12rem);
  color: oklch(98.6% 0.01 78);
}

.hero-map-bold-studio .studio-wave span {
  height: var(--h);
  min-height: 0.55rem;
  border-radius: 999px;
  background: currentColor;
  transform-origin: center;
  animation: studio-wave-pulse 1.35s var(--ease-out) infinite;
  animation-delay: calc(var(--i) * 38ms);
}

.hero-map-bold-studio .studio-controls {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.hero-map-bold-studio .studio-controls span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.35rem;
  padding: 0.58rem 0.72rem;
  border: 1px solid oklch(98.6% 0.01 78 / 34%);
  border-radius: var(--radius-sm);
  background: oklch(98.6% 0.01 78 / 12%);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 700;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
}

.section-shell {
  padding-block: clamp(4rem, 8vw, 7rem);
}

.section-intro,
.split-intro {
  display: grid;
  gap: var(--space-xl);
  margin-bottom: var(--space-3xl);
}

.section-intro {
  max-width: 54rem;
}

.split-intro {
  grid-template-columns: minmax(0, 0.85fr) minmax(20rem, 0.75fr);
  align-items: end;
}

h2 {
  max-width: 13ch;
  margin-bottom: 0;
  font-size: 4.35rem;
  font-weight: 800;
  line-height: 0.98;
  text-wrap: balance;
}

.builder-section .section-intro h2 {
  max-width: min(100%, 68rem);
  font-family: var(--font-title);
  font-size: clamp(1.85rem, 6vw, 5.7rem);
  font-weight: 700;
  line-height: 1.02;
}

.builder-section .section-intro h2 span {
  display: block;
  white-space: nowrap;
}

.section-intro p:not(.eyebrow),
.split-intro p:not(.eyebrow) {
  max-width: 42rem;
  margin: 0;
  color: var(--muted);
  font-size: 1.15rem;
}

.workbench {
  display: grid;
  grid-template-columns: minmax(18rem, 1fr) minmax(17rem, 0.96fr) minmax(20rem, 1.1fr);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  background: oklch(99% 0.009 78 / 70%);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.preview-marker {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  min-height: 3.35rem;
  padding: 0.78rem var(--space-xl);
  color: var(--surface);
  background: var(--ink);
  border-bottom: 1px solid oklch(34% 0.026 255);
}

.preview-marker span {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--yellow);
  font-family: var(--font-mono);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.preview-marker span::before {
  content: "";
  width: 0.64rem;
  height: 0.64rem;
  border-radius: 50%;
  background: var(--yellow);
  box-shadow: 0 0 0 0.34rem oklch(79% 0.12 82 / 18%);
}

.preview-marker strong {
  color: oklch(98.6% 0.01 78 / 82%);
  font-size: 0.92rem;
}

.workbench-panel {
  min-width: 0;
  border-width: 0 1px 0 0;
  border-radius: 0;
  box-shadow: none;
  padding: var(--space-xl);
}

.workbench-panel:last-child {
  border-right: 0;
}

.playground-note {
  display: flex;
  align-items: baseline;
  justify-content: flex-end;
  gap: 0.45rem;
  max-width: 62rem;
  margin: var(--space-md) 0 0 auto;
  color: var(--quiet);
  font-size: 0.9rem;
  line-height: 1.4;
}

.playground-note span {
  color: var(--hot);
  font-size: 1rem;
  font-weight: 800;
}

.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-lg);
  margin-bottom: var(--space-lg);
}

.panel-head h3 {
  margin: 0;
  font-size: 1.05rem;
  line-height: 1.1;
}

.panel-head span {
  color: var(--muted);
  font-size: 0.85rem;
}

.file-list,
.settings-list {
  display: grid;
  gap: var(--space-sm);
  padding: 0;
  margin: 0;
  list-style: none;
}

.file-list {
  gap: 0.72rem;
}

.file-list li,
.settings-list li {
  display: grid;
  grid-template-columns: 1.5rem 1fr auto;
  align-items: center;
  gap: var(--space-md);
  min-height: 2.85rem;
  padding: 0.42rem 0.58rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: oklch(99% 0.007 78);
}

.file-list li {
  min-height: 3.22rem;
  padding-block: 0.58rem;
  transition:
    border-color 150ms var(--ease-out),
    background-color 150ms var(--ease-out),
    box-shadow 150ms var(--ease-out);
}

.file-list li:hover {
  border-color: var(--hot);
  background: oklch(97% 0.026 31);
  box-shadow: 0 8px 20px oklch(61% 0.24 31 / 10%);
}

.file-list em {
  color: var(--muted);
  font-style: normal;
  font-size: 0.82rem;
}

.convert-panel {
  display: flex;
  flex-direction: column;
}

.convert-panel p {
  color: var(--muted);
}

.convert-button {
  display: grid;
  place-items: center;
  gap: var(--space-md);
  width: 100%;
  margin-block: auto;
  padding: var(--space-xl);
  color: inherit;
  text-align: center;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.convert-button .node-core {
  width: 7rem;
  height: 7rem;
  color: var(--surface);
  background: var(--hot);
  border-color: var(--hot);
  box-shadow: 0 20px 60px oklch(61% 0.24 31 / 18%);
  transition:
    transform 180ms var(--ease-out),
    box-shadow 180ms var(--ease-out),
    background-color 180ms var(--ease-out),
    filter 180ms var(--ease-out);
}

.convert-button .node-core span {
  transform-origin: center;
  transition: transform 180ms var(--ease-out);
}

.convert-button:hover .node-core,
.convert-button:focus-visible .node-core {
  background: oklch(67% 0.25 31);
  box-shadow:
    0 0 0 0.55rem oklch(61% 0.24 31 / 13%),
    0 28px 84px oklch(61% 0.24 31 / 32%);
  filter: saturate(1.08) brightness(1.06);
  transform: translateY(-0.28rem) scale(1.04);
}

.convert-button:hover .node-core span:nth-child(odd),
.convert-button:focus-visible .node-core span:nth-child(odd) {
  transform: scaleY(1.18);
}

.convert-button:hover .node-core span:nth-child(even),
.convert-button:focus-visible .node-core span:nth-child(even) {
  transform: scaleY(0.86);
}

.settings-list {
  margin-top: var(--space-xl);
}

.settings-list li {
  grid-template-columns: 1fr auto;
  min-height: 3rem;
  border-inline: 0;
  border-top: 0;
  border-radius: 0;
  background: transparent;
}

.settings-list label,
.settings-list li > span {
  color: var(--ink);
}

.control-select {
  min-width: 8.2rem;
  min-height: 2.35rem;
  padding: 0.46rem 2rem 0.46rem 0.7rem;
  color: var(--hot-dark);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(45deg, transparent 50%, currentColor 50%) calc(100% - 1rem) 50% / 0.38rem 0.38rem no-repeat,
    linear-gradient(135deg, currentColor 50%, transparent 50%) calc(100% - 0.74rem) 50% / 0.38rem 0.38rem no-repeat,
    var(--surface);
  font-weight: 800;
  appearance: none;
  cursor: pointer;
}

.control-select:focus-visible {
  outline: 3px solid oklch(69% 0.2 31);
  outline-offset: 2px;
}

.switch {
  position: relative;
  width: 2.4rem;
  height: 1.35rem;
  padding: 0;
  border: 0;
  border-radius: 99px;
  background: oklch(70% 0.02 76);
  cursor: pointer;
}

.switch span {
  position: absolute;
  top: 0.18rem;
  left: 0.18rem;
  width: 0.98rem;
  height: 0.98rem;
  border-radius: 50%;
  background: var(--surface);
  transition: transform 160ms var(--ease-out);
}

.switch.is-on {
  background: var(--hot);
}

.switch.is-on span {
  transform: translateX(1.02rem);
}

.option-group {
  display: grid;
  gap: var(--space-sm);
}

.option,
.segmented-row button {
  cursor: pointer;
}

.option {
  display: grid;
  gap: 0.12rem;
  width: 100%;
  padding: 0.8rem 0.9rem;
  text-align: left;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: oklch(99% 0.007 78);
  transition: border-color 150ms var(--ease-out), background-color 150ms var(--ease-out);
}

.option span {
  color: var(--muted);
  font-size: 0.88rem;
}

.option.is-selected,
.segmented-row button.is-selected {
  color: var(--hot);
  border-color: var(--hot);
  background: oklch(95.5% 0.034 31);
}

.host-profile {
  margin-top: var(--space-xl);
  padding-top: var(--space-xl);
  border-top: 1px solid var(--line);
}

.compact-head {
  margin-bottom: var(--space-md);
}

.segmented-row,
.profile-line {
  display: grid;
  grid-template-columns: 4.5rem repeat(3, minmax(0, 1fr));
  align-items: center;
  gap: var(--space-sm);
  margin-bottom: var(--space-sm);
}

.segmented-row:nth-of-type(2) {
  grid-template-columns: 4.5rem repeat(4, minmax(0, 1fr));
}

.segmented-row.age-row {
  grid-template-columns: 4.5rem repeat(4, max-content);
  justify-content: start;
}

.segmented-row span,
.profile-line span,
.profile-line label {
  color: var(--muted);
}

.segmented-row button {
  min-height: 2rem;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--surface);
}

.segmented-row.age-row button {
  min-width: 3.05rem;
  padding-inline: 0.72rem;
}

.profile-line {
  grid-template-columns: 4.5rem 1fr;
  margin-top: var(--space-md);
}

.profile-line strong,
.profile-line output {
  justify-self: end;
}

.duration-control {
  grid-template-columns: 4.5rem 1fr auto;
  row-gap: 0.62rem;
}

.duration-control output {
  color: var(--ink);
  font-weight: 800;
}

.duration-slider {
  grid-column: 1 / -1;
  width: 100%;
  height: 1.35rem;
  margin: 0;
  accent-color: var(--hot);
  background: transparent;
  appearance: none;
  cursor: pointer;
}

.duration-slider::-webkit-slider-runnable-track {
  height: 0.32rem;
  border-radius: 999px;
  background:
    linear-gradient(
      90deg,
      var(--hot) 0 var(--duration-percent, 27.27%),
      oklch(83% 0.022 76) var(--duration-percent, 27.27%) 100%
    );
}

.duration-slider::-webkit-slider-thumb {
  width: 1.2rem;
  height: 1.2rem;
  margin-top: -0.44rem;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 5px 14px oklch(61% 0.24 31 / 22%);
  appearance: none;
}

.duration-slider::-moz-range-track {
  height: 0.32rem;
  border-radius: 999px;
  background: oklch(83% 0.022 76);
}

.duration-slider::-moz-range-progress {
  height: 0.32rem;
  border-radius: 999px;
  background: var(--hot);
}

.duration-slider::-moz-range-thumb {
  width: 0.88rem;
  height: 0.88rem;
  border: 3px solid var(--surface);
  border-radius: 50%;
  background: var(--hot);
  box-shadow: 0 5px 14px oklch(61% 0.24 31 / 22%);
}

.format-grid,
.creator-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
}

.format-grid article,
.creator-grid article {
  min-height: 10.5rem;
  padding: var(--space-xl);
  background: oklch(98.3% 0.011 78);
}

.format-grid h3,
.creator-grid h3 {
  margin: var(--space-lg) 0 var(--space-xs);
  font-size: 1.05rem;
  line-height: 1.15;
}

.format-grid p,
.creator-grid p {
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

@keyframes source-breathe {
  0%,
  100% {
    transform:
      translateX(var(--book-offset, 0rem))
      translateY(calc(var(--book-rise, var(--rise, var(--lift, 0rem))) * -1))
      rotate(var(--active-tilt, var(--tilt)))
      rotateY(var(--active-lean, var(--lean)));
  }

  50% {
    transform:
      translateX(var(--book-offset, 0rem))
      translateY(calc((var(--book-rise, var(--rise, var(--lift, 0rem))) * -1) - 0.34rem))
      rotate(var(--active-tilt, var(--tilt)))
      rotateY(var(--active-lean, var(--lean)));
  }
}

.material-loom {
  position: relative;
  margin: clamp(1.5rem, 4vw, 3.5rem) 0 clamp(3rem, 6vw, 5rem);
  isolation: isolate;
}

.material-loom::before {
  content: "";
  position: absolute;
  inset: clamp(1.8rem, 4vw, 3rem) 0 clamp(1.4rem, 3vw, 2.2rem);
  z-index: -1;
  border-block: 1px solid oklch(78% 0.031 74);
  background:
    repeating-linear-gradient(
      0deg,
      oklch(96.6% 0.021 78 / 76%) 0 9px,
      oklch(86% 0.028 72 / 26%) 10px 11px
    ),
    linear-gradient(120deg, oklch(97.6% 0.025 82 / 78%), oklch(93% 0.032 66 / 66%));
  box-shadow: inset 0 1px 0 oklch(99% 0.01 78 / 64%);
}

.loom-stage {
  position: relative;
  display: grid;
  grid-template-rows: auto minmax(11rem, 18vw, 17rem) auto;
  align-items: stretch;
  min-height: clamp(29rem, 48vw, 42rem);
  padding: clamp(1.5rem, 2.6vw, 2.4rem) 0 clamp(0.8rem, 2vw, 1.4rem);
  overflow: hidden;
  contain: layout paint;
}

.source-fan {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  align-items: end;
  gap: clamp(0.2rem, 1.6vw, 1.35rem);
  padding-inline: clamp(0.25rem, 3vw, 2.4rem);
  perspective: 75rem;
}

.source-art {
  position: relative;
  display: grid;
  grid-template-rows: minmax(0, 1fr) auto;
  gap: 0.38rem;
  justify-self: center;
  width: clamp(4.6rem, 9.2vw, 8.4rem);
  aspect-ratio: 9 / 16;
  padding: 0.38rem;
  color: oklch(22% 0.023 255);
  border: 1px solid oklch(56% 0.04 68);
  border-radius: var(--radius-sm);
  background:
    linear-gradient(145deg, oklch(97.5% 0.022 79), oklch(89% 0.031 70));
  box-shadow:
    0 1.1rem 2.8rem oklch(33% 0.05 58 / 16%),
    inset 0 0 0 1px oklch(99% 0.01 78 / 54%);
  transform:
    translateX(var(--book-offset, 0rem))
    translateY(calc(0rem - var(--book-rise, var(--rise, var(--lift, 0rem)))))
    rotate(var(--active-tilt, var(--tilt)))
    rotateY(var(--active-lean, var(--lean)));
  transform-origin: center bottom;
  transform-style: preserve-3d;
  animation: source-breathe 5.6s var(--ease-out) infinite;
  animation-delay: var(--delay);
}

.source-art:nth-child(-n + 3) {
  transform-origin: right bottom;
}

.source-art:nth-child(n + 4) {
  transform-origin: left bottom;
}

.source-art::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  border-radius: inherit;
  background:
    radial-gradient(circle at 24% 18%, oklch(99% 0.01 78 / 46%) 0 0.12rem, transparent 0.18rem),
    repeating-linear-gradient(
      106deg,
      transparent 0 0.62rem,
      oklch(42% 0.02 68 / 8%) 0.66rem 0.72rem
    );
  mix-blend-mode: multiply;
}

.source-picture {
  position: relative;
  min-height: 0;
  overflow: hidden;
  border: 1px solid oklch(65% 0.035 72);
  border-radius: 4px;
  background: oklch(95% 0.025 78);
}

.source-picture::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, oklch(30% 0.018 255 / 8%) 1px, transparent 1px),
    linear-gradient(180deg, oklch(30% 0.018 255 / 5%) 1px, transparent 1px);
  background-size: 0.58rem 0.58rem;
  mix-blend-mode: multiply;
  opacity: 0.48;
}

.loom-wave {
  position: relative;
  z-index: 3;
  display: block;
  width: min(100% - clamp(1rem, 5vw, 5rem), 72rem);
  height: clamp(4.8rem, 8vw, 7rem);
  padding: clamp(0.7rem, 1.4vw, 1.1rem);
  margin-inline: auto;
  color: var(--hot);
  border-block: 1px solid oklch(62% 0.09 34 / 48%);
  background:
    linear-gradient(180deg, oklch(98% 0.019 79 / 82%), oklch(91% 0.03 70 / 76%)),
    repeating-linear-gradient(90deg, transparent 0 1.1rem, oklch(61% 0.08 42 / 9%) 1.1rem 1.16rem);
  box-shadow:
    0 1.1rem 3.2rem oklch(39% 0.055 52 / 15%),
    inset 0 1px 0 oklch(99% 0.01 78 / 64%);
}

.volume-track {
  --volume-axis-safe: clamp(0.55rem, 1.25vw, 1.4rem);
  --volume-axis-extension: 3%;
  position: relative;
  display: block;
  isolation: isolate;
  width: 100%;
  height: 100%;
  padding-block: clamp(0.38rem, 0.8vw, 0.72rem);
  padding-inline: var(--volume-axis-safe);
}

.volume-track::before {
  content: "";
  position: absolute;
  z-index: 0;
  left: calc(var(--volume-axis-safe) - var(--volume-axis-extension));
  right: calc(var(--volume-axis-safe) - var(--volume-axis-extension));
  top: 50%;
  height: 1px;
  pointer-events: none;
  background: oklch(38% 0.06 164 / 58%);
  transform: translateY(-50%);
}

.volume-canvas {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  height: 100%;
}

.material-loom-cinematic {
  margin: clamp(0.7rem, 2vw, 1.5rem) 0 clamp(0.675rem, 1.8vw, 1.3rem);
  padding: clamp(0.25rem, 0.9vw, 0.65rem);
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.material-loom-cinematic::before {
  display: none;
}

.material-loom-cinematic::after {
  display: none;
}

.material-loom-cinematic .loom-stage {
  z-index: 2;
  grid-template-rows: max-content minmax(5.8rem, 8vw, 7.4rem);
  row-gap: clamp(0.35rem, 1.2vw, 0.85rem);
  min-height: clamp(24rem, 37vw, 32rem);
  padding: clamp(0.45rem, 1.1vw, 0.9rem) 0 clamp(0.35rem, 1vw, 0.7rem);
  overflow: hidden;
}

.material-loom-cinematic .source-fan {
  z-index: 5;
  grid-template-columns: repeat(6, max-content);
  justify-content: center;
  align-self: end;
  align-items: end;
  gap: 0;
  padding-inline: clamp(0.2rem, 1.2vw, 1rem);
  perspective: 74rem;
}

.material-loom-cinematic .source-art {
  --book-rise: 0rem;
  --book-offset: 0rem;
  display: block;
  width: clamp(5.8rem, 10.2vw, 10.2rem);
  margin-inline: clamp(-0.36rem, -0.45vw, -0.12rem);
  padding: clamp(0.28rem, 0.55vw, 0.46rem);
  color: oklch(85% 0.033 80);
  border-color: oklch(56% 0.035 72 / 72%);
  border-radius: 5px;
  background:
    linear-gradient(90deg, oklch(10% 0.026 64), oklch(21% 0.035 62) 7%, transparent 7% 93%, oklch(9% 0.024 64) 93%),
    linear-gradient(180deg, oklch(67% 0.047 76), oklch(39% 0.04 64));
  box-shadow:
    0 1.3rem 2.8rem oklch(6% 0.018 70 / 48%),
    inset 0 0 0 1px oklch(92% 0.035 82 / 12%);
  transform:
    translateX(var(--book-offset, 0rem))
    translateY(calc(var(--book-rise, var(--rise, 0rem)) * -1))
    rotate(var(--active-tilt, var(--tilt)))
    rotateY(var(--active-lean, var(--lean)));
  animation-duration: 7.8s;
}

.material-loom-cinematic .source-art:nth-child(1) {
  z-index: 1;
  --book-rise: 0.45rem;
  --book-offset: 0.18rem;
  --active-tilt: -14deg;
  --active-lean: 26deg;
  animation-duration: 6.7s;
}

.material-loom-cinematic .source-art:nth-child(2) {
  z-index: 2;
  --book-rise: 0.18rem;
  --book-offset: 0.08rem;
  --active-tilt: -8deg;
  --active-lean: 17deg;
  animation-duration: 8.4s;
}

.material-loom-cinematic .source-art:nth-child(3) {
  z-index: 3;
  --book-rise: 0rem;
  --book-offset: 0.02rem;
  --active-tilt: -2deg;
  --active-lean: 7deg;
  animation-duration: 7.3s;
}

.material-loom-cinematic .source-art:nth-child(4) {
  z-index: 3;
  --book-rise: 0rem;
  --book-offset: -0.02rem;
  --active-tilt: 2deg;
  --active-lean: -7deg;
  animation-duration: 9.1s;
}

.material-loom-cinematic .source-art:nth-child(5) {
  z-index: 2;
  --book-rise: 0.18rem;
  --book-offset: -0.08rem;
  --active-tilt: 8deg;
  --active-lean: -17deg;
  animation-duration: 6.1s;
}

.material-loom-cinematic .source-art:nth-child(6) {
  z-index: 1;
  --book-rise: 0.45rem;
  --book-offset: -0.18rem;
  --active-tilt: 14deg;
  --active-lean: -26deg;
  animation-duration: 7.9s;
}

.material-loom-cinematic .source-art::before {
  background:
    linear-gradient(180deg, oklch(94% 0.04 82 / 20%), transparent 26%),
    repeating-linear-gradient(100deg, transparent 0 0.55rem, oklch(9% 0.025 72 / 14%) 0.58rem 0.64rem);
  opacity: 0.78;
}

.material-loom-cinematic .source-picture {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-color: oklch(20% 0.03 68 / 76%);
  border-radius: 2px;
  filter: sepia(0.42) saturate(0.78) contrast(0.94) brightness(0.78);
}

.material-loom-cinematic .source-picture::before {
  background:
    linear-gradient(90deg, oklch(8% 0.018 238 / 10%) 1px, transparent 1px),
    linear-gradient(180deg, oklch(8% 0.018 238 / 9%) 1px, transparent 1px),
    radial-gradient(circle at 50% 28%, transparent 0 42%, oklch(8% 0.018 238 / 32%) 100%);
  background-size: 0.52rem 0.52rem, 0.52rem 0.52rem, auto;
  opacity: 0.82;
}

.material-loom-cinematic .loom-wave {
  --volume-axis-max: calc(76rem * 1.1);
  position: relative;
  z-index: 6;
  display: block;
  align-self: end;
  width: min(calc(100% - clamp(0.35rem, 3vw, 4.2rem)), var(--volume-axis-max));
  height: clamp(5.2rem, 7.2vw, 6.9rem);
  padding: 0;
  margin: 0 auto;
  color: oklch(78% 0.045 142);
  border: 0;
  background: none;
  box-shadow: none;
  overflow: visible;
}

.material-loom-cinematic .loom-wave::before {
  display: none;
}

.material-loom-cinematic .volume-track {
  overflow: visible;
}

.material-loom-cinematic:not(.is-visible) .source-art {
  animation-play-state: paused;
}

.material-loom-cinematic:not(.is-visible) .volume-canvas {
  opacity: 0;
}

.about {
  padding-top: clamp(3rem, 6vw, 5rem);
}

.about-panel {
  display: grid;
  grid-template-columns: minmax(10rem, 0.38fr) minmax(0, 1fr);
  align-items: start;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding-block: clamp(2.8rem, 6vw, 4.8rem);
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line);
}

.about-heading {
  display: grid;
  gap: var(--space-md);
}

.about-heading .eyebrow {
  margin: 0;
}

.about-heading h2 {
  max-width: 10ch;
  font-size: clamp(2.4rem, 5vw, 4.85rem);
}

.about-copy {
  justify-self: center;
  display: grid;
  gap: clamp(0.9rem, 1.7vw, 1.35rem);
  width: min(100%, 58ch);
  max-width: 58ch;
}

.about-copy p {
  margin: 0;
  color: oklch(30% 0.026 255);
  font-size: clamp(1.02rem, 1.05vw, 1.15rem);
  line-height: 1.68;
  letter-spacing: 0;
  text-wrap: pretty;
}

.about-copy .about-lede {
  max-width: 50ch;
  color: var(--muted);
  font-size: 1.15rem;
  font-weight: 400;
  line-height: 1.5;
  text-wrap: pretty;
}

.about-copy p:nth-child(2) {
  max-width: 52ch;
  color: var(--muted);
  font-size: 1.15rem;
  line-height: 1.5;
}

.about-copy .about-note {
  color: var(--ink);
  font-size: clamp(0.98rem, 0.95vw, 1.08rem);
  font-weight: 800;
}

.about-copy strong {
  color: var(--ink);
  font-weight: 850;
}

.about-copy em {
  color: var(--hot-dark);
  font-style: italic;
}

.about-copy .about-lede strong {
  color: var(--ink);
  font-size: 1.05rem;
  font-style: normal;
  font-weight: 700;
  line-height: 1.15;
}

.about-copy p:nth-child(2) em {
  color: var(--hot-dark);
  font-style: italic;
  font-weight: inherit;
}

.about-copy a {
  color: var(--hot-dark);
  font-weight: 800;
  text-decoration-line: underline;
  text-decoration-thickness: 0.08em;
  text-underline-offset: 0.18em;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: var(--space-xl);
  padding-block: var(--space-2xl);
  color: var(--muted);
}

.footer-brand {
  color: var(--ink);
}

.site-footer p {
  margin: 0.35rem 0 0 2.45rem;
  font-size: 0.9rem;
}

.footer-rights {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
  gap: var(--space-xl);
  font-size: 0.95rem;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms var(--ease-out), transform 520ms var(--ease-out);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (min-width: 90rem) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 4rem, 100rem);
  }

  h1 {
    max-width: 37.25rem;
    font-size: 9.25rem;
  }

  h2 {
    font-size: 4.85rem;
  }

  .hero-map-bold-studio .studio-top strong {
    font-size: 4.1rem;
  }
}

@media (max-width: 75rem) {
  .hero {
    grid-template-columns: 1fr;
  }

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

  .hero-map {
    max-width: 56rem;
  }

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

  .workbench-panel {
    border-width: 0 0 1px 0;
  }

  .workbench-panel:last-child {
    border-bottom: 0;
  }

  .format-grid,
  .creator-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .loom-stage {
    min-height: clamp(26rem, 70vw, 36rem);
    grid-template-rows: auto minmax(9rem, 22vw, 13rem) auto;
  }

  .source-art {
    width: clamp(4rem, 11vw, 6.3rem);
  }

  .material-loom-cinematic .loom-stage {
    grid-template-rows: max-content minmax(5.6rem, 8.5vw, 7rem);
    min-height: clamp(22rem, 44vw, 30rem);
  }

  .material-loom-cinematic .source-art {
    width: clamp(5.7rem, 11.6vw, 8.2rem);
  }

}

@media (max-width: 58rem) {
  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 4.5rem;
  }

  .site-header > .button {
    display: none;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }

  .site-nav {
    position: fixed;
    inset: 4.5rem 1rem auto;
    display: grid;
    justify-self: auto;
    gap: 0;
    padding: var(--space-lg);
    border: 1px solid var(--line-strong);
    border-radius: var(--radius);
    background: var(--surface);
    box-shadow: var(--shadow);
    transform: translateY(-1rem);
    opacity: 0;
    pointer-events: none;
    transition: opacity 160ms var(--ease-out), transform 160ms var(--ease-out);
  }

  .nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav a {
    padding: 0.95rem;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  .site-nav a::after {
    display: none;
  }

  .hero {
    min-height: auto;
    padding-top: var(--space-3xl);
  }

  h1 {
    max-width: 27rem;
    font-size: 6.65rem;
  }

  h2 {
    font-size: 2.9rem;
  }

  .hero-deck {
    font-size: clamp(1.18rem, 5.4vw, 1.35rem);
  }

  .hero-lede {
    font-size: 1.1rem;
  }

  .hero-map-bold-studio .studio-top strong {
    font-size: 2.75rem;
  }

  .proof-row,
  .split-intro,
  .about-panel {
    grid-template-columns: 1fr;
  }

  .hero-map {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-map-bold-studio {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .material-loom {
    margin-top: var(--space-xl);
  }

  .loom-stage {
    min-height: clamp(21rem, 82vw, 29rem);
    grid-template-rows: auto minmax(7.5rem, 25vw, 10.5rem) auto;
    padding-top: clamp(0.9rem, 3vw, 1.35rem);
  }

  .source-fan {
    gap: clamp(0.12rem, 0.9vw, 0.4rem);
    padding-inline: 0.2rem;
  }

  .source-art {
    width: min(10.7vw, 4.6rem);
    padding: 0.28rem;
    border-radius: 5px;
  }

  .material-loom-cinematic {
    margin-block: clamp(0.55rem, 2.4vw, 1.1rem) clamp(1rem, 4vw, 2rem);
    padding: 0.25rem;
  }

  .material-loom-cinematic .loom-stage {
    grid-template-rows: max-content minmax(4.8rem, 18vw, 6.2rem);
    row-gap: clamp(0.2rem, 1.6vw, 0.55rem);
    min-height: clamp(17rem, 66vw, 24rem);
    padding: clamp(0.35rem, 2vw, 0.8rem) 0 clamp(0.2rem, 1.5vw, 0.5rem);
  }

  .material-loom-cinematic .source-fan {
    gap: 0;
    padding-inline: 0;
  }

  .material-loom-cinematic .source-art {
    width: min(12.4vw, 4.25rem);
    margin-inline: clamp(-0.24rem, -0.55vw, -0.08rem);
    padding: 0.22rem;
  }

  .material-loom-cinematic .source-art:nth-child(1) {
    --book-rise: 0.32rem;
    --book-offset: 0.1rem;
  }

  .material-loom-cinematic .source-art:nth-child(2) {
    --book-rise: 0.14rem;
    --book-offset: 0.04rem;
  }

  .material-loom-cinematic .source-art:nth-child(3) {
    --book-offset: 0.01rem;
  }

  .material-loom-cinematic .source-art:nth-child(4) {
    --book-offset: -0.01rem;
  }

  .material-loom-cinematic .source-art:nth-child(5) {
    --book-rise: 0.14rem;
    --book-offset: -0.04rem;
  }

  .material-loom-cinematic .source-art:nth-child(6) {
    --book-rise: 0.32rem;
    --book-offset: -0.1rem;
  }

  .material-loom-cinematic .loom-wave {
    width: min(100% - 1rem, 76rem);
    height: clamp(4.6rem, 18vw, 5.8rem);
  }

  .source-art:nth-child(1) {
    --active-tilt: -10deg;
    --active-lean: 10deg;
  }

  .source-art:nth-child(2) {
    --active-tilt: -6deg;
    --active-lean: 7deg;
  }

  .source-art:nth-child(3) {
    --active-tilt: -2deg;
    --active-lean: 4deg;
  }

  .source-art:nth-child(4) {
    --active-tilt: 2deg;
    --active-lean: -4deg;
  }

  .source-art:nth-child(5) {
    --active-tilt: 6deg;
    --active-lean: -7deg;
  }

  .source-art:nth-child(6) {
    --active-tilt: 10deg;
    --active-lean: -10deg;
  }

  .source-picture {
    border-radius: 3px;
  }

  .loom-wave {
    width: min(100% - 0.6rem, 72rem);
  }

  .format-grid,
  .creator-grid {
    grid-template-columns: 1fr;
  }

  .format-grid article,
  .creator-grid article {
    min-height: auto;
  }

  .site-footer {
    display: grid;
  }

  .footer-rights {
    justify-content: flex-start;
    gap: var(--space-lg);
  }
}

@media (max-width: 34rem) {
  .site-header,
  .section-shell,
  .site-footer {
    width: min(100% - 1.25rem, 88rem);
  }

  .brand {
    gap: 0.55rem;
    font-size: 0.95rem;
  }

  .brand-mark {
    transform: scale(0.86);
    transform-origin: left center;
  }

  .hero-actions,
  .proof-row {
    display: grid;
    grid-template-columns: 1fr;
  }

  .button {
    width: 100%;
  }

  h1 {
    max-width: 22rem;
    font-size: clamp(4.58rem, 23vw, 5.45rem);
  }

  h2 {
    font-size: 2.55rem;
  }

  .loom-stage {
    min-height: clamp(18rem, 94vw, 24rem);
    grid-template-rows: auto minmax(5.8rem, 22vw, 8rem) auto;
    padding-top: 0.85rem;
  }

  .material-loom::before {
    inset: 1rem 0 0.8rem;
  }

  .source-art {
    width: min(11.2vw, 3.2rem);
    gap: 0.24rem;
    padding: 0.2rem;
  }

  .material-loom-cinematic .loom-stage {
    grid-template-rows: max-content minmax(4.2rem, 17vw, 5.2rem);
    min-height: clamp(14rem, 58vw, 19rem);
  }

  .material-loom-cinematic .source-art {
    width: min(11.4vw, 3.05rem);
    margin-inline: clamp(-0.16rem, -0.45vw, -0.05rem);
    padding: 0.17rem;
  }

  .material-loom-cinematic .source-art:nth-child(1) {
    --book-rise: 0.22rem;
    --book-offset: 0.07rem;
  }

  .material-loom-cinematic .source-art:nth-child(2) {
    --book-rise: 0.1rem;
    --book-offset: 0.03rem;
  }

  .material-loom-cinematic .source-art:nth-child(3) {
    --book-offset: 0.01rem;
  }

  .material-loom-cinematic .source-art:nth-child(4) {
    --book-offset: -0.01rem;
  }

  .material-loom-cinematic .source-art:nth-child(5) {
    --book-rise: 0.1rem;
    --book-offset: -0.03rem;
  }

  .material-loom-cinematic .source-art:nth-child(6) {
    --book-rise: 0.22rem;
    --book-offset: -0.07rem;
  }

  .material-loom-cinematic .loom-wave {
    width: min(100% - 0.65rem, 76rem);
    height: 4.6rem;
  }

  .loom-wave {
    height: 4.2rem;
    gap: 2px;
    padding: 0.62rem;
  }

  .hero-deck {
    font-size: clamp(0.84rem, 4.25vw, 1.18rem);
  }

  .workbench-panel,
  .format-grid article,
  .creator-grid article {
    padding: var(--space-lg);
  }

  .preview-marker {
    display: grid;
    justify-content: stretch;
    padding-inline: var(--space-lg);
  }

  .preview-marker strong {
    font-size: 0.86rem;
  }

  .file-list li {
    grid-template-columns: 1.5rem 1fr;
  }

  .file-list em {
    grid-column: 2;
  }

  .segmented-row,
  .segmented-row:nth-of-type(2) {
    grid-template-columns: 1fr 1fr;
  }

  .segmented-row.age-row {
    grid-template-columns: repeat(4, max-content);
    justify-content: start;
  }

  .segmented-row span {
    grid-column: 1 / -1;
  }
}

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }

  .source-art {
    animation: none !important;
  }
}
