@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-regular.ttf") format("truetype");
  font-weight: 400;
  font-display: swap;
}
@font-face {
  font-family: Manrope;
  src: url("assets/fonts/manrope-semibold.ttf") format("truetype");
  font-weight: 600 900;
  font-display: swap;
}
@font-face {
  font-family: Instrument;
  src: url("assets/fonts/instrument-serif-italic.ttf") format("truetype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f8f6f1;
  --ink: #292923;
  --muted: #6e6c63;
  --accent: #c54125;
  --line: #dedcd4;
  --serif: Instrument, Georgia, serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Manrope, sans-serif;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input {
  font: inherit;
}
button,
a,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: default;
}
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 5px;
}
a:hover {
  text-decoration-color: var(--accent);
}
h1,
h2,
h3,
p {
  margin: 0;
}
em {
  font-family: var(--serif);
  font-weight: 400;
}
h2 {
  font-size: clamp(38px, 4.4vw, 64px);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -2.7px;
}
h2 em {
  font-size: 1.13em;
}
p {
  line-height: 1.7;
}
.section-width {
  max-width: 1192px;
  margin-inline: auto;
  padding-inline: 32px;
}
.skip {
  position: absolute;
  top: -70px;
  left: 20px;
  z-index: 10;
  padding: 12px;
  background: var(--ink);
  color: white;
}
.skip:focus {
  top: 12px;
}
.site-header {
  height: 100px;
  max-width: 1328px;
  padding: 0 48px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 26px;
}
.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: -1.3px;
}
.site-header nav {
  display: flex;
  gap: 32px;
  font-size: 13px;
}
.site-header nav a:hover,
.text-link:hover {
  text-decoration: underline;
  text-underline-offset: 6px;
}
.header-link {
  border: 1px solid #ccc9bf;
  border-radius: 7px;
  padding: 11px 17px;
  font-size: 12px;
  font-weight: 600;
  white-space: nowrap;
}
.header-link span {
  margin-left: 15px;
}
.hero {
  text-align: center;
  padding-top: 62px;
}
.announcement {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid #ddd8cd;
  border-radius: 50px;
  padding: 8px 13px;
  font-size: 11px;
  background: #fffaf1;
}
.announcement > span:last-child {
  margin-left: 12px;
  color: var(--muted);
}
.status-dot {
  width: 6px;
  height: 6px;
  background: var(--accent);
  border-radius: 50%;
  box-shadow: 0 0 0 3px #e4ad9833;
}
.hero h1 {
  font-size: clamp(56px, 7.4vw, 102px);
  line-height: 0.98;
  letter-spacing: -6px;
  font-weight: 600;
  margin: 28px 0 24px;
}
.hero h1 em {
  color: var(--accent);
  font-size: 1.15em;
}
.hero-description {
  font-size: 15px;
  line-height: 1.8;
  color: var(--muted);
}
.hero-actions {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  margin-top: 26px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 15px 22px;
  font-size: 13px;
  font-weight: 600;
  border-radius: 8px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
}
.primary {
  background: var(--ink);
  color: #fffaf1;
  box-shadow:
    0 3px 3px #29292315,
    inset 0 1px 0 #ffffff18;
}
.primary:hover {
  background: #444137;
}
.text-link {
  font-size: 13px;
}
.availability {
  font-size: 10px;
  letter-spacing: 0.15px;
  color: var(--muted);
  margin-top: 17px;
}
.hero-preview {
  margin: 58px 0 0;
  scroll-margin-top: 28px;
  text-align: left;
}
.editor-shell {
  border: 1px solid #34342f;
  background: #242522;
  border-radius: 13px;
  padding: 7px;
  box-shadow:
    0 50px 80px -45px #5c402b85,
    0 8px 24px #65503a15;
  overflow: hidden;
  color: #cccac4;
}
.editor-top {
  height: 37px;
  padding: 0 12px 5px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 10px;
  gap: 10px;
}
.traffic {
  display: flex;
  gap: 5px;
  width: 100px;
}
.traffic i {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #665c54;
}
.traffic i:first-child {
  background: #b87b68;
}
.traffic i:nth-child(2) {
  background: #aa9766;
}
.traffic i:nth-child(3) {
  background: #82937d;
}
.editor-faint {
  color: #8f9187;
  margin-left: 12px;
}
.concept-pill {
  font-size: 7px;
  letter-spacing: 1px;
  border: 1px solid #51524b;
  padding: 4px 7px;
  border-radius: 4px;
}
.editor-workspace {
  display: flex;
  gap: 7px;
}
.editor-rail {
  width: 39px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 21px;
  padding: 12px 0;
  font-size: 16px;
  color: #8d8e86;
}
.rail-active {
  color: #f3e2c9;
  background: #45443a;
  padding: 4px 8px;
  border-radius: 5px;
}
.rail-bottom {
  margin-top: auto;
}
.demo-stage {
  aspect-ratio: 1.93;
  position: relative;
  overflow: hidden;
  background: #e7b090;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
}
.ribbon-art {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.sample-window {
  width: 76%;
  position: relative;
  background: #fdfbf5;
  border: 1px solid #fff8;
  box-shadow: 0 24px 45px #6b341d50;
  border-radius: 8px;
  overflow: hidden;
  color: #36362f;
  animation: sceneZoom 12s infinite ease-in-out;
  transform-origin: 65% 58%;
  will-change: transform;
}
.sample-top {
  height: 44px;
  padding: 0 18px;
  border-bottom: 1px solid #dedbd2;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 8px;
}
.sample-top > b {
  font-size: 19px;
  letter-spacing: -1px;
  display: flex;
  gap: 5px;
  align-items: center;
}
.form-mark {
  background: #4a604a;
  color: #f6f1df;
  width: 21px;
  height: 21px;
  border-radius: 5px;
  font: italic 24px Georgia;
  text-align: center;
}
.sample-top > span:nth-child(2) {
  color: #88877e;
}
.sample-top > span:nth-child(2) > span {
  margin-left: 40px;
  border: 1px solid #e2e0d7;
  padding: 3px 5px;
  border-radius: 3px;
}
.sample-avatar {
  border-radius: 50%;
  background: #e3ccb0;
  font-size: 9px;
  padding: 5px 8px;
}
.sample-body {
  display: flex;
  min-height: 250px;
}
.sample-body aside {
  width: 25%;
  border-right: 1px solid #e5e1d8;
  padding: 14px 8px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-size: 8px;
  white-space: nowrap;
}
.sample-body aside > span {
  padding: 7px;
}
.sample-body aside .selected {
  background: #eeeae0;
  border-radius: 4px;
}
.sample-body aside small {
  font-size: 6px;
  color: #8d8b80;
  padding: 18px 7px 6px;
}
.sample-content {
  flex: 1;
  padding: 23px 28px;
}
.tiny-label {
  font-size: 6px;
  letter-spacing: 1.2px;
  color: #79776d;
}
.sample-content h2 {
  font-size: 28px;
  line-height: 1.05;
  letter-spacing: -1px;
  margin: 8px 0 18px;
}
.project-row {
  display: flex;
  gap: 12px;
}
.project-art {
  width: 50%;
  height: 106px;
  border-radius: 4px;
  overflow: hidden;
  position: relative;
  padding: 13px;
  display: flex;
  align-items: center;
}
.project-art span {
  font-size: 24px;
  line-height: 0.9;
  letter-spacing: -1px;
  z-index: 1;
}
.project-art span i {
  font-family: var(--serif);
  font-size: 1.25em;
}
.orange {
  background: #d94e29;
  color: #fff1d7;
}
.orange:after {
  content: "";
  position: absolute;
  border: 16px solid #f68f5c;
  border-radius: 50%;
  width: 100px;
  height: 100px;
  right: -35px;
  bottom: -50px;
}
.lavender {
  background: #c9c6da;
  color: #3b3952;
}
.lavender span {
  font-size: 20px;
}
.art-orbit {
  position: absolute;
  border: 12px solid #a29cb9;
  width: 100px;
  height: 100px;
  right: -42px;
  top: -35px;
  border-radius: 50%;
}
.project-labels {
  display: flex;
  gap: 12px;
  font-size: 7px;
  margin-top: 7px;
}
.project-labels > span {
  width: 50%;
}
.project-labels small {
  display: block;
  font-size: 6px;
  color: #8a867a;
  margin-top: 2px;
}
.demo-cursor {
  position: absolute;
  width: 24px;
  left: 66%;
  top: 63%;
  animation: cursorMove 12s infinite ease-in-out;
  z-index: 3;
}
.demo-cursor svg {
  display: block;
}
.demo-cursor > span {
  font-size: 8px;
  padding: 3px 8px;
  background: var(--accent);
  color: white;
  border-radius: 4px;
  margin-left: 15px;
}
.zoom-chip {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  border-radius: 30px;
  background: #2e2827c9;
  color: white;
  padding: 8px 12px;
  backdrop-filter: blur(8px);
  animation: zoomLabel 12s infinite;
}
.editor-timeline {
  padding: 10px 17px 13px 55px;
}
.timeline-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 9px;
  margin-bottom: 10px;
}
.timeline-info i {
  font-style: normal;
  color: #84857c;
}
.timeline-ruler {
  display: flex;
  justify-content: space-between;
  font-size: 7px;
  color: #888b7e;
  margin-bottom: 6px;
}
.film-track {
  height: 39px;
  border: 1px solid #cfad7c;
  border-radius: 4px;
  display: flex;
  gap: 2px;
  position: relative;
  padding: 2px;
  background: #8e7556;
}
.film-track > i {
  flex: 1;
  background: linear-gradient(135deg, #ebc2a1 20%, #d96632 60%, #e4ab83);
  border-radius: 2px;
}
.film-track > i:nth-child(even) {
  background: linear-gradient(135deg, #e6b997, #efd1b6 60%, #c8602d);
}
.playhead {
  position: absolute;
  left: 10%;
  height: 63px;
  width: 1px;
  top: -10px;
  background: #f3e3bf;
  z-index: 2;
  animation: playhead 12s infinite linear;
}
.playhead:before {
  content: "";
  position: absolute;
  top: -2px;
  left: -3px;
  width: 7px;
  height: 7px;
  background: #f3e3bf;
  clip-path: polygon(0 0, 100% 0, 100% 60%, 50% 100%, 0 60%);
}
.audio-track {
  display: flex;
  gap: 8px;
  margin-top: 5px;
  height: 14px;
}
.audio-track span {
  border-radius: 3px;
  flex: 1;
  background: repeating-linear-gradient(
    90deg,
    #7e988644 0 2px,
    #b1c7ac55 2px 3px
  );
  border: 1px solid #92aa7f44;
}
.audio-track span:nth-child(2) {
  flex: 2;
}
.hero-preview figcaption {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 8px;
  letter-spacing: 1.1px;
  color: var(--muted);
  margin-top: 19px;
  gap: 14px;
}
.motion-control {
  background: none;
  border: 0;
  color: var(--ink);
  font-size: 10px;
  letter-spacing: 0;
  padding: 7px 0;
  min-height: 32px;
}
.preview-note {
  font-size: 10px;
  color: var(--muted);
  margin-top: 10px;
  text-align: left;
}
.use-cases {
  margin-top: 70px;
  padding-block: 28px;
  border-block: 1px solid var(--line);
  text-align: center;
}
.use-cases > span {
  font-size: 8px;
  letter-spacing: 1.8px;
  color: var(--muted);
}
.use-cases p {
  font-size: 17px;
  margin-top: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  flex-wrap: wrap;
  line-height: 1.3;
  letter-spacing: -0.4px;
}
.use-cases i {
  font-size: 17px;
  color: #b9ad99;
  font-style: normal;
}
.experience {
  padding-block: 118px 110px;
}
.section-heading {
  text-align: center;
}
.eyebrow {
  font-size: 9px;
  letter-spacing: 1.7px;
  font-weight: 600;
  margin-bottom: 20px;
}
.section-heading > p:last-child {
  font-size: 14px;
  color: var(--muted);
  margin-top: 23px;
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 25px;
  margin-top: 54px;
}
.feature-visual {
  height: 255px;
  border-radius: 12px;
  position: relative;
  overflow: hidden;
  margin-bottom: 27px;
}
.capture-visual {
  background: #eae7dd;
  display: flex;
  align-items: center;
  justify-content: center;
}
.capture-outline {
  position: relative;
  width: 79%;
  height: 61%;
  border: 1px dashed #a89671;
  display: grid;
  place-items: center;
  background: #f7f4eaaa;
}
.corner {
  position: absolute;
  width: 10px;
  height: 10px;
  border-color: var(--accent);
  border-style: solid;
}
.tl {
  top: -2px;
  left: -2px;
  border-width: 2px 0 0 2px;
}
.tr {
  top: -2px;
  right: -2px;
  border-width: 2px 2px 0 0;
}
.bl {
  bottom: -2px;
  left: -2px;
  border-width: 0 0 2px 2px;
}
.br {
  bottom: -2px;
  right: -2px;
  border-width: 0 2px 2px 0;
}
.capture-title {
  font: italic 30px var(--serif);
  letter-spacing: -0.5px;
  text-align: center;
}
.capture-title span {
  display: block;
  font: 9px Manrope;
  margin-top: 8px;
  color: var(--muted);
  letter-spacing: 0;
}
.capture-bar {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  width: 83%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #292c28;
  border: 1px solid #66685d;
  color: #ddd9cc;
  box-shadow: 0 10px 20px #29292320;
  border-radius: 8px;
  font-size: 8px;
  padding: 8px 10px;
}
.capture-bar b {
  background: #c84e32;
  padding: 7px 11px;
  border-radius: 4px;
  color: #fff1de;
  display: flex;
  gap: 6px;
  align-items: center;
  font-size: 8px;
}
.capture-bar i {
  display: block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #ffe3b9;
}
.focus-visual {
  background: #dfded3;
  display: grid;
  place-items: center;
}
.focus-paper {
  transform: rotate(-5deg);
  background: #f7f6ef;
  padding: 25px 34px;
  box-shadow: 0 10px 20px #42433718;
  position: relative;
}
.focus-paper small {
  font-size: 6px;
  letter-spacing: 1px;
}
.focus-paper strong {
  display: block;
  font-size: 33px;
  line-height: 1;
  letter-spacing: -1.5px;
  margin-top: 14px;
  font-weight: 600;
}
.focus-paper em {
  color: #747e59;
}
.focus-pointer {
  position: absolute;
  bottom: 17px;
  right: 22px;
  font-size: 30px;
}
.focus-badge {
  position: absolute;
  bottom: 25px;
  right: 23px;
  border: 1px solid #cccbbb;
  box-shadow: 0 4px 8px #5252380a;
  background: #fbfaee;
  font-size: 9px;
  padding: 8px 10px;
  border-radius: 5px;
  transform: rotate(4deg);
}
.formats-visual {
  background: #e8e0e9;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.format-block {
  background: #b8acc3;
  color: #3b2b47;
  padding: 13px;
  box-shadow: 0 10px 20px #76658333;
  display: grid;
  align-items: center;
  font-size: 28px;
  letter-spacing: -1px;
  line-height: 0.95;
  border-radius: 6px;
}
.format-block em {
  font-size: 1.2em;
}
.landscape {
  width: 54%;
  height: 105px;
  transform: rotate(-6deg);
}
.portrait {
  width: 25%;
  height: 155px;
  background: #553f66;
  color: #f4e4ff;
  transform: rotate(7deg);
  font-size: 25px;
}
.formats-line {
  position: absolute;
  bottom: 22px;
  font-size: 7px;
  letter-spacing: 1px;
}
.feature-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.feature-heading > span {
  font-size: 9px;
  color: #9a9485;
  font-variant-numeric: tabular-nums;
}
.feature-heading h3 {
  font-size: 18px;
  letter-spacing: -0.6px;
  font-weight: 600;
}
.workflow-grid article > p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 12px;
  max-width: 310px;
}
.planned-label {
  display: inline-block;
  font-size: 7px;
  letter-spacing: 1px;
  border: 1px solid #dad5c8;
  border-radius: 4px;
  padding: 4px 6px;
  color: #70695e;
  margin-top: 17px;
}
.canvas-section {
  background: #eeece4;
  padding-block: 95px;
}
.canvas-layout {
  display: grid;
  grid-template-columns: 1fr 1.55fr;
  align-items: center;
  gap: 65px;
}
.canvas-copy > p:not(.eyebrow) {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
  max-width: 310px;
}
.canvas-copy > p.try-label {
  font-size: 10px;
  color: var(--ink);
  margin-top: 30px;
}
.appearance-controls,
.ratio-controls {
  padding: 0;
  border: 0;
  margin: 25px 0 0;
}
.appearance-controls legend,
.ratio-controls legend,
.inset-label {
  font-size: 10px;
  letter-spacing: 0.1px;
  color: #6e6b60;
  margin-bottom: 9px;
}
.swatches {
  display: flex;
  gap: 9px;
}
.swatches button {
  border: 1px solid transparent;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  background: none;
  padding: 4px;
}
.swatches button[aria-pressed="true"] {
  border-color: var(--ink);
}
.swatches span {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
}
.swatches [data-theme="apricot"] span {
  background: #da8055;
}
.swatches [data-theme="lilac"] span {
  background: #b6a0c6;
}
.swatches [data-theme="ink"] span {
  background: #383932;
}
.segments {
  display: flex;
  gap: 3px;
  background: #e3e0d6;
  width: max-content;
  padding: 3px;
  border-radius: 7px;
}
.segments button {
  border: 0;
  background: transparent;
  font-size: 11px;
  padding: 8px 15px;
  border-radius: 5px;
  color: #625e54;
  min-width: 55px;
}
.segments button[aria-pressed="true"] {
  background: #fcfaf4;
  color: var(--ink);
  box-shadow: 0 2px 4px #716d6115;
}
.inset-label {
  display: flex;
  justify-content: space-between;
  max-width: 245px;
  margin-top: 23px;
}
input[type="range"] {
  accent-color: var(--accent);
  width: 245px;
  max-width: 100%;
  margin: 0;
  height: 22px;
}
.canvas-display {
  min-width: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 480px;
}
.interactive-canvas {
  --inset: 12%;
  width: 100%;
  max-width: 590px;
  aspect-ratio: 16/9;
  padding: 0;
  background: #d98965;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 11px;
  box-shadow: 0 26px 40px -25px #74554277;
  transition:
    width 0.45s,
    aspect-ratio 0.45s,
    background 0.45s,
    padding 0.2s;
  overflow: hidden;
}
.interactive-canvas[data-theme="lilac"] {
  background: #b7a2c4;
}
.interactive-canvas[data-theme="ink"] {
  background: #34372f;
}
.interactive-canvas[data-ratio="square"] {
  width: 74%;
  aspect-ratio: 1;
}
.interactive-canvas[data-ratio="tall"] {
  width: 47%;
  aspect-ratio: 9/16;
}
.canvas-project {
  background: #f5f1e8;
  border-radius: 5px;
  box-shadow: 0 15px 30px #3d302c33;
  width: calc(100% - var(--inset) - var(--inset));
  min-width: 0;
  overflow: hidden;
  transition: width 0.2s;
}
.mini-browser {
  height: 23px;
  padding: 0 9px;
  display: flex;
  align-items: center;
  gap: 3px;
  border-bottom: 1px solid #e3ded5;
}
.mini-browser i {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #cac5ba;
}
.mini-browser span {
  font-size: 6px;
  color: #8a877b;
  margin: auto;
}
.canvas-poster {
  padding: 24px 21px;
  position: relative;
  overflow: hidden;
}
.canvas-poster > span:first-child {
  font-size: 5px;
  letter-spacing: 1px;
  position: relative;
  z-index: 1;
}
.canvas-poster h3 {
  font-size: clamp(25px, 3vw, 44px);
  font-weight: 600;
  line-height: 0.98;
  letter-spacing: -1.7px;
  margin: 17px 0 30px;
  position: relative;
  z-index: 1;
}
.canvas-poster h3 em {
  font-size: 1.2em;
  color: #846d45;
}
.poster-orb {
  position: absolute;
  right: -34px;
  top: 65px;
  width: 140px;
  height: 140px;
  border: 28px solid #b6af9077;
  border-radius: 50%;
  transform: rotate(-35deg) skew(-20deg);
  box-shadow:
    inset 8px 0 12px #5b5b3825,
    3px 7px 10px #60543618;
}
.poster-foot {
  display: flex;
  justify-content: space-between;
  position: relative;
  font-size: 5px;
}
.poster-foot b {
  font-size: 14px;
}
.canvas-display > p {
  font-size: 9px;
  color: var(--muted);
  margin-top: 23px;
  text-align: center;
  max-width: 280px;
}
.interactive-canvas[data-ratio="tall"] .canvas-poster {
  padding: 35px 12px;
}
.interactive-canvas[data-ratio="tall"] .canvas-poster h3 {
  font-size: 31px;
  margin-block: 26px 75px;
}
.interactive-canvas[data-ratio="tall"] .poster-orb {
  top: 116px;
  width: 110px;
  height: 110px;
  right: -60px;
}
.principles {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 110px;
  padding-block: 120px;
}
.principles h2 {
  font-size: 49px;
}
.principle-list article {
  border-bottom: 1px solid var(--line);
  padding-bottom: 27px;
  margin-bottom: 30px;
}
.principle-list article:last-child {
  margin: 0;
}
.principle-list article > span {
  font-size: 8px;
  letter-spacing: 1px;
  color: #716d61;
}
.principle-list h3 {
  font-size: 23px;
  letter-spacing: -0.7px;
  margin: 11px 0 10px;
  font-weight: 600;
}
.principle-list p {
  font-size: 12px;
  color: var(--muted);
}
.questions {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 90px;
  border-top: 1px solid var(--line);
  padding-block: 90px 110px;
}
.questions h2 {
  font-size: 48px;
}
.questions > div > p:last-child {
  font-size: 12px;
  color: var(--muted);
  margin-top: 25px;
}
.questions a {
  text-decoration: underline;
  text-underline-offset: 4px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  list-style: none;
  padding: 21px 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.faq-list details:first-child summary {
  padding-top: 0;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary span {
  color: #716d61;
  font-size: 20px;
  font-weight: 400;
}
.faq-list details[open] summary span {
  transform: rotate(45deg);
}
.faq-list details p {
  font-size: 12px;
  color: var(--muted);
  padding: 0 27px 23px 0;
  line-height: 1.8;
}
.closing {
  position: relative;
  overflow: hidden;
  padding: 95px 25px 110px;
  text-align: center;
  background: #f0dfca;
}
.closing-art {
  position: absolute;
  inset: 0;
  background: url("assets/reellet-ribbon.webp") center/cover;
  opacity: 0.43;
  transform: scaleX(-1);
}
.closing:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #f8eedcc9, #f8eedcaa 50%, #f8eedc55);
}
.closing-content {
  position: relative;
  z-index: 1;
}
.closing-mark {
  display: inline-block;
  transform: rotate(-8deg);
  filter: drop-shadow(0 8px 10px #a062252f);
  margin-bottom: 24px;
}
.closing .eyebrow {
  margin-bottom: 22px;
}
.closing h2 {
  font-size: clamp(43px, 5.8vw, 76px);
}
.closing h2 em {
  color: var(--accent);
}
.closing-content > p:not(.eyebrow) {
  font-size: 13px;
  color: #6a5b49;
  margin: 23px 0;
}
.email-note {
  display: block;
  font-size: 9px;
  margin-top: 14px;
  color: #6a5b49;
}
footer {
  padding-block: 45px 27px;
}
.footer-top,
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-top > span {
  font: italic 21px var(--serif);
  color: #777064;
}
.footer-top > a:last-child {
  font-size: 11px;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  margin-top: 30px;
  padding-top: 20px;
  font-size: 9px;
  color: var(--muted);
}
.footer-bottom nav {
  display: flex;
  gap: 23px;
}
.footer-bottom a:hover {
  text-decoration: underline;
}
.motion-paused *,
.motion-paused *:before,
.motion-paused *:after {
  animation-play-state: paused !important;
}
@keyframes sceneZoom {
  0%,
  20%,
  90%,
  100% {
    transform: scale(1);
  }
  40%,
  70% {
    transform: scale(1.19) translate(-2%, 0);
  }
}
@keyframes cursorMove {
  0%,
  15%,
  100% {
    transform: translate(-90px, -50px);
  }
  30%,
  65% {
    transform: translate(0, 0);
  }
  80% {
    transform: translate(30px, -10px);
  }
}
@keyframes playhead {
  from {
    left: 4%;
  }
  to {
    left: 96%;
  }
}
@keyframes zoomLabel {
  0%,
  20%,
  85%,
  100% {
    opacity: 0;
    translate: 0 5px;
  }
  35%,
  70% {
    opacity: 1;
    translate: 0 0;
  }
}
@media (min-width: 1440px) {
  .hero {
    padding-top: 75px;
  }
  .hero-preview {
    margin-top: 70px;
  }
}
@media (max-width: 1000px) {
  .site-header {
    padding: 0 32px;
  }
  .site-header nav {
    gap: 20px;
  }
  .hero h1 {
    letter-spacing: -4px;
  }
  .sample-body {
    min-height: 210px;
  }
  .sample-content {
    padding: 17px 20px;
  }
  .project-art {
    height: 80px;
  }
  .project-art span {
    font-size: 21px;
  }
  .sample-content h2 {
    font-size: 25px;
  }
  .canvas-layout {
    gap: 30px;
  }
  .canvas-display {
    min-height: 420px;
  }
  .feature-visual {
    height: 220px;
  }
  .feature-heading h3 {
    font-size: 16px;
  }
  .feature-heading {
    gap: 7px;
  }
  .capture-title {
    font-size: 25px;
  }
  .capture-bar {
    font-size: 7px;
  }
  .capture-bar b {
    padding: 7px;
  }
  .principles {
    gap: 55px;
  }
  .principles h2 {
    font-size: 42px;
  }
  .questions {
    gap: 45px;
  }
  .use-cases p {
    font-size: 15px;
    gap: 18px;
  }
  .interactive-canvas[data-ratio="tall"] {
    width: 60%;
  }
}
@media (max-width: 740px) {
  .site-header {
    height: 80px;
    padding: 0 22px;
  }
  .site-header nav {
    display: none;
  }
  .wordmark {
    font-size: 24px;
  }
  .header-link {
    font-size: 10px;
    padding: 10px 12px;
  }
  .header-link span {
    margin-left: 6px;
  }
  .section-width {
    padding-inline: 22px;
  }
  .hero {
    padding-top: 35px;
  }
  .hero h1 {
    font-size: clamp(40px, 11.5vw, 66px);
    letter-spacing: -2.4px;
  }
  .hero-description {
    font-size: 13px;
  }
  .wide-only {
    display: none;
  }
  .announcement {
    font-size: 9px;
    padding: 7px 10px;
  }
  .hero-actions {
    gap: 20px;
  }
  .button {
    font-size: 11px;
    padding: 14px 17px;
  }
  .text-link {
    font-size: 11px;
  }
  .availability {
    font-size: 9px;
  }
  .hero-preview {
    margin-top: 40px;
  }
  .editor-shell {
    padding: 4px;
    border-radius: 9px;
  }
  .editor-top {
    height: 27px;
    font-size: 7px;
    padding: 0 6px 4px;
  }
  .traffic {
    width: 43px;
    gap: 3px;
  }
  .traffic i {
    width: 5px;
    height: 5px;
  }
  .editor-faint {
    display: none;
  }
  .concept-pill {
    font-size: 5px;
    padding: 3px 4px;
  }
  .editor-rail {
    width: 22px;
    gap: 13px;
    font-size: 11px;
    padding-block: 8px;
  }
  .rail-active {
    padding: 3px 5px;
  }
  .editor-workspace {
    gap: 4px;
  }
  .demo-stage {
    aspect-ratio: 1.45;
  }
  .sample-window {
    width: 84%;
    border-radius: 5px;
  }
  .sample-top {
    height: 29px;
    padding: 0 9px;
    font-size: 5px;
  }
  .sample-top > b {
    font-size: 14px;
  }
  .form-mark {
    width: 15px;
    height: 15px;
    font-size: 17px;
    border-radius: 3px;
  }
  .sample-top > span:nth-child(2) > span {
    display: none;
  }
  .sample-avatar {
    font-size: 5px;
    padding: 3px 5px;
  }
  .sample-body {
    min-height: 150px;
  }
  .sample-body aside {
    font-size: 5px;
    padding: 7px 3px;
  }
  .sample-body aside > span {
    padding: 5px 3px;
  }
  .sample-body aside small {
    font-size: 4px;
    padding: 10px 3px 3px;
  }
  .sample-content {
    padding: 12px;
  }
  .tiny-label {
    font-size: 4px;
    letter-spacing: 0.6px;
  }
  .sample-content h2 {
    font-size: 20px;
    letter-spacing: -0.7px;
    margin: 7px 0 12px;
  }
  .project-row,
  .project-labels {
    gap: 6px;
  }
  .project-art {
    height: 69px;
    padding: 8px;
  }
  .project-art span,
  .lavender span {
    font-size: 17px;
  }
  .project-labels {
    font-size: 5px;
    margin-top: 4px;
  }
  .project-labels small {
    font-size: 4px;
  }
  .art-orbit {
    border-width: 8px;
    width: 60px;
    height: 60px;
    right: -25px;
    top: -23px;
  }
  .demo-cursor {
    width: 17px;
  }
  .demo-cursor > span {
    font-size: 5px;
    padding: 2px 5px;
    margin-left: 10px;
  }
  .zoom-chip {
    bottom: 9px;
    font-size: 6px;
    padding: 5px 8px;
  }
  .editor-timeline {
    padding: 8px 8px 9px 31px;
  }
  .timeline-info {
    font-size: 6px;
    margin-bottom: 6px;
  }
  .timeline-ruler {
    font-size: 5px;
  }
  .film-track {
    height: 26px;
  }
  .audio-track {
    height: 9px;
    gap: 5px;
    margin-top: 4px;
  }
  .playhead {
    height: 45px;
  }
  .hero-preview figcaption {
    font-size: 6px;
    letter-spacing: 0.6px;
    margin-top: 12px;
  }
  .motion-control {
    font-size: 9px;
    white-space: nowrap;
  }
  .preview-note {
    font-size: 9px;
    line-height: 1.6;
  }
  .use-cases {
    margin-top: 40px;
    padding-block: 24px;
  }
  .use-cases p {
    font-size: 13px;
    gap: 12px;
    max-width: 380px;
    margin-inline: auto;
  }
  .use-cases i {
    font-size: 12px;
  }
  .use-cases i:nth-of-type(2) {
    display: none;
  }
  .experience {
    padding-block: 75px;
  }
  .section-heading > p:last-child {
    font-size: 12px;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.2px;
    margin-bottom: 17px;
  }
  h2 {
    font-size: 40px;
    letter-spacing: -1.8px;
  }
  .workflow-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 35px;
    max-width: 430px;
    margin-inline: auto;
  }
  .feature-visual {
    height: 280px;
    margin-bottom: 20px;
  }
  .feature-heading h3 {
    font-size: 20px;
  }
  .workflow-grid article > p {
    font-size: 13px;
    max-width: 100%;
  }
  .capture-title {
    font-size: 38px;
  }
  .capture-bar {
    font-size: 10px;
    bottom: 35px;
    padding: 10px 14px;
  }
  .capture-bar b {
    font-size: 10px;
    padding: 8px 12px;
  }
  .focus-paper {
    padding: 35px 45px;
  }
  .focus-paper strong {
    font-size: 40px;
  }
  .format-block {
    font-size: 36px;
    height: 130px;
  }
  .portrait {
    height: 180px;
    font-size: 30px;
  }
  .canvas-section {
    padding-block: 65px;
  }
  .canvas-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .canvas-copy {
    max-width: 420px;
    margin: auto;
    width: 100%;
  }
  .canvas-copy > p:not(.eyebrow) {
    max-width: 100%;
  }
  .canvas-copy h2 {
    font-size: 48px;
  }
  .canvas-display {
    min-height: 450px;
  }
  .interactive-canvas[data-ratio="tall"] {
    width: 53%;
    max-width: 235px;
  }
  .interactive-canvas[data-ratio="square"] {
    max-width: 345px;
  }
  .canvas-poster h3 {
    font-size: 36px;
  }
  .principles {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 75px;
    max-width: 480px;
  }
  .principles h2 {
    font-size: 43px;
  }
  .principle-list p {
    font-size: 13px;
  }
  .questions {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 65px;
    max-width: 480px;
  }
  .questions h2 {
    font-size: 43px;
  }
  .faq-list summary {
    font-size: 13px;
  }
  .closing {
    padding-block: 65px 75px;
  }
  .closing h2 {
    font-size: 48px;
    letter-spacing: -2px;
  }
  .closing-content > p:not(.eyebrow) {
    font-size: 12px;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top > span {
    display: none;
  }
  .footer-top > a:last-child {
    font-size: 10px;
  }
  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
  }
  .footer-bottom nav {
    gap: 25px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 40px;
    letter-spacing: -2px;
  }
  .announcement {
    font-size: 8px;
  }
  .hero-description {
    font-size: 12px;
  }
  .hero-preview figcaption > span {
    max-width: 135px;
    line-height: 1.6;
  }
  .sample-body aside {
    display: none;
  }
  .sample-window {
    width: 83%;
  }
  .sample-content {
    padding: 12px;
  }
  .sample-content h2 {
    font-size: 19px;
  }
  .sample-body {
    min-height: 160px;
  }
  .concept-pill {
    font-size: 4px;
  }
  .canvas-poster h3 {
    font-size: 29px;
  }
  .interactive-canvas[data-ratio="tall"] {
    width: 65%;
  }
  .feature-visual {
    height: 235px;
  }
  .capture-title {
    font-size: 31px;
  }
  .capture-bar {
    font-size: 8px;
  }
  .use-cases p {
    gap: 10px;
    font-size: 11px;
  }
  .closing h2 {
    font-size: 40px;
  }
  .footer-top {
    gap: 15px;
  }
  .footer-top > a:last-child {
    font-size: 9px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
  .button:hover {
    transform: none;
  }
  .zoom-chip {
    display: none;
  }
}

/* The full product story: Reellet-owned design and interactive samples. */
.site-header {
  position: sticky;
  top: 12px;
  z-index: 20;
  height: 70px;
  margin: 12px auto 0;
  width: calc(100% - 48px);
  max-width: 1240px;
  padding-inline: 25px;
  border: 1px solid #dedcd4b3;
  border-radius: 16px;
  background: #f8f6f1ed;
  backdrop-filter: blur(18px);
  box-shadow: 0 4px 18px #29292304;
}
.header-link {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.hero {
  padding-top: 76px;
}
.hero-preview {
  position: relative;
}
.hero-preview:before {
  content: "";
  position: absolute;
  inset: -25px -30px 35px;
  background: radial-gradient(ellipse at center, #e0c5af75, transparent 69%);
  z-index: -1;
}
.scene-section {
  padding-block: 72px 10px;
}
.scene-intro {
  text-align: center;
}
.scene-intro h2 {
  font-size: 38px;
  letter-spacing: -1.5px;
}
.scene-intro > p:last-child {
  color: var(--muted);
  font-size: 13px;
  margin-top: 15px;
}
.scene-choices {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 32px;
}
.scene-choices button {
  text-align: left;
  display: flex;
  align-items: center;
  gap: 14px;
  min-height: 104px;
  padding: 20px;
  border: 1px solid var(--line);
  background: transparent;
  color: var(--ink);
  border-radius: 12px;
  transition:
    background 0.2s,
    border-color 0.2s,
    transform 0.2s;
}
.scene-choices button:hover {
  transform: translateY(-4px);
  background: #fffaf1;
}
.scene-choices button[aria-pressed="true"] {
  border-color: var(--accent);
  background: #f5e9df;
}
.scene-icon {
  font-size: 27px;
  color: var(--accent);
}
.scene-choices strong {
  display: block;
  font-size: 13px;
}
.scene-choices small {
  display: block;
  font-size: 10px;
  color: var(--muted);
  margin-top: 7px;
}
.scene-arrow {
  margin-left: auto;
  color: var(--muted);
}
.sample-caption {
  font-size: 11px;
  color: var(--muted);
  text-align: center;
  margin-top: 17px;
  line-height: 1.6;
}
.hero-preview[data-scene="design"] .orange {
  background: #5f6c49;
}
.hero-preview[data-scene="design"] .lavender {
  background: #e2cdac;
  color: #5a4831;
}
.hero-preview[data-scene="lesson"] .orange {
  background: #6d77a1;
}
.hero-preview[data-scene="lesson"] .lavender {
  background: #e5c66b;
  color: #594222;
}
.hero-preview[data-scene="design"] .ribbon-art {
  filter: hue-rotate(35deg) saturate(0.7);
}
.hero-preview[data-scene="lesson"] .ribbon-art {
  filter: hue-rotate(290deg) saturate(0.6);
}
.chapter-nav {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
  border-block: 1px solid var(--line);
  padding: 24px 0;
}
.chapter-nav a {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 14px;
}
.chapter-nav span {
  font-size: 10px;
  color: var(--accent);
}
.chapter-nav b {
  margin-left: auto;
  font-weight: 400;
}
.chapter-nav a:hover {
  color: var(--accent);
}
.feature-chapter {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 60px;
  padding-block: 25px 112px;
  align-items: center;
}
.chapter-copy h2 {
  font-size: clamp(42px, 4.7vw, 65px);
}
.chapter-copy h2 em {
  color: var(--accent);
}
.chapter-copy > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 14px;
  margin-top: 25px;
  max-width: 340px;
}
.stage-label {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 10px;
  border: 1px solid var(--line);
  padding: 7px 10px;
  border-radius: 5px;
  margin-top: 23px;
}
.stage-label i {
  width: 5px;
  height: 5px;
  background: #637650;
  border-radius: 50%;
}
.capture-demo {
  border: 1px solid #d8d4c9;
  background: #efede5;
  border-radius: 15px;
  overflow: hidden;
  padding: 18px;
}
.demo-overline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  font-size: 8px;
  letter-spacing: 0.7px;
  margin-bottom: 16px;
  color: var(--muted);
}
.desktop-scene {
  height: 320px;
  position: relative;
  overflow: hidden;
  background: #c9cbbb;
  border-radius: 7px;
  isolation: isolate;
}
.desktop-menubar {
  font-size: 9px;
  padding: 7px 12px;
  background: #fff4;
  display: flex;
  justify-content: space-between;
  font-weight: 600;
}
.desktop-orbit {
  position: absolute;
  width: 320px;
  height: 320px;
  bottom: -165px;
  right: -80px;
  border: 55px solid #9ba48a;
  border-radius: 50%;
  z-index: -1;
}
.desktop-note {
  position: absolute;
  inset: 65px 55px 63px;
  background: #fffdf2;
  box-shadow: 0 15px 30px #38483024;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 27px;
  font-size: 30px;
  font-weight: 600;
  line-height: 1.07;
  letter-spacing: -1.4px;
  transform: rotate(-3deg);
}
.desktop-note em {
  font-size: 1.4em;
  color: #6e7b51;
}
.desktop-note > span {
  font-size: 5px;
  letter-spacing: 1px;
  margin-top: 20px;
}
.selection-frame {
  position: absolute;
  inset: 51px 42px 50px;
  border: 1px solid var(--accent);
  transition: inset 0.45s cubic-bezier(0.22, 1, 0.36, 1);
  box-shadow: 0 0 0 400px #29292310;
  pointer-events: none;
}
.selection-frame > i {
  position: absolute;
  width: 6px;
  height: 6px;
  background: var(--paper);
  border: 1px solid var(--accent);
}
.selection-frame > i:nth-child(1) {
  left: -3px;
  top: -3px;
}
.selection-frame > i:nth-child(2) {
  right: -3px;
  top: -3px;
}
.selection-frame > i:nth-child(3) {
  left: -3px;
  bottom: -3px;
}
.selection-frame > i:nth-child(4) {
  right: -3px;
  bottom: -3px;
}
.selection-frame > span {
  position: absolute;
  left: 50%;
  bottom: -12px;
  transform: translateX(-50%);
  font-size: 8px;
  letter-spacing: 0.1px;
  background: var(--accent);
  padding: 5px 9px;
  white-space: nowrap;
  color: white;
  border-radius: 4px;
}
.capture-demo[data-source="display"] .selection-frame {
  inset: 30px 8px 12px;
}
.capture-demo[data-source="region"] .selection-frame {
  inset: 103px 85px 86px;
}
.mini-dock {
  position: absolute;
  bottom: 8px;
  left: 50%;
  transform: translateX(-50%);
  padding: 4px 5px;
  border: 1px solid #fff8;
  border-radius: 8px;
  display: flex;
  gap: 4px;
  background: #fff5;
}
.mini-dock i {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 5px;
  background: #faf6e5;
  font-style: normal;
  color: #667455;
  font-size: 12px;
}
.source-controls {
  border: 0;
  padding: 0;
  margin: 19px 0 0;
}
.source-controls legend {
  font-size: 10px;
  margin-bottom: 10px;
  color: var(--muted);
}
.source-controls .segments {
  display: flex;
  width: 100%;
}
.source-controls button {
  flex: 1;
  min-height: 40px;
  font-size: 12px;
}
.audio-controls {
  display: flex;
  gap: 20px;
  margin-top: 18px;
}
.audio-controls button {
  background: none;
  border: 0;
  padding: 5px 0;
  color: var(--ink);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  flex: 1;
  font-size: 10px;
}
.audio-controls i {
  width: 26px;
  height: 16px;
  border-radius: 20px;
  background: #b8b6ac;
  position: relative;
  flex-shrink: 0;
  transition: background 0.2s;
}
.audio-controls i:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  height: 10px;
  width: 10px;
  border-radius: 50%;
  background: white;
  transition: transform 0.2s;
}
.audio-controls [aria-checked="true"] i {
  background: #667950;
}
.audio-controls [aria-checked="true"] i:after {
  transform: translateX(10px);
}
.capture-demo .sample-caption {
  font-size: 9px;
}
.detail-row {
  grid-column: 1/-1;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 45px;
  padding-top: 15px;
}
.detail-row article > span {
  color: var(--accent);
  font-size: 25px;
}
.detail-row h3 {
  font-size: 17px;
  margin-top: 15px;
  letter-spacing: -0.5px;
}
.detail-row p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 10px;
}
.edit-section {
  background: #252722;
  color: #f5f1e5;
  padding-block: 90px 75px;
  overflow: hidden;
}
.edit-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 45px;
}
.edit-heading h2 {
  font-size: 76px;
  letter-spacing: -3px;
}
.edit-heading h2 em {
  color: #e9a17b;
}
.edit-heading > div > p:not(.eyebrow) {
  max-width: 390px;
  font-size: 14px;
  color: #c4c5b8;
}
.edit-heading .stage-label {
  border-color: #515447;
  color: #d6d7c8;
}
.edit-demo {
  background: #30332b;
  border: 1px solid #55594b;
  border-radius: 13px;
  padding: 20px;
  box-shadow: 0 25px 50px #0002;
}
.edit-demo .demo-overline {
  color: #b7baab;
}
.cut-stage {
  height: 330px;
  padding: 34px 45px;
  background: #d6dec3;
  color: #35402c;
  position: relative;
  overflow: hidden;
  border-radius: 5px;
}
.take-number {
  font-size: 8px;
  letter-spacing: 1.5px;
}
.cut-stage h3 {
  font-size: 50px;
  line-height: 1.12;
  font-weight: 600;
  letter-spacing: -2px;
  position: relative;
  z-index: 1;
  margin-top: 40px;
}
.cut-stage h3 em {
  font-size: 1.25em;
}
.cut-stage:after {
  content: "";
  position: absolute;
  width: 390px;
  height: 390px;
  border: 70px solid #b8c59f;
  right: -65px;
  top: -55px;
  border-radius: 50%;
}
.cut-stamp {
  position: absolute;
  right: 80px;
  top: 120px;
  font-size: 14px;
  line-height: 1.1;
  letter-spacing: -0.5px;
  transform: rotate(12deg);
  z-index: 1;
}
.edit-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-block: 22px 18px;
  gap: 12px;
}
.edit-tools {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.edit-tools button {
  background: #454a3d;
  border: 1px solid #606553;
  color: #f4f0e3;
  border-radius: 6px;
  font-size: 11px;
  min-height: 35px;
  padding: 8px 13px;
  transition: background 0.2s;
}
.edit-tools button:hover {
  background: #596048;
}
.edit-tools button:disabled {
  opacity: 0.35;
}
#trim-demo {
  background: #e9a17b;
  border-color: #e9a17b;
  color: #392f24;
}
#edit-duration {
  font-variant-numeric: tabular-nums;
  font-size: 14px;
  white-space: nowrap;
}
.cut-ruler {
  display: flex;
  justify-content: space-between;
  font-size: 8px;
  color: #b1b5a4;
  margin-bottom: 12px;
  font-variant-numeric: tabular-nums;
}
.cut-track {
  display: flex;
  height: 65px;
  gap: 4px;
}
.pause-segment {
  width: 25%;
  display: grid;
  place-items: center;
  border-radius: 4px;
  background: repeating-linear-gradient(125deg, #696955 0 6px, #737260 6px 7px);
  font-size: 10px;
  transition:
    width 0.4s,
    opacity 0.3s;
  white-space: nowrap;
  overflow: hidden;
}
.keep-segment {
  flex: 1;
  display: flex;
  justify-content: space-around;
  align-items: center;
  border-radius: 4px;
  border: 1px solid #b7c59b;
  background: repeating-linear-gradient(
    90deg,
    #8b9e70 0 55px,
    #94a779 55px 110px
  );
  color: #253120;
  font-size: 10px;
}
.keep-segment span {
  padding: 5px;
  background: #e7eddbb3;
  border-radius: 3px;
}
.edit-demo.is-trimmed .pause-segment {
  width: 0;
  opacity: 0;
}
.cut-wave {
  height: 22px;
  background: repeating-linear-gradient(
    90deg,
    transparent 0 3px,
    #adb993 3px 5px
  );
  margin-top: 7px;
  opacity: 0.5;
  clip-path: polygon(
    0 40%,
    3% 25%,
    6% 40%,
    9% 20%,
    13% 30%,
    17% 0,
    24% 30%,
    30% 10%,
    36% 25%,
    40% 0,
    46% 20%,
    50% 40%,
    55% 20%,
    60% 10%,
    67% 30%,
    73% 0,
    80% 30%,
    87% 10%,
    92% 30%,
    100% 40%,
    100% 60%,
    92% 70%,
    87% 90%,
    80% 70%,
    73% 100%,
    67% 70%,
    60% 90%,
    55% 80%,
    50% 60%,
    46% 80%,
    40% 100%,
    36% 75%,
    30% 90%,
    24% 70%,
    17% 100%,
    13% 70%,
    9% 80%,
    6% 60%,
    3% 75%,
    0 60%
  );
}
.edit-demo .sample-caption {
  color: #c0c5b2;
}
.edit-promises {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-top: 40px;
}
.edit-promises span {
  font-size: 9px;
  color: #b8c79e;
}
.edit-promises h3 {
  font-size: 17px;
  letter-spacing: -0.4px;
  margin-top: 8px;
}
.edit-promises p {
  color: #b9bfac;
  font-size: 12px;
  margin-top: 9px;
}
.edit-disclaimer {
  font-size: 10px;
  color: #aeb59f;
  text-align: center;
  margin-top: 38px;
}
.canvas-section {
  padding-block: 110px;
}
.progress-section {
  padding-block: 80px 100px;
  border-top: 1px solid var(--line);
}
.progress-heading {
  text-align: center;
}
.progress-heading > p:last-child {
  font-size: 13px;
  color: var(--muted);
  margin-top: 24px;
}
.roadmap-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 45px;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
}
.roadmap-grid article {
  padding: 32px 27px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border-left: 1px solid var(--line);
}
.roadmap-grid article:first-child {
  border-left: 0;
}
.roadmap-grid .current {
  background: #eeeee2;
}
.roadmap-state {
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 0.8px;
  color: var(--muted);
}
.current .roadmap-state {
  color: #4d6240;
}
.roadmap-grid h3 {
  font-size: 22px;
  letter-spacing: -1px;
  margin-top: 30px;
}
.roadmap-grid p {
  font-size: 12px;
  color: var(--muted);
  margin-top: 15px;
  flex: 1;
}
.roadmap-foot {
  font-size: 9px;
  margin-top: 35px;
  border-top: 1px solid var(--line);
  padding-top: 15px;
  width: 100%;
  color: var(--muted);
}
.contact-fallback {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: center;
  margin-top: 18px;
  flex-wrap: wrap;
  font-size: 11px;
  color: #62564b;
}
.contact-fallback button {
  background: #faf6ed9c;
  color: inherit;
  border: 1px solid #bdb2a3;
  border-radius: 5px;
  padding: 5px 8px;
  font-size: 10px;
}
.contact-fallback #copy-status {
  flex-basis: 100%;
  min-height: 16px;
}
@media (min-width: 1000px) {
  .hero h1 {
    font-size: 108px;
  }
  .hero-description {
    font-size: 16px;
  }
  .hero-preview {
    margin-top: 64px;
  }
  .scene-section {
    padding-top: 90px;
  }
}
@media (max-width: 900px) {
  .scene-choices button {
    padding: 16px 12px;
    gap: 9px;
  }
  .scene-choices strong {
    font-size: 11px;
  }
  .scene-choices small {
    font-size: 9px;
  }
  .scene-arrow {
    display: none;
  }
  .feature-chapter {
    gap: 35px;
  }
  .desktop-note {
    inset: 65px 35px;
    font-size: 25px;
  }
  .selection-frame {
    inset: 51px 22px 50px;
  }
  .capture-demo[data-source="region"] .selection-frame {
    inset: 95px 55px 90px;
  }
  .edit-heading {
    gap: 35px;
  }
  .edit-heading h2 {
    font-size: 62px;
  }
  .cut-stamp {
    right: 35px;
  }
  .roadmap-grid article {
    padding: 25px 20px;
  }
}
@media (max-width: 650px) {
  .site-header {
    top: 8px;
    width: calc(100% - 24px);
    height: 60px;
    margin-top: 8px;
    padding-inline: 15px;
    border-radius: 12px;
    gap: 15px;
  }
  .site-header .header-link {
    font-size: 10px;
    padding: 10px;
  }
  .hero {
    padding-top: 50px;
  }
  .hero h1 {
    font-size: 57px;
    letter-spacing: -3px;
  }
  .hero-description {
    font-size: 13px;
  }
  .hero-preview {
    margin-top: 38px;
  }
  .hero-preview:before {
    inset: 0;
  }
  .scene-section {
    padding-top: 45px;
  }
  .scene-intro h2 {
    font-size: 32px;
  }
  .scene-intro > p:last-child {
    font-size: 11px;
  }
  .scene-choices {
    grid-template-columns: 1fr;
    gap: 8px;
    margin-top: 23px;
  }
  .scene-choices button {
    min-height: 76px;
    padding: 15px 18px;
    gap: 17px;
  }
  .scene-choices strong {
    font-size: 12px;
  }
  .scene-choices small {
    font-size: 10px;
    margin-top: 4px;
  }
  .scene-arrow {
    display: block;
  }
  .scene-icon {
    width: 27px;
  }
  .experience {
    padding-block: 70px 35px;
  }
  .chapter-nav {
    gap: 10px;
    padding-block: 18px;
    margin-top: 30px;
  }
  .chapter-nav a {
    font-size: 10px;
    gap: 7px;
  }
  .chapter-nav span {
    font-size: 8px;
  }
  .chapter-nav b {
    display: none;
  }
  .feature-chapter {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 25px 60px;
  }
  .chapter-copy h2 {
    font-size: 48px;
  }
  .chapter-copy > p:not(.eyebrow) {
    font-size: 13px;
    max-width: 100%;
  }
  .desktop-note {
    font-size: 30px;
    inset: 65px 45px;
  }
  .selection-frame {
    inset: 51px 32px 50px;
  }
  .detail-row {
    grid-template-columns: 1fr;
    gap: 25px;
    padding-top: 0;
  }
  .detail-row article {
    display: grid;
    grid-template-columns: 32px 1fr;
    column-gap: 15px;
  }
  .detail-row article > span {
    grid-row: 1/3;
  }
  .detail-row h3 {
    margin: 0;
  }
  .detail-row p {
    grid-column: 2;
    margin-top: 7px;
  }
  .edit-section {
    padding-block: 60px 45px;
  }
  .edit-heading {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-bottom: 30px;
  }
  .edit-heading h2 {
    font-size: 58px;
  }
  .edit-heading > div > p:not(.eyebrow) {
    font-size: 13px;
  }
  .edit-demo {
    padding: 12px;
  }
  .demo-overline {
    font-size: 6px;
    letter-spacing: 0.3px;
    gap: 10px;
  }
  .cut-stage {
    height: 260px;
    padding: 24px;
  }
  .cut-stage h3 {
    font-size: 33px;
    letter-spacing: -1.4px;
    margin-top: 47px;
  }
  .cut-stage:after {
    width: 250px;
    height: 250px;
    border-width: 45px;
    right: -120px;
    top: -45px;
  }
  .cut-stamp {
    font-size: 8px;
    right: 15px;
    top: 30px;
    line-height: 1.3;
  }
  .take-number {
    font-size: 6px;
  }
  .edit-toolbar {
    align-items: flex-end;
  }
  .edit-tools {
    gap: 6px;
  }
  .edit-tools button {
    padding: 7px 9px;
    font-size: 9px;
  }
  .edit-tools #undo-demo {
    min-width: 60px;
  }
  #edit-duration {
    font-size: 11px;
  }
  .cut-track {
    height: 50px;
  }
  .pause-segment {
    font-size: 7px;
  }
  .keep-segment {
    font-size: 7px;
    gap: 3px;
    padding: 3px;
  }
  .keep-segment span {
    padding: 3px;
  }
  .keep-segment span:first-child {
    display: none;
  }
  .edit-promises {
    grid-template-columns: 1fr;
    gap: 25px;
    margin-top: 30px;
  }
  .edit-promises > div {
    display: grid;
    grid-template-columns: 25px 1fr;
    gap: 5px 10px;
  }
  .edit-promises span {
    grid-row: 1/3;
    margin-top: 5px;
  }
  .edit-promises h3 {
    margin: 0;
  }
  .edit-promises p {
    grid-column: 2;
    margin: 0;
  }
  .edit-disclaimer {
    font-size: 9px;
    margin-top: 30px;
  }
  .canvas-section {
    padding-block: 65px;
  }
  .progress-section {
    padding-block: 55px 65px;
  }
  .progress-heading > p:last-child {
    font-size: 12px;
  }
  .roadmap-grid {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }
  .roadmap-grid article {
    border-left: 0;
    border-top: 1px solid var(--line);
    padding: 25px;
  }
  .roadmap-grid article:first-child {
    border-top: 0;
  }
  .roadmap-grid h3 {
    margin-top: 20px;
  }
  .roadmap-foot {
    margin-top: 22px;
  }
  .sample-caption {
    font-size: 10px;
  }
  .stage-label {
    font-size: 9px;
  }
  .contact-fallback {
    font-size: 10px;
  }
}
@media (max-width: 380px) {
  .hero h1 {
    font-size: 46px;
  }
  .header-link span {
    margin-left: 5px;
  }
  .desktop-note {
    inset: 65px 27px;
    font-size: 27px;
  }
  .desktop-scene {
    height: 280px;
  }
  .selection-frame {
    inset: 51px 16px 50px;
  }
  .capture-demo[data-source="region"] .selection-frame {
    inset: 90px 40px 75px;
  }
  .audio-controls {
    gap: 12px;
  }
  .audio-controls button {
    font-size: 9px;
  }
  .cut-stage {
    padding: 18px;
  }
  .cut-stage h3 {
    font-size: 28px;
  }
  .cut-stamp {
    right: 12px;
    top: 45px;
  }
  .scene-intro h2 {
    font-size: 29px;
  }
  .chapter-nav a {
    font-size: 9px;
  }
}
/* Small, connected reactions rather than independent decorative motion. */
.hero {
  padding-top: 48px;
}
.hero-preview {
  margin-top: 42px;
}
@media (min-width: 1000px) {
  .hero h1 {
    font-size: 96px;
  }
  .hero-description {
    font-size: 15px;
  }
}
button:not(:disabled):active,
.button:active {
  transform: scale(0.97);
}
button {
  touch-action: manipulation;
}
.hero-actions .primary {
  background: var(--accent);
  box-shadow:
    0 4px 10px #a2342426,
    inset 0 1px 0 #fff3;
}
.hero-actions .primary:hover {
  background: #ad361f;
}
.scene-choices button,
.source-controls button,
.segments button,
.swatches button {
  transition:
    transform 0.25s cubic-bezier(0.2, 0.8, 0.2, 1),
    background 0.25s,
    border-color 0.25s,
    box-shadow 0.25s;
}
.scene-choices button[aria-pressed="true"] .scene-icon {
  transform: rotate(-8deg);
  transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.source-controls button[aria-pressed="true"] {
  box-shadow:
    0 3px 7px #24252220,
    inset 0 1px 0 #fff2;
}
.edit-feedback {
  position: absolute;
  right: 25px;
  bottom: 23px;
  border: 1px solid #809461;
  background: #f6f8e9;
  color: #485e35;
  border-radius: 30px;
  padding: 9px 15px;
  font-size: 10px;
  z-index: 2;
  opacity: 0;
  transform: translateY(15px) rotate(-5deg);
  transition:
    opacity 0.3s,
    transform 0.5s cubic-bezier(0.2, 1.6, 0.4, 1);
}
.is-trimmed .edit-feedback {
  opacity: 1;
  transform: translateY(0) rotate(-5deg);
}
#cut-word {
  position: relative;
  color: #536443;
  transition: opacity 0.3s;
}
#cut-word:after {
  content: "";
  position: absolute;
  top: 54%;
  left: -3%;
  width: 106%;
  height: 3px;
  background: #536443;
  transform: scaleX(0) rotate(-5deg);
  transform-origin: left;
  transition: transform 0.45s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.is-trimmed #cut-word:after {
  transform: scaleX(1) rotate(-5deg);
}
.is-trimmed #cut-word {
  opacity: 0.5;
}
.canvas-extras {
  margin-top: 20px;
  max-width: 260px;
}
.canvas-extras label {
  display: flex;
  justify-content: space-between;
  font-size: 11px;
  align-items: center;
  margin-bottom: 8px;
}
.canvas-extras output {
  font-size: 10px;
  color: var(--muted);
}
.canvas-extras input {
  width: 100%;
  accent-color: var(--accent);
}
#shadow-toggle {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-block: 1px solid var(--line);
  padding: 12px 0;
  font-size: 11px;
  margin-top: 14px;
}
#shadow-toggle span {
  display: grid;
  place-items: center;
  width: 18px;
  height: 18px;
  background: var(--ink);
  color: var(--paper);
  border-radius: 4px;
}
#shadow-toggle[aria-checked="false"] span {
  background: #d2cfc4;
  color: var(--ink);
}
.canvas-actions {
  display: flex;
  gap: 15px;
  align-items: center;
  margin-top: 21px;
}
.canvas-actions button {
  border: 1px solid #c9c3b6;
  border-radius: 6px;
  min-height: 38px;
  padding: 9px 14px;
  font-size: 11px;
  color: var(--ink);
  background: #faf7ee;
  transition:
    transform 0.2s,
    background 0.2s;
}
.canvas-actions button:hover {
  background: #e8dfce;
}
.canvas-actions #reset-style {
  border: 0;
  background: transparent;
  padding-inline: 0;
  color: var(--muted);
}
#style-status {
  min-height: 36px;
  font-size: 10px;
  color: var(--muted);
  margin-top: 12px;
}
.canvas-project {
  border-radius: var(--corner, 8px);
  transition:
    width 0.4s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-radius 0.35s,
    box-shadow 0.35s;
}
.interactive-canvas.without-shadow .canvas-project {
  box-shadow: none;
}
.arriving {
  animation: arrive 0.65s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}
@keyframes arrive {
  from {
    opacity: 0.25;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (max-width: 650px) {
  .hero {
    padding-top: 42px;
  }
  .hero-preview {
    margin-top: 35px;
  }
  .canvas-extras {
    max-width: none;
  }
  .edit-feedback {
    font-size: 8px;
    right: 15px;
    bottom: 17px;
    padding: 7px 10px;
  }
}
@media (prefers-reduced-motion: reduce) {
  .arriving {
    animation: none !important;
  }
}
/* Keep the live result adjacent to its controls, including on small screens. */
.canvas-layout {
  column-gap: 65px;
  row-gap: 0;
}
.canvas-copy {
  grid-column: 1;
  grid-row: 1;
  align-self: end;
}
.canvas-settings {
  grid-column: 1;
  grid-row: 2;
  align-self: start;
}
.canvas-display {
  grid-column: 2;
  grid-row: 1 / 3;
}
@media (max-width: 650px) {
  .canvas-layout {
    row-gap: 24px;
    column-gap: 0;
  }
  .canvas-copy {
    grid-column: 1;
    grid-row: 1;
  }
  .canvas-display {
    grid-column: 1;
    grid-row: 2;
    min-height: 340px;
    justify-content: center;
  }
  .canvas-settings {
    grid-column: 1;
    grid-row: 3;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px 10px;
  }
  .canvas-settings .appearance-controls,
  .canvas-settings .ratio-controls {
    margin: 0;
  }
  .canvas-settings .segments button {
    min-width: 0;
    padding-inline: 12px;
  }
  .canvas-settings .inset-label {
    grid-column: 1/-1;
    max-width: none;
    margin: 8px 0 -8px;
  }
  .canvas-settings #inset {
    grid-column: 1/-1;
    width: 100%;
  }
  .canvas-settings .canvas-extras {
    grid-column: 1/-1;
    margin: 0;
  }
  .canvas-extras input {
    width: 100%;
  }
  .canvas-settings .canvas-actions {
    grid-column: 1/-1;
    margin: 0;
  }
  .canvas-settings #style-status {
    grid-column: 1/-1;
    margin: -6px 0 0;
    min-height: 0;
  }
  .canvas-display .interactive-canvas[data-ratio="tall"] {
    width: 168px;
  }
  .canvas-display .interactive-canvas[data-ratio="square"] {
    width: 280px;
    max-width: 100%;
  }
  .canvas-display > p {
    margin-top: 17px;
  }
}

/* Scale the entire sample with its frame, so maximum inset never crops the UI. */
.canvas-project {container-type:inline-size;aspect-ratio:16 / 9}
.canvas-project .mini-browser {height:5cqw;padding:0 3cqw;gap:1cqw}
.canvas-project .mini-browser i {width:1cqw;height:1cqw}
.canvas-project .mini-browser span {font-size:1.7cqw}
.canvas-project .canvas-poster {padding:4cqw 5cqw}
.canvas-project .canvas-poster>span:first-child {font-size:1.45cqw;letter-spacing:.25cqw}
.canvas-project .canvas-poster h3 {font-size:9.7cqw;letter-spacing:-.45cqw;margin:3cqw 0 5cqw;line-height:1.05}
.canvas-project .poster-foot {font-size:1.6cqw}
.canvas-project .poster-foot b {font-size:3cqw}
.canvas-project .poster-orb {width:36cqw;height:36cqw;border-width:7cqw;right:-6cqw;top:9cqw}
.interactive-canvas[data-ratio=square] .canvas-project {aspect-ratio:1}
.interactive-canvas[data-ratio=square] .canvas-poster {padding:10cqw 6cqw}
.interactive-canvas[data-ratio=square] .canvas-poster h3 {font-size:12cqw;margin:8cqw 0 14cqw}
.interactive-canvas[data-ratio=tall] .canvas-project {aspect-ratio:9 / 14}
.interactive-canvas[data-ratio=tall] .canvas-poster {padding:14cqw 8cqw}
.interactive-canvas[data-ratio=tall] .canvas-poster h3 {font-size:16cqw;letter-spacing:-.7cqw;margin:12cqw 0 24cqw}
.interactive-canvas[data-ratio=tall] .poster-orb {width:65cqw;height:65cqw;border-width:12cqw;top:35cqw;right:-30cqw}
