* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 2rem;
}
body {
  margin: 0;
  overflow-x: hidden;
  background: var(--page);
  color: var(--text);
  font: var(--type-body) / var(--leading-body) var(--font);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p,
figure,
blockquote {
  margin: 0;
}
h1,
h2,
h3 {
  text-wrap: balance;
}
h1 {
  font-size: clamp(2.75rem, 6.2vw, 5rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
  font-weight: 680;
}
h2 {
  font-size: clamp(2.1rem, 4.5vw, 3.5rem);
  line-height: var(--leading-tight);
  letter-spacing: -0.035em;
  font-weight: 650;
}
h3 {
  font-size: 1.12rem;
  line-height: 1.25;
  letter-spacing: -0.02em;
}
a {
  color: inherit;
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
  text-underline-offset: 0.3em;
}
button {
  font: inherit;
  color: inherit;
  border: 0;
  cursor: pointer;
  touch-action: manipulation;
}
button:disabled {
  cursor: default;
}
a,
summary {
  touch-action: manipulation;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible {
  outline: 0.15rem solid var(--accent);
  outline-offset: 0.25rem;
}
.shell {
  width: min(100%, calc(var(--container) + var(--gutter) * 2));
  margin-inline: auto;
  padding-inline: var(--gutter);
}
.icon {
  width: 1.1rem;
  height: 1.1rem;
  display: block;
}
.skip {
  position: fixed;
  z-index: 100;
  top: -6rem;
  left: 1rem;
  background: var(--paper-up);
  color: var(--paper-text);
  padding: 0.65rem 1rem;
  border-radius: var(--r-sm);
}
.skip:focus {
  top: 1rem;
}
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.site-header {
  height: 6rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 1.6rem;
  font-weight: 750;
  letter-spacing: -0.04em;
}
.brand img {
  border-radius: 0.6rem;
}
.site-header nav {
  display: flex;
  align-items: center;
  gap: 2rem;
  font-size: var(--type-small);
}
.theme-button {
  display: grid;
  place-items: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 50%;
  background: transparent;
}
.theme-button:hover {
  background: var(--surface);
}
.theme-button .icon {
  filter: invert(1);
}
:root[data-theme="light"] .theme-button .icon {
  filter: none;
}
.hero {
  padding-top: clamp(2.5rem, 5vw, 4.5rem);
  padding-bottom: var(--section);
}
.hero-copy {
  text-align: center;
  max-width: 58rem;
  margin-inline: auto;
}
.hero-copy h1 span,
.story h2 span,
.faq h2 span {
  color: var(--accent);
}
.hero-copy > p {
  max-width: 44rem;
  margin: 1.25rem auto 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  line-height: 1.55;
}
.download-block {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 1.35rem;
  min-height: 0;
}
.download-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  min-width: 0;
  min-height: 3rem;
  padding: 0.8rem 1.35rem;
  background: var(--text);
  color: var(--page);
  border-radius: var(--r-sm);
  font-weight: 700;
  box-shadow: 0 0.45rem 1.4rem rgb(0 0 0/0.12);
  transition:
    transform var(--fast) var(--ease),
    opacity var(--fast);
}
.download-button:hover {
  transform: translateY(-0.12rem);
  text-decoration: none;
}
.download-button:disabled {
  opacity: 0.62;
  transform: none;
}
.download-button .icon {
  filter: var(--download-filter, none);
}
.availability {
  margin-top: 0.65rem;
  color: var(--subtle);
  font-size: var(--type-caption);
}
.download-status {
  margin-top: 0.5rem;
  color: var(--muted);
  font-size: 0.8rem;
  line-height: 1.35;
}
.product-film {
  position: relative;
  margin-top: 2.5rem;
}
.desktop-edge {
  position: absolute;
  top: 3.5rem;
  bottom: 5.5rem;
  width: 4.25rem;
  border-radius: var(--r-lg);
  overflow: hidden;
  opacity: 0.62;
  box-shadow: var(--shadow-window);
}
.desktop-edge img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.7) brightness(0.68);
}
.edge-left {
  right: calc(100% - 1rem);
}
.edge-right {
  left: calc(100% - 1rem);
}
.section-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.section-intro > p {
  max-width: min(47rem, var(--measure));
  margin-top: 0;
  color: var(--muted);
  font-size: 1.05rem;
}
.workflow {
  padding-bottom: var(--section);
}
.workflow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin-top: 3.5rem;
}
.workflow-step {
  min-width: 0;
  display: grid;
  grid-template-rows: 1fr auto;
}
.step-copy {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: 2.65rem 1fr;
  align-content: start;
  position: relative;
  gap: 1rem;
  align-items: start;
}
.step-number {
  display: grid;
  place-items: center;
  width: 2.65rem;
  height: 2.65rem;
  border-radius: 50%;
  background: var(--accent);
  color: #211d1d;
  font-weight: 750;
}
.step-copy p {
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}
.step-art {
  height: 18rem;
  margin-top: 2rem;
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--surface);
}
.input-art {
  display: grid;
  place-items: center;
}
.mini-editor {
  position: absolute;
  inset: 2rem 1.35rem 5.5rem;
  padding: 1.35rem;
  background: var(--raised);
  border-radius: 0.8rem;
  color: var(--muted);
  font-size: 0.86rem;
}
.mini-editor i {
  display: block;
  width: 1px;
  height: 1rem;
  background: var(--accent);
  margin-top: 0.35rem;
}
.mini-voice {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  width: 14rem;
  height: 2.6rem;
  padding: 0 0.8rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
  background: var(--paper-up);
  border-radius: 2rem;
  box-shadow: var(--shadow-control);
}
.mini-voice img {
  width: 0.8rem;
  height: 0.8rem;
}
.mini-wave {
  height: 1.25rem;
  flex: 1;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='120' height='20' viewBox='0 0 120 20'%3E%3Cpath d='M1 10c12 0 12-7 24-7s12 14 24 14 12-11 24-11 12 8 24 8 12-4 22-4' fill='none' stroke='%23ff725d' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E")
    center/100% 100% no-repeat;
}
.alternative-label {
  position: absolute;
  bottom: 4.8rem;
  color: var(--subtle);
  font-size: 0.7rem;
}
.references-art {
  padding: 1.4rem;
}
.mini-source {
  height: 8.8rem;
  position: relative;
  overflow: hidden;
  border-radius: 0.65rem;
}
.mini-source img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.references-art blockquote {
  position: absolute;
  left: 2.5rem;
  right: 1rem;
  bottom: 2rem;
  padding: 0.9rem 1rem;
  background: var(--raised);
  border-radius: 0.7rem;
  color: var(--muted);
  font-size: 0.78rem;
}
.reference-link {
  position: absolute;
  left: 1rem;
  bottom: 4.1rem;
  width: 2.6rem;
  height: 2.6rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.25rem;
  background: var(--paper-up);
  color: var(--paper-text);
  border-radius: 2rem;
  box-shadow: var(--shadow-control);
  font-size: 0.72rem;
}
.reference-link img {
  width: 0.8rem;
}
.delivery-art {
  padding: 1.25rem;
  display: grid;
  place-items: center;
}
.mini-composer {
  position: relative;
  width: 100%;
  height: 100%;
  padding: 1rem;
  background: var(--raised);
  border-radius: 0.85rem;
  font-size: 0.72rem;
  line-height: 1.45;
}
.mini-shot {
  position: relative;
  width: 5.5rem;
  height: 3.1rem;
  border-radius: 0.35rem;
  overflow: hidden;
  margin-bottom: 0.65rem;
}
.mini-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.mini-shot span {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  padding: 0.18rem 0.25rem;
  background: linear-gradient(transparent, #000a);
  color: white;
  font:
    0.3rem Georgia,
    serif;
}
.mini-composer p {
  color: var(--text);
}
.mini-composer small {
  display: block;
  margin: 0.35rem 0;
  color: var(--subtle);
}
.mini-composer blockquote {
  color: var(--muted);
}
.mini-composer i {
  position: absolute;
  right: 0.8rem;
  bottom: 0.8rem;
  display: grid;
  place-items: center;
  width: 1.7rem;
  height: 1.7rem;
  border-radius: 50%;
  background: var(--text);
  color: var(--page);
  font-style: normal;
}
.mini-composer i img,
.composer-tools img {
  width: 0.9rem;
  height: 0.9rem;
}
.uses-band {
  background: var(--paper);
  color: var(--paper-text);
}
.uses {
  padding-block: var(--section-small);
}
.uses h2 {
  max-width: 35rem;
}
.error-mark { display: grid; place-items: center; flex: 0 0 1.7rem; height: 1.7rem; border-radius: 50%; background: #ef6a55; color: white; font-weight: 800; }
.faq {
  display: grid;
  grid-template-columns: minmax(16rem, 0.72fr) minmax(0, 1fr);
  gap: clamp(4rem, 9vw, 8rem);
  padding-block: var(--section);
  border-bottom: 1px solid var(--line);
}
.faq h2 {
  max-width: 9ch;
}
.flow-diagram {
  height: 18rem;
  margin-top: 3rem;
  display: grid;
  grid-template-columns: 3.2rem 5.5rem 1fr;
  align-items: center;
}
.flow-source {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}
.flow-source > span {
  display: grid;
  place-items: center;
  width: 3.2rem;
  height: 3.2rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--surface);
}
.flow-source img,
.flow-source svg {
  width: 1.2rem;
  height: 1.2rem;
}
.flow-source img {
  filter: invert(1);
}
:root[data-theme="light"] .flow-source img {
  filter: none;
}
.flow-source svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
}
.flow-source .quote-symbol {
  font-size: 1.7rem;
}
.flow-diagram > svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--subtle);
  stroke-width: 1.4;
  stroke-dasharray: 5 6;
}
.flow-prompt {
  height: 11rem;
  padding: 2rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 0.8rem;
  background: var(--surface);
}
.flow-prompt span {
  display: block;
  height: 0.42rem;
  margin-bottom: 0.75rem;
  border-radius: 1rem;
  background: var(--line);
}
.flow-prompt span:nth-child(2) {
  width: 80%;
}
.flow-prompt span:nth-child(3) {
  width: 62%;
}
.flow-prompt i {
  display: block;
  width: 3.2rem;
  height: 2rem;
  margin-top: 1.5rem;
  border-radius: 0.25rem;
  background: var(--raised);
}
.faq-list {
  border-top: 1px solid var(--line);
}
.faq details {
  border-bottom: 1px solid var(--line);
}
.faq summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  min-height: 4rem;
  font-size: 1.05rem;
  font-weight: 560;
}
.faq summary::-webkit-details-marker {
  display: none;
}
.faq details p {
  max-width: 60ch;
  padding: 0 2rem 1.2rem 0;
  color: var(--muted);
  font-size: 0.91rem;
}
.disclosure {
  font-size: 1.5rem;
  font-weight: 300;
  transition: transform var(--fast) var(--ease);
}
details[open] .disclosure {
  font-size: 0;
}
details[open] .disclosure::after {
  content: "−";
  font-size: 1.5rem;
}
.story {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(18rem, 0.7fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: center;
  padding-block: var(--section);
}
.story-label {
  margin-bottom: 1.4rem;
  color: var(--muted);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.story-copy h2 {
  max-width: 23ch;
  font-size: clamp(1.9rem, 3.1vw, 2.65rem);
}
.story-copy > p:not(.story-label):not(.founder-credit) {
  max-width: 39rem;
  margin-top: 1.55rem;
  color: var(--muted);
  font-size: 1.05rem;
}
.founder-credit {
  margin-top: 2rem;
  color: var(--subtle);
  font-size: 0.8rem;
}
.story-diagram {
  height: 24rem;
  position: relative;
}
.story-shot,
.story-quote,
.story-comment,
.story-output {
  position: absolute;
  z-index: 1;
  border: 1px solid var(--line);
  background: var(--surface);
  border-radius: 0.7rem;
  box-shadow: 0 0.65rem 1.8rem rgb(0 0 0/0.1);
}
.story-shot {
  left: 0;
  top: 0;
  width: 10.5rem;
  height: 7.2rem;
  padding: 0.65rem;
}
.story-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 0.35rem;
}
.story-quote {
  right: 0;
  top: 4.5rem;
  width: 10rem;
  padding: 1rem;
  color: var(--muted);
  font-size: 0.69rem;
}
.story-comment {
  left: 1.5rem;
  bottom: 5.2rem;
  width: 9.3rem;
  padding: 1rem;
  color: var(--muted);
  font-size: 0.69rem;
}
.story-diagram > svg {
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--subtle);
  stroke-width: 1.4;
  stroke-dasharray: 5 6;
}
.story-diagram .story-arrow {
  stroke: var(--accent);
  stroke-width: 2;
  stroke-dasharray: none;
}
.story-output {
  right: 0;
  bottom: 0;
  width: 11rem;
  height: 4.5rem;
  padding: 1.1rem;
}
.story-output span {
  display: block;
  height: 0.4rem;
  margin-bottom: 0.6rem;
  background: var(--line);
  border-radius: 1rem;
}
.story-output span:nth-child(2) {
  width: 65%;
}
.story-output i {
  position: absolute;
  right: 0.7rem;
  bottom: 0.7rem;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
  background: var(--accent);
}
.ending {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 4rem;
  border-top: 1px solid var(--line);
}
.ending-title {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.ending-title img {
  border-radius: 0.8rem;
}
.ending h2 {
  font-size: clamp(1.8rem, 3vw, 2.5rem);
}
.ending .download-block {
  align-items: flex-end;
  margin-top: 0;
}
.ending .download-button {
  min-width: 0;
}
footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--line);
  color: var(--subtle);
  font-size: 0.75rem;
}
.footer-maker { display: grid; gap: .4rem; }
.footer-maker > span:first-child { color: var(--muted); }
.local-trust { margin: .75rem 0 0; color: var(--muted); font-size: var(--type-small); line-height: 1.6; }
.local-trust a { text-decoration: underline; text-underline-offset: 3px; white-space: nowrap; }
#privacy-details { scroll-margin-top: 24px; }
@media (max-width: 80rem) {
  .desktop-edge {
    display: none;
  }
}
@media (max-width: 62rem) {
  .workflow-grid,
  .use-grid {
    gap: 1rem;
  }
  .step-art {
    height: 16rem;
  }
  .faq,
  .story {
    gap: 3rem;
  }
}
@media (max-width: 48rem) {
  .site-header {
    height: 5rem;
  }
  .workflow-grid,
  .use-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  .workflow-step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(15rem, 0.9fr);
    grid-template-rows: none;
    gap: 1.5rem;
    align-items: start;
  }
  .step-art {
    margin-top: 0;
  }
  .faq,
  .story {
    grid-template-columns: 1fr;
  }
  .faq h2 {
    max-width: 13ch;
  }
  .flow-diagram {
    max-width: 27rem;
  }
  .story-copy h2 {
    max-width: 16ch;
  }
  .story-diagram {
    max-width: 24rem;
    width: 100%;
    justify-self: center;
  }
  .ending {
    align-items: flex-start;
  }
  .ending .download-block {
    align-items: flex-end;
  }
}
@media (max-width: 40rem) {
  .site-header nav {
    gap: 0.8rem;
    font-size: 0.76rem;
  }
  .theme-button {
    width: 2.3rem;
    height: 2.3rem;
  }
  .hero {
    padding-top: 2rem;
  }
  .hero-copy > p {
    font-size: 1rem;
  }
  .download-button {
    min-width: 0;
  }
  .workflow-step {
    grid-template-columns: 1fr;
    gap: 0;
  }
  .step-art {
    height: 17rem;
    margin-top: 1.5rem;
  }
  .use-card {
    padding: 1rem 1rem 1.4rem;
  }
  .faq {
    gap: 2rem;
  }
  .flow-diagram {
    height: 15rem;
    margin-top: 2rem;
    grid-template-columns: 2.7rem 4rem 1fr;
  }
  .flow-source > span {
    width: 2.7rem;
    height: 2.7rem;
  }
  .faq summary {
    min-height: 4rem;
    font-size: 0.96rem;
  }
  .story {
    gap: 2rem;
  }
  .ending {
    flex-direction: column;
  }
  .ending .download-block {
    width: 100%;
    align-items: flex-start;
  }
  .ending .download-button {
    min-width: 0;
  }
  footer {
    font-size: 0.7rem;
  }
}
@media (max-width: 22rem) {
  .site-header nav a {
    font-size: 0.68rem;
  }
  .site-header nav {
    gap: 0.55rem;
  }
  .brand span {
    display: none;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  .download-button,
  .disclosure {
    transition: none;
  }
}

/* Section specimens share labels and browser chrome rather than anonymous boxes. */
.step-copy::after { content: ""; position: absolute; top: 1.3rem; left: 3.8rem; right: 0; height: 1px; background: var(--line); }
.mini-editor { inset: 1.2rem 1.2rem 6rem; padding: .8rem; background: #fff; color: #29292c; border: 1px solid #d4d4d8; }
.mini-editor-header { display: flex; gap: .4rem; align-items: center; font-size: .7rem; padding-bottom: .6rem; margin-bottom: .65rem; border-bottom: 1px solid #dedee2; }
.mini-editor-header img { width: .8rem; }
.mini-editor p { font-size: .82rem; }
.mini-editor i { display: inline-block; vertical-align: -.12em; margin: 0 0 0 2px; }
.mini-editor small { display: block; margin-top: 1rem; font-size: .6rem; color: #737379; }
.references-art small { display: block; font-size: .65rem; margin-bottom: .4rem; font-weight: 600; }
.mini-source { height: 8rem; }
.mini-source small { position: absolute; z-index: 1; left: .45rem; top: .45rem; padding: .2rem .4rem; border-radius: .25rem; color: #29292c; background: #fff; }
.references-art blockquote { left: 1.4rem; right: 1.4rem; bottom: 1.3rem; font-size: .85rem; }
.reference-link { left: auto; right: .8rem; bottom: 6.6rem; }
.delivery-art { padding: .8rem; }
.mini-composer { font-size: .85rem; }
.mini-shot { width: 7rem; height: 4rem; }
.use-art { height: 16rem; }
.design-art .article-card { bottom: 4rem; }
.design-comment, .bug-comment, .spec-instruction { position: absolute; left: 1rem; right: 1rem; bottom: .85rem; max-width: none; padding: .75rem; border-radius: .55rem; background: #333235; color: #f5f4f2; font-size: .78rem; line-height: 1.45; }
.caption-highlight { font-size: .7rem; }
.upload-box { transform: translateY(-1.8rem); }
.upload-box strong { font-size: .85rem; }
.upload-box small { font-size: .7rem; }
.spec-sheet { font-size: .8rem; height: 10.5rem; }
.flow-source img, .flow-source svg { width: 1.65rem; height: 1.65rem; }
.flow-prompt { position: relative; height: 13rem; padding: 2.5rem 1rem 1rem; overflow: hidden; }
.diagram-chrome { position: absolute; top: 0; left: 0; right: 0; height: 1.7rem; border-bottom: 1px solid var(--line); display: flex; align-items: center; gap: .3rem; padding-left: .65rem; }
.diagram-chrome i { margin: 0; width: .4rem; height: .4rem; border-radius: 50%; background: #ef7568; }
.diagram-chrome i:nth-child(2) { background: #e1bb58; }
.diagram-chrome i:nth-child(3) { background: #79b878; }
.diagram-shot { width: 4rem; height: 2.5rem; object-fit: cover; border-radius: .25rem; margin-bottom: .7rem; }
.flow-prompt blockquote { font-size: .65rem; color: var(--muted); }
.story-diagram { height: 29rem; overflow: clip; }
.story-diagram small { display: flex; align-items: center; gap: .35rem; color: var(--text); font-size: .65rem; margin-bottom: .45rem; font-weight: 600; }
.story-diagram small img { width: .8rem; height: .8rem; filter: invert(1); }
:root[data-theme="light"] .story-diagram small img { filter: none; }
.story-shot { width: 10.5rem; height: 8rem; }
.story-shot > img { height: 5.5rem; }
.story-quote { top: 7rem; width: 12rem; font-size: .75rem; }
.story-comment { bottom: 10rem; left: 0; width: 12rem; font-size: .75rem; }
.story-output { width: 100%; height: auto; padding: .9rem; font-size: .75rem; }
.story-output > img { float: left; width: 4rem; height: 2.5rem; object-fit: cover; border-radius: .25rem; margin: 0 .65rem .5rem 0; }
.story-output blockquote { clear: both; color: var(--muted); margin-top: .5rem; }
@media (max-width: 62rem) { .step-art { height: 18rem; } }
@media (max-width: 48rem) { .section-intro { grid-template-columns: 1fr; gap: 1.2rem; } .story-copy h2 { max-width: 23ch; } }

.mini-source img, .mini-shot img, .story-shot > img, .story-output > img { object-fit: contain; background: #fff; }

/* Second feedback pass: proportions and explicit first-use cues. */
@font-face { font-family: Caveat; src: url("assets/fonts/caveat.woff2") format("woff2"); font-weight: 400 700; font-display: swap; }
.product-film { max-width: 64rem; margin-inline: auto; }
.workflow .section-intro { grid-template-columns: 1.3fr 1fr; gap: 3rem; }
#workflow-title { font-size: clamp(1.8rem, 2.7vw, 2.65rem); text-wrap: initial; }
.alternative-label { color: var(--muted); font-size: .8rem; bottom: 4.85rem; }
.reference-link { bottom: .75rem; right: .75rem; }
.references-art blockquote { bottom: 3.9rem; }
.mini-source small { border: 1px solid #a9a9af; box-shadow: 0 2px 6px #0002; padding: .25rem .5rem; }
.mini-chat-title { display: flex; align-items: center; gap: .45rem; padding-bottom: .65rem; margin-bottom: .75rem; border-bottom: 1px solid var(--line); font-weight: 600; }
.mini-chat-title img { width: 1rem; filter: invert(1); }
:root[data-theme="light"] .mini-chat-title img { filter: none; }
.delivery-art .mini-composer { font-size: .9rem; }
.delivery-art .mini-shot { width: 9rem; height: 4.2rem; }
.design-comment small, .bug-comment small, .spec-instruction small { display: block; color: #d4d1d0; font-size: .65rem; margin-bottom: .25rem; }
.use-art { height: 17rem; }
.design-art .article-card { bottom: 5.5rem; }
.spec-sheet { height: 9.7rem; }
.founder-credit { display: flex; align-items: center; gap: 1rem; }
.signature { font-family: Caveat, cursive; font-size: 2.5rem; line-height: 1; color: var(--text); }
.story-diagram { height: 32rem; }
.story-shot { left: 0; top: 0; }
.story-quote { right: 0; top: 9rem; }
.story-comment { left: 0; bottom: 9.5rem; }
.story-diagram > svg { overflow: visible; }
@media (max-width: 62rem) { .workflow .section-intro { grid-template-columns: 1fr; gap: 1.25rem; } }
@media (max-width: 40rem) { .workflow-break { display: none; } #workflow-title { text-wrap: balance; } }

/* Space around the input alternatives; signature and attribution form one stack. */
.input-art .mini-editor { bottom: 7rem; }
.input-art .alternative-label { bottom: 5.25rem; }
.founder-credit { flex-direction: column; align-items: flex-start; gap: .45rem; }


/* The maker's example uses real website feedback, with room for complete thoughts. */
.story-diagram { height: 39rem; }
.story-shot { width: 55%; height: auto; }
.story-shot > img { width: 100%; height: 6.5rem; object-position: top; }
.story-quote { top: 9rem; width: 68%; }
.story-comment { top: 18rem; bottom: auto; width: 75%; }
.story-output { bottom: 0; }

/* On a phone, the questions and maker's words carry these sections. */
@media (max-width: 1080px) {
  .faq .flow-diagram, .story .story-diagram { display: none; }
  .faq, .story { grid-template-columns: 1fr; }
  .faq { gap: 24px; }
  .story { gap: 0; }
  .local-trust { max-width: 30ch; margin-inline: auto; }
  footer { align-items: flex-start; font-size: var(--type-caption); }
}

/* Shortcut inventory, generated from docs/shortcuts.json. */
.shortcut-guide { padding-block: var(--section-small); }
.shortcut-guide > h1 { font-size: clamp(1.8rem, 4vw, 2.8rem); line-height: 1.15; margin-bottom: 1rem; }
.shortcut-guide > p { max-width: 70ch; color: var(--muted); margin-bottom: 1rem; }
.shortcut-guide .shortcut-guide-note { font-size: .875rem; margin-bottom: 2rem; }
.shortcut-guide details { border-top: 1px solid var(--line); padding-block: 1rem; }
.shortcut-guide details:last-child { border-bottom: 1px solid var(--line); }
.shortcut-guide summary { cursor: pointer; font-weight: 650; padding: .5rem 0; }
.shortcut-guide summary:focus-visible { outline: 2px solid var(--accent); outline-offset: 5px; }
.shortcut-guide details > p { color: var(--muted); max-width: 80ch; margin: 1rem 0; font-size: .875rem; }
.shortcut-guide dl { margin: 0; }
.shortcut-guide dl > div { display: grid; grid-template-columns: minmax(10rem, 1fr) 3fr; gap: 1.5rem; padding: .85rem 0; }
.shortcut-guide dt { font-weight: 600; }
.shortcut-guide dd { color: var(--muted); margin: 0; max-width: 75ch; }
@media (max-width: 600px) {
  .shortcut-guide dl > div { grid-template-columns: 1fr; gap: .3rem; }
}

/* The demo shows the detail; this bridge only explains the three actions. */
.workflow-compact #workflow-title { max-width: 27ch; font-size: clamp(1.75rem, 2.7vw, 2.65rem); }
.workflow-compact .workflow-grid { margin-top: 2rem; gap: 2rem; }
.workflow-compact .workflow-step { display: grid; grid-template-columns: 2rem 1fr; grid-template-rows: auto; align-items: start; gap: .9rem; padding-top: 1.5rem; border-top: 1px solid var(--line); }
.workflow-compact .step-number { width: 2rem; height: 2rem; font-size: .8rem; color: var(--page); }
.workflow-compact h3 { padding-top: .25rem; }
.workflow-compact p { color: var(--muted); font-size: .95rem; line-height: 1.6; margin-top: .65rem; max-width: 34ch; }
.site-header nav > a { display: inline-flex; align-items: center; min-height: 44px; }
.theme-button { min-width: 44px; min-height: 44px; }
.download-status input { display: block; width: min(100%, 22rem); margin: .65rem auto 0; padding: .7rem; border: 1px solid var(--line); border-radius: 8px; background: var(--surface); color: var(--text); font: inherit; }
@media (max-width: 48rem) {
  .workflow-compact .workflow-grid { gap: 1.5rem; }
  .workflow-compact p { max-width: 48ch; }
}

/* Compact illustrations restore the controls without repeating a full storyboard. */
.workflow-compact .workflow-step { grid-template-rows: auto 1fr auto; }
.workflow-visual { grid-column: 1 / -1; position: relative; height: 19rem; overflow: hidden; border: 1px solid var(--line); border-radius: 1.1rem; background: var(--surface); margin-top: 1rem; }
.workflow-visual .mini-editor p { color: #29292c; font-size: .85rem; margin: 0; }
.workflow-visual .mini-editor { bottom: 7rem; }
.collect-visual { padding: 1.2rem; }
.visual-label { display: block; font-size: .7rem; color: var(--muted); margin-bottom: .55rem; font-weight: 600; }
.collected-shot { width: 100%; height: 9rem; object-fit: cover; object-position: top; border-radius: .5rem; }
.collect-visual blockquote { margin: 1rem 0 0; padding: .85rem; border-radius: .65rem; background: var(--raised); font-size: .85rem; }
.finish-visual { padding: 1rem; }
.finished-example { padding: 1rem; background: var(--raised); border-radius: .65rem; }
.finished-example > img { width: 4.5rem; height: 3rem; object-fit: cover; object-position: top; border-radius: .25rem; float: right; margin: 0 0 .5rem .5rem; }
.workflow-compact .finished-example p { margin: 0 0 .65rem; font-size: .8rem; color: var(--text); }
.finished-example blockquote { margin: 0; font-size: .8rem; color: var(--muted); }
.unsent-label { display: block; font-size: .65rem; color: var(--muted); clear: both; margin-top: .8rem; }
.finish-key { display: flex; gap: .7rem; align-items: center; justify-content: center; margin-top: 1rem; font-size: .8rem; }
.finish-key kbd { padding: .4rem .65rem; background: var(--paper-up); color: var(--paper-text); border-radius: .3rem; box-shadow: 0 2px 0 #aaa; }
.shortcut-essentials { display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem; margin: 2rem 0; }
.shortcut-essentials a { display: flex; flex-direction: column; align-items: start; gap: .65rem; background: var(--surface); border: 1px solid var(--line); padding: 1.35rem; border-radius: 1rem; text-decoration: none; }
.shortcut-essentials strong { font-size: 1.05rem; }
.shortcut-essentials span { color: var(--muted); font-size: .8rem; }
.shortcut-guide kbd { display: inline-block; padding: .35rem .6rem; border: 1px solid var(--line); border-bottom-width: 3px; border-radius: .4rem; font: 600 .85rem/1.5 var(--font); background: var(--raised); color: var(--text); }
.shortcut-search-label { display: block; font-size: .85rem; font-weight: 650; margin-bottom: .6rem; }
.shortcut-search-wrap { display: flex; gap: 1rem; align-items: center; margin-bottom: 1.25rem; }
#shortcut-search { width: min(100%,32rem); min-height: 3.25rem; border: 1px solid var(--line); border-radius: .7rem; padding: .8rem 1rem; background: var(--surface); color: var(--text); font: inherit; }
#shortcut-search::placeholder { color: var(--muted); }
#shortcut-result-count { color: var(--muted); font-size: .8rem; }
.shortcut-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.shortcut-nav a { padding: .65rem .85rem; border: 1px solid var(--line); border-radius: 2rem; color: var(--muted); font-size: .8rem; text-decoration: none; }
.shortcut-nav a:hover, .shortcut-nav a:focus-visible { color: var(--text); border-color: var(--accent); }
.shortcut-guide details { background: var(--surface); border: 1px solid var(--line); border-radius: 1rem; padding: 1.25rem 1.5rem; margin-bottom: 1.25rem; scroll-margin-top: 1rem; }
.shortcut-guide summary { font-size: 1.2rem; }
.shortcut-group-number { font-size: .8rem; color: var(--accent); margin-right: .75rem; }
.shortcut-guide dl > div { grid-template-columns: minmax(10rem,1fr) 2.4fr; border-top: 1px solid var(--line); padding: 1rem 0; align-items: baseline; }
.shortcut-guide dd { font-size: .9rem; line-height: 1.7; }
.shortcut-guide [hidden] { display: none !important; }
.shortcut-guide a:focus-visible, #shortcut-search:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
@media (max-width: 48rem) {
  .workflow-compact .workflow-step { grid-template-rows: auto; }
  .workflow-visual { height: 15rem; }
  .workflow-visual .mini-editor { bottom: 5.8rem; top: 1rem; }
  .workflow-visual .mini-editor small { margin-top: .5rem; }
  .workflow-visual .alternative-label { bottom: 4.5rem; }
  .workflow-visual .mini-voice { bottom: 1rem; }
  .collect-visual { display: grid; grid-template-columns: 1fr 1fr; gap: .6rem 1rem; height: 12rem; align-items: start; }
  .collect-visual > .visual-label { grid-column: 1 / -1; margin: 0; }
  .collected-shot { height: 7.5rem; }
  .collect-visual blockquote { margin: 0; padding: .5rem; font-size: .75rem; }
  .finish-visual { height: auto; }
  .shortcut-essentials { grid-template-columns: 1fr; gap: .6rem; }
  .shortcut-essentials a { display: flex; gap: .65rem; padding: 1rem; }
  
  .shortcut-guide details { padding: 1rem; }
  .shortcut-guide dl > div { grid-template-columns: 1fr; gap: .65rem; }
  .shortcut-search-wrap { flex-wrap: wrap; gap: .5rem; }
}
.collect-visual .collected-shot { height: 7.5rem; }
.finished-example { background: #fff; color: #29292c; min-height: 13.5rem; }
.finished-example .visual-label, .finished-example .unsent-label, .finished-example blockquote { color: #676569; }
.workflow-compact .finished-example p { color: #29292c; }
.shortcut-guide { padding-top: 3rem; }
@media (max-width: 48rem) {
  .finished-example { min-height: 0; }
  .shortcut-guide { padding-top: 2rem; }
}

.shortcut-guide dl > div { display: block; }
.shortcut-guide dt { font-weight: 650; margin-bottom: .65rem; }
.shortcut-guide dd { margin: 0; }
.shortcut-guide dd p { margin: .65rem 0 0; }

.help-guide details a { text-decoration: underline; text-underline-offset: .15em; }

/* Scannable context above the example workflows. */
.sesh-stories .use-case-label { text-align: center; text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 650; color: var(--muted); margin: 0 0 1rem; }
.faq summary { padding-block: .9rem; }

.privacy-policy { max-width: 52rem; padding-block: 4rem; }
.privacy-policy h1 { font-size: clamp(2.3rem, 5vw, 3.5rem); letter-spacing: -.04em; line-height: 1.1; }
.privacy-policy h2 { font-size: 1.35rem; margin: 2.5rem 0 1rem; }
.privacy-policy p, .privacy-policy li { color: var(--muted); line-height: 1.7; font-size: .95rem; }
.privacy-policy p { margin-bottom: 1rem; }
.privacy-policy li { margin-bottom: .8rem; }
.privacy-policy ul { padding-left: 1.25rem; }
.privacy-policy strong { color: var(--text); font-weight: 600; }
.privacy-policy a { text-decoration: underline; text-underline-offset: .2em; }
.privacy-policy code { overflow-wrap: anywhere; }
.privacy-date { margin-top: 1rem; font-size: .8rem !important; }
.privacy-nav { display: flex; flex-wrap: wrap; gap: .6rem 1.1rem; margin: 2rem 0; font-size: .85rem; }
.privacy-policy section { scroll-margin-top: 2rem; }

/* Shared navigation for the public reference pages. */
.support-header .support-nav { display: flex; flex-wrap: wrap; gap: 1.5rem; }
.support-nav a[aria-current="page"] { color: var(--accent); font-weight: 650; text-decoration: underline; text-underline-offset: .45rem; }
.support-nav a:focus-visible { outline: 2px solid var(--accent); outline-offset: 4px; }
@media (max-width: 600px) {
  .site-header.support-header { flex-direction: column; align-items: flex-start; gap: .5rem; }
  .support-header .support-nav { width: 100%; justify-content: space-between; gap: .5rem; }
}
@media (max-width: 600px) {
  .site-header.support-header { height: auto; padding-block: 1rem .5rem; }
  .support-header .support-nav a { font-size: .8rem; }
}
