.prompt-generator-page {
  --text-muted: #586678;
  --prompt-line: rgba(83, 103, 130, .17);
  --prompt-surface: rgba(255, 255, 255, .66);
}

.prompt-generator-page .tools-main {
  width: min(var(--tools-page-max), calc(100vw - 48px));
  padding-top: 138px;
}

.prompt-generator-page .prompt-hero {
  display: grid;
  min-height: 210px;
  place-content: center;
  text-align: center;
}

.prompt-generator-page .prompt-hero h1 { margin-top: 0; }

.prompt-generator-page .prompt-hero .tools-detail-hero__lede {
  max-width: 34rem;
  margin-top: 22px;
}

.prompt-hero__title-line {
  display: block;
  white-space: nowrap;
}

.prompt-lab {
  position: relative;
  z-index: 4;
  margin-top: 26px;
  scroll-margin-top: 110px;
}

.prompt-lab__shell {
  display: grid;
  min-height: 380px;
  overflow: visible;
  border: 1px solid rgba(83, 103, 130, .14);
  border-radius: 30px;
  background:
    radial-gradient(circle at 84% 10%, rgba(196, 215, 243, .42), transparent 30%),
    rgba(244, 247, 250, .76);
  box-shadow: 0 28px 70px rgba(54, 70, 94, .13), inset 0 1px 0 rgba(255, 255, 255, .8);
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, .92fr);
}

.prompt-lab__form,
.prompt-lab__result {
  min-width: 0;
  padding: clamp(28px, 4vw, 48px);
}

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

.prompt-lab__form {
  position: relative;
  display: flex;
  flex-direction: column;
}

.prompt-lab__form > textarea {
  width: 100%;
  height: 112px;
  min-height: 112px;
  padding: 15px 16px;
  border: 1px solid rgba(83, 103, 130, .2);
  border-radius: 14px;
  outline: 0;
  color: var(--clay-ink);
  background: rgba(255, 255, 255, .64);
  box-shadow: inset 0 1px 2px rgba(52, 67, 88, .06);
  font: 450 16px/1.5 var(--sans);
  letter-spacing: -.006em;
  resize: vertical;
}

.prompt-lab__form > textarea::placeholder { color: #8992a0; }

.prompt-lab__form > textarea:focus-visible {
  border-color: rgba(52, 84, 150, .52);
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.prompt-lab__action-row {
  position: relative;
  display: flex;
  margin-top: 8px;
  padding-top: 22px;
  border-top: 1px solid var(--prompt-line);
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.prompt-type {
  position: relative;
  min-width: 0;
}

.prompt-type__toggle {
  display: inline-flex;
  min-height: 48px;
  padding: 0 15px;
  border: 0;
  border-radius: 13px;
  align-items: center;
  gap: 12px;
  color: #242a33;
  background: transparent;
  cursor: pointer;
  font: 500 16px/1 var(--sans);
}

.prompt-type__toggle strong { font-weight: 650; }

.prompt-type__toggle svg {
  width: 13px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.7;
  transition: transform 160ms ease;
}

.prompt-type__toggle[aria-expanded="true"] {
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 8px 20px rgba(47, 61, 82, .1);
}

.prompt-type__toggle[aria-expanded="true"] svg { transform: rotate(180deg); }

.prompt-type__menu {
  position: absolute;
  z-index: 40;
  top: calc(100% + 10px);
  left: 0;
  width: min(570px, calc(100vw - 72px));
  max-height: min(520px, 62vh);
  padding: 8px;
  overflow-y: auto;
  border: 1px solid rgba(83, 103, 130, .2);
  border-radius: 18px;
  background: rgba(250, 251, 253, .98);
  box-shadow: 0 24px 54px rgba(38, 52, 74, .19);
  backdrop-filter: blur(18px);
}

.prompt-type__menu[hidden] { display: none; }

.prompt-type__menu button {
  display: grid;
  width: 100%;
  min-height: 49px;
  padding: 10px 13px;
  border: 0;
  border-radius: 11px;
  grid-template-columns: 100px minmax(0, 1fr) auto;
  align-items: center;
  color: #242a33;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.prompt-type__menu button:hover,
.prompt-type__menu button:focus-visible,
.prompt-type__menu button[aria-selected="true"] {
  outline: 0;
  background: #e9eff8;
}

.prompt-type__menu button[aria-selected="true"]::after {
  color: #496a9f;
  content: "✓";
  font: 650 14px/1 var(--sans);
}

.prompt-type__menu strong { font: 600 15px/1.2 var(--sans); }

.prompt-type__menu span {
  min-width: 0;
  color: #717b89;
  font: 450 14px/1.3 var(--sans);
}

.prompt-lab__submit {
  display: inline-flex;
  min-width: 158px;
  min-height: 50px;
  padding: 0 22px;
  border: 1px solid rgba(0, 58, 155, .74);
  border-radius: 14px;
  justify-content: center;
  align-items: center;
  color: var(--neo-white);
  background: var(--clay-cobalt);
  box-shadow: 0 8px 18px rgba(0, 71, 187, .18), inset 0 1px 0 rgba(255, 255, 255, .2);
  cursor: pointer;
  font: 650 15px/1 var(--sans);
  letter-spacing: -.01em;
  transition: transform 160ms ease, background-color 160ms ease, box-shadow 160ms ease;
}

.prompt-lab__submit:hover {
  background: #003e9f;
  box-shadow: 0 11px 24px rgba(0, 71, 187, .24), inset 0 1px 0 rgba(255, 255, 255, .2);
  transform: translateY(-1px);
}

.prompt-lab__submit:active { transform: scale(.98); }

.prompt-details { margin-top: 18px; }

.prompt-details summary {
  width: fit-content;
  padding: 8px 2px;
  color: #586678;
  cursor: pointer;
  font: 600 13px/1.2 var(--sans);
}

.prompt-details summary::marker { color: #718099; }

.prompt-details__grid {
  display: grid;
  margin-top: 14px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.prompt-lab__field {
  display: grid;
  min-width: 0;
  gap: 8px;
}

.prompt-lab__field--wide { grid-column: 1 / -1; }

.prompt-lab__field > span {
  color: var(--text-muted);
  font: 500 10px/1.2 var(--mono);
  letter-spacing: .04em;
  text-transform: uppercase;
}

.prompt-lab__field input,
.prompt-lab__field select {
  width: 100%;
  min-height: 46px;
  padding: 0 14px;
  border: 0;
  border-radius: 13px;
  outline: 0;
  color: var(--clay-ink);
  background: var(--clay-cloud);
  box-shadow: var(--shadow-inset-sm);
  font: 500 13px/1.45 var(--sans);
}

.prompt-lab__field input:focus,
.prompt-lab__field select:focus,
.prompt-lab__result pre:focus-visible,
.prompt-lab__result-head button:focus-visible,
.prompt-lab__submit:focus-visible,
.prompt-type__toggle:focus-visible,
.prompt-details summary:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 3px;
}

.prompt-lab__result {
  min-height: 100%;
  border-left: 1px solid var(--prompt-line);
  border-radius: 0 30px 30px 0;
  background: rgba(255, 255, 255, .33);
}

.prompt-lab__result-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
}

.prompt-lab__result-head > span {
  color: #50647f;
  font: 600 12px/1.3 var(--sans);
}

.prompt-lab__result-head button {
  min-height: 38px;
  padding: 0 13px;
  border: 0;
  border-radius: 11px;
  color: var(--clay-cobalt);
  background: rgba(255, 255, 255, .8);
  box-shadow: var(--shadow-raised-sm);
  cursor: pointer;
  font: 600 12px/1 var(--sans);
}

.prompt-lab__result pre {
  max-height: 258px;
  margin: 25px 0 0;
  padding-right: 9px;
  overflow: hidden;
  color: #344258;
  font: 450 14px/1.65 var(--sans);
  overflow-wrap: anywhere;
  white-space: pre-wrap;
}

.prompt-section-heading {
  max-width: 890px;
  margin: 0 auto;
  text-align: center;
}

.prompt-section-heading h2,
.web-extension-flow__heading h2 {
  margin: 0;
  color: var(--story-ink);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(50px, 5.6vw, 78px);
  font-weight: 400;
  letter-spacing: -.055em;
  line-height: .96;
  text-wrap: balance;
}

.prompt-section-heading p,
.web-extension-flow__heading p {
  max-width: 700px;
  margin: 28px auto 0;
  color: var(--story-muted);
  font: 400 17px/1.68 var(--sans);
}

.prompt-result-proof { padding: 112px 0 40px; }

.prompt-result-proof .prompt-section-heading {
  max-width: 800px;
  margin-left: 0;
  text-align: left;
}

.prompt-result-proof .prompt-section-heading p,
.prompt-extension-flow .web-extension-flow__heading p {
  max-width: 720px;
  margin: 30px auto 0;
  font: 400 19px/1.58 var(--sans);
}

.prompt-result-proof .prompt-section-heading p { margin-left: 0; }

.prompt-result-proof .prompt-result-flow {
  position: relative;
  width: 100%;
  margin: 58px auto 0;
}

.prompt-result-flow__request {
  position: relative;
  z-index: 2;
  display: flex;
  width: min(100%, 540px);
  min-height: 80px;
  margin: 0 auto;
  padding: 0 28px;
  border: 1px solid rgba(83, 103, 130, .18);
  border-radius: 8px;
  justify-content: center;
  align-items: center;
  color: #303b4c;
  background: rgba(255, 255, 255, .72);
  box-shadow: 0 12px 30px rgba(57, 72, 97, .08);
  font: 600 18px/1.4 var(--sans);
  text-align: center;
}

.prompt-result-flow__paths {
  --result-flow-gap: 28px;
  position: relative;
  display: grid;
  margin-top: 60px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--result-flow-gap);
}

.prompt-result-flow__paths::before {
  position: absolute;
  top: -30px;
  right: calc(25% - var(--result-flow-gap) / 4);
  left: calc(25% - var(--result-flow-gap) / 4);
  height: 1px;
  background: rgba(83, 103, 130, .28);
  content: "";
}

.prompt-result-flow__paths::after {
  position: absolute;
  top: -60px;
  left: 50%;
  width: 1px;
  height: 30px;
  background: rgba(83, 103, 130, .28);
  content: "";
}

.prompt-result-flow__path {
  position: relative;
  display: grid;
  min-width: 0;
  align-content: start;
  justify-items: center;
}

.prompt-result-flow__path::before {
  position: absolute;
  z-index: 2;
  top: 0;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(83, 103, 130, .18);
  border-radius: 50%;
  color: #65748a;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 22px rgba(60, 75, 98, .11);
  content: "↓";
  font: 600 15px/38px var(--sans);
  text-align: center;
  transform: translateY(-50%);
}

.prompt-result-flow__path::after {
  position: absolute;
  top: -30px;
  left: 50%;
  width: 1px;
  height: 30px;
  background: rgba(83, 103, 130, .28);
  content: "";
}

.prompt-result-flow__path::before,
.prompt-result-flow__path--result::before { display: none; }

.prompt-result-flow__media {
  position: relative;
  width: 100%;
  height: 340px;
  margin-top: 0;
  overflow: hidden;
  border: 1px solid rgba(83, 103, 130, .16);
  border-radius: 8px;
  background: rgba(244, 246, 249, .86);
  box-shadow: none;
}

.prompt-result-flow__path--loop::before { content: "↻"; }

.prompt-result-flow__clico {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 50%;
  display: grid;
  width: 40px;
  height: 40px;
  border: 1px solid rgba(83, 103, 130, .16);
  border-radius: 9px;
  place-items: center;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 10px 22px rgba(54, 70, 94, .14);
  transform: translate(-50%, -50%);
}

.prompt-result-flow__clico { display: none; }

.prompt-result-flow__clico img {
  width: 32px;
  height: 32px;
  object-fit: contain;
}

.prompt-result-flow__media { background: #d8e3eb; }

.prompt-result-flow__media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prompt-result-flow__media--generic > img {
  filter: contrast(.92);
  object-position: center;
}

.prompt-result-flow__path > p {
  max-width: 30ch;
  margin-top: 22px;
  color: #4e5e74;
  font: 600 17px/1.48 var(--sans);
  text-align: center;
}

.prompt-result-proof .story-button {
  display: flex;
  width: fit-content;
  margin: 46px auto 0;
}

.web-extension-flow {
  --web-extension-flow-cycle: 7s;
  padding: 118px 0 58px;
  background: transparent;
}

.web-extension-flow__heading {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.web-extension-flow__heading h2 span {
  display: block;
  white-space: nowrap;
}

.web-extension-flow__steps {
  display: grid;
  margin: 66px 0 0;
  padding: 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  list-style: none;
  gap: 24px;
}

.web-extension-flow__step {
  position: relative;
  min-width: 0;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.web-extension-flow__step:not(:last-child)::after {
  position: absolute;
  z-index: 3;
  top: 171px;
  right: -18px;
  display: grid;
  width: 30px;
  height: 30px;
  border: 0;
  border-radius: 10px;
  place-items: center;
  color: #52647f;
  background: #edf1f6;
  box-shadow: none;
  content: "→";
  font: 600 15px/1 var(--sans);
}

.web-extension-flow__visual {
  position: relative;
  min-height: 310px;
  padding: 18px;
  overflow: hidden;
  border: 1px solid rgba(104, 120, 145, .14);
  border-radius: 8px;
  background: rgba(240, 244, 248, .94);
}

.web-extension-flow__visual header {
  display: flex;
  align-items: center;
  color: #4e5d73;
  font: 700 11px/1 var(--sans);
  gap: 9px;
}

.web-extension-flow__visual header img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.web-extension-flow__source-media {
  position: relative;
  height: 232px;
  margin-top: 16px;
  overflow: hidden;
  border-radius: 5px;
  background: #dce5ef;
  container-type: inline-size;
}

.web-extension-flow__source-media > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.web-extension-flow__drag-card {
  position: absolute;
  z-index: 2;
  top: 68px;
  left: 20px;
  width: 84px;
  height: 56px;
  padding: 4px;
  border: 1px solid rgba(255, 255, 255, .9);
  border-radius: 12px;
  opacity: 0;
  background: rgba(255, 255, 255, .92);
  box-shadow: 0 12px 28px rgba(30, 44, 66, .28);
  transform: translate(calc(100cqw - 101px), 43px) scale(.56);
}

.web-extension-flow__drag-card > img {
  width: 100%;
  height: 100%;
  border-radius: 8px;
  object-fit: cover;
}

.web-extension-flow__drag-card svg {
  position: absolute;
  right: -11px;
  bottom: -11px;
  width: 24px;
  height: 24px;
  fill: #fff;
  filter: drop-shadow(0 2px 3px rgba(21, 32, 48, .58));
  stroke: #25354d;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.web-extension-flow__drop-target {
  position: absolute;
  z-index: 3;
  right: 12px;
  bottom: 12px;
  display: grid;
  width: 54px;
  height: 54px;
  padding: 7px;
  border: 1px dashed rgba(115, 150, 202, .8);
  border-radius: 18px;
  place-items: center;
  background: rgba(248, 250, 252, .92);
  box-shadow: 0 12px 28px rgba(37, 51, 72, .22);
  backdrop-filter: blur(12px);
}

.web-extension-flow__drop-target img {
  width: 40px;
  height: 40px;
}

.web-extension-flow__prompt-input {
  display: grid;
  min-height: 76px;
  margin-top: 14px;
  padding: 8px;
  border: 1px solid rgba(98, 116, 143, .16);
  border-radius: 10px;
  grid-template-columns: 58px minmax(0, 1fr);
  align-items: center;
  color: #34435a;
  background: rgba(255, 255, 255, .88);
  font: 650 11.5px/1.4 var(--sans);
  gap: 12px;
}

.web-extension-flow__prompt-input img {
  width: 58px;
  height: 58px;
  border-radius: 8px;
  object-fit: cover;
}

.web-extension-flow__prompt-output {
  min-height: 154px;
  margin-top: 12px;
  padding: 14px 15px;
  border: 1px solid rgba(98, 116, 143, .16);
  border-radius: 10px;
  color: #35445a;
  background: rgba(255, 255, 255, .9);
}

.web-extension-flow__prompt-output > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.web-extension-flow__prompt-output strong { font: 700 11px/1 var(--sans); }

.web-extension-flow__prompt-output > div > span {
  padding: 3px 6px;
  border-radius: 999px;
  color: #55715f;
  background: #e7f0e9;
  font: 700 8px/1 var(--sans);
}

.web-extension-flow__prompt-output p {
  margin: 13px 0 0;
  color: #5d6b7f;
  font: 500 10.5px/1.5 var(--sans);
}

.web-extension-flow__prompt-output p span { display: block; }

.web-extension-flow__visual--create {
  padding: 0;
  background: #d9e4ed;
}

.web-extension-flow__visual--create video,
.web-extension-flow__visual--create > img {
  display: block;
  width: 100%;
  height: 310px;
  object-fit: cover;
}

.prompt-extension-revision {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  display: grid;
  min-height: 74px;
  padding: 12px 14px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 12px;
  grid-template-columns: 30px minmax(0, 1fr);
  align-items: center;
  color: #34445b;
  background: rgba(250, 252, 255, .9);
  box-shadow: 0 14px 30px rgba(24, 39, 62, .21);
  backdrop-filter: blur(14px);
  font: 600 11px/1.4 var(--sans);
  gap: 11px;
}

.prompt-extension-revision img {
  width: 30px;
  height: 30px;
}

.web-extension-flow__copy { padding: 24px 6px 0; }

.web-extension-flow__copy h3 {
  color: var(--story-ink);
  font: 400 25px/1.15 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
}

.web-extension-flow__copy p {
  margin-top: 14px;
  color: var(--story-muted);
  font: 400 15px/1.58 var(--sans);
}

.web-extension-flow__actions {
  display: flex;
  margin: 46px auto 0;
  justify-content: center;
  gap: 13px;
}

.web-extension-flow__cta { min-width: 178px; }

.humanize-story .story-button--secondary {
  color: var(--story-ink);
  background: rgba(255, 255, 255, .52);
}

.web-extension-flow.is-active .web-extension-flow__drag-card {
  animation: prompt-extension-drag var(--web-extension-flow-cycle) cubic-bezier(.22, .82, .28, 1) infinite both;
}

.web-extension-flow.is-active .web-extension-flow__drop-target {
  animation: prompt-extension-drop var(--web-extension-flow-cycle) ease-out infinite both;
}

.web-extension-flow.is-active .web-extension-flow__prompt-output,
.web-extension-flow.is-active .prompt-extension-revision {
  animation: prompt-extension-card var(--web-extension-flow-cycle) cubic-bezier(.22, 1, .36, 1) infinite both;
}

@keyframes prompt-extension-drag {
  0%, 8% { opacity: 0; transform: translate(0, 0) scale(1); }
  12%, 25% { opacity: 1; transform: translate(0, 0) scale(1); }
  40% { opacity: 1; transform: translate(calc(100cqw - 101px), 43px) scale(.56); }
  46%, 100% { opacity: 0; transform: translate(calc(100cqw - 101px), 43px) scale(.56); }
}

@keyframes prompt-extension-drop {
  0%, 30% { box-shadow: 0 12px 28px rgba(37, 51, 72, .22); }
  40% { box-shadow: 0 0 0 7px rgba(114, 154, 213, .16), 0 14px 32px rgba(37, 51, 72, .25); }
  46%, 100% { box-shadow: 0 12px 28px rgba(37, 51, 72, .22); }
}

@keyframes prompt-extension-card {
  0%, 38% { opacity: .78; transform: translateY(4px); }
  44%, 84% { opacity: 1; transform: none; }
  90%, 100% { opacity: .78; transform: none; }
}

.web-extension-flow {
  padding: 112px 0 48px;
}

.web-extension-flow__heading {
  max-width: 980px;
  margin: 0;
  text-align: left;
}

.web-extension-flow__heading h2 {
  font-size: clamp(52px, 4.8vw, 68px);
  line-height: .98;
}

.web-extension-flow__heading h2 span {
  display: block;
  white-space: nowrap;
}

.web-extension-flow__heading p {
  margin-right: 0;
  margin-left: 0;
}

.prompt-extension-story {
  display: block;
  margin-top: 62px;
}

.prompt-extension-story__media {
  position: relative;
  min-width: 0;
  height: 640px;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(83, 103, 130, .16);
  border-radius: 10px;
  background: #dfe5ec;
}

.prompt-extension-story__backdrop {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(.52) saturate(.28) contrast(.96) brightness(1.06);
}

.prompt-extension-story__media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(232, 237, 244, .04), rgba(232, 237, 244, .28) 48%, rgba(232, 237, 244, .74));
  content: "";
}

.prompt-extension-story__menu {
  position: absolute;
  z-index: 1;
  bottom: -4%;
  left: 3.5%;
  display: block;
  width: 54%;
  height: 92%;
  object-fit: contain;
  object-position: left bottom;
  filter: drop-shadow(0 22px 42px rgba(29, 40, 58, .2));
}

.prompt-extension-story__panel {
  position: absolute;
  z-index: 2;
  top: 5%;
  right: 4.5%;
  width: 29%;
  height: 90%;
  filter: drop-shadow(0 24px 52px rgba(29, 40, 58, .24));
}

.prompt-extension-story__panel img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.prompt-extension-story .web-extension-flow__steps {
  display: grid;
  margin: 42px 0 0;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 38px;
}

.prompt-extension-story .web-extension-flow__step {
  padding: 25px 0 0;
  border-top: 1px solid var(--story-line);
}

.prompt-extension-story .web-extension-flow__step + .web-extension-flow__step {
  padding-top: 25px;
}

.prompt-extension-story .web-extension-flow__step:not(:last-child)::after { display: none; }
.prompt-extension-story .web-extension-flow__copy { padding: 0; }

.prompt-extension-story .web-extension-flow__copy h3 {
  font: 650 25px/1.14 var(--sans);
  letter-spacing: -.035em;
}

.prompt-extension-story .web-extension-flow__copy p {
  margin-top: 12px;
  font-size: 16px;
  line-height: 1.55;
}

.prompt-extension-story .web-extension-flow__actions {
  margin: 38px 0 0;
  justify-content: flex-start;
}

.prompt-extension-story .web-extension-flow__cta { min-width: 154px; }

.prompt-models { padding: 64px 0 66px; }

@media (min-width: 768px) {
  .prompt-models .prompt-section-heading { max-width: 820px; }
  .prompt-models .prompt-section-heading h2 { font-size: clamp(50px, 4.35vw, 60px); }
  .prompt-models .prompt-section-heading p { margin-top: 18px; }
}

.prompt-models__controls {
  display: flex;
  width: min(100%, 1160px);
  margin: 52px auto 18px;
  padding-inline: 2px;
  justify-content: space-between;
  align-items: center;
}

.prompt-models__controls > span {
  color: #6a7789;
  font: 600 12px/1 var(--sans);
}

.prompt-models__controls > div {
  display: flex;
  gap: 8px;
}

.prompt-models__controls button {
  display: grid;
  width: 42px;
  height: 42px;
  border: 1px solid rgba(83, 103, 130, .19);
  border-radius: 50%;
  place-items: center;
  color: #34445a;
  background: rgba(255, 255, 255, .66);
  box-shadow: 0 8px 18px rgba(55, 70, 92, .08);
  cursor: pointer;
  font: 600 16px/1 var(--sans);
}

.prompt-models__controls button:hover { background: #fff; }

.prompt-models__controls button:focus-visible,
.prompt-models__track:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 4px;
}

.prompt-models__track {
  display: flex;
  width: min(100%, 1160px);
  margin: 0 auto;
  padding: 0 2px 22px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  gap: 20px;
}

.prompt-models__track::-webkit-scrollbar { display: none; }

.prompt-model-card {
  min-width: 0;
  min-height: 460px;
  padding: 18px 18px 24px;
  border: 1px solid rgba(83, 103, 130, .16);
  border-radius: 25px;
  flex: 0 0 370px;
  scroll-snap-align: start;
  background: rgba(255, 255, 255, .58);
  box-shadow: 0 21px 46px rgba(56, 71, 94, .09);
}

.prompt-model-card > header {
  display: flex;
  height: 40px;
  padding: 0 4px;
  align-items: center;
  gap: 10px;
}

.prompt-model-card > header img {
  width: 28px;
  height: 28px;
  border-radius: 8px;
  object-fit: contain;
}

.prompt-model-card__icons {
  display: flex;
  padding-left: 2px;
}

.prompt-model-card__icons img {
  border: 2px solid #f5f7fa;
  border-radius: 50%;
  background: #fff;
}

.prompt-model-card__icons img + img { margin-left: -8px; }

.prompt-model-card > header h3 {
  color: #2f3b4c;
  font: 650 14px/1.2 var(--sans);
  letter-spacing: -.01em;
}

.prompt-model-card__wordmark {
  display: grid;
  width: 28px;
  height: 28px;
  border-radius: 8px;
  place-items: center;
  color: #34445a;
  background: #e4eaf2;
  font: 700 14px/1 var(--sans);
}

.prompt-model-card__wordmark--google {
  color: #fff;
  background: linear-gradient(135deg, #4285f4, #34a853 50%, #fbbc05 70%, #ea4335);
}

.prompt-model-card__wordmark--code { font-size: 10px; }

.prompt-model-card__wordmark--automation {
  color: #2f6752;
  background: #e3eee8;
  font-size: 18px;
}

.prompt-model-card__screen {
  position: relative;
  height: 312px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid rgba(83, 103, 130, .13);
  border-radius: 18px;
  background: #f3f5f8;
}

.prompt-model-card__screen--brief {
  background: linear-gradient(145deg, #edf2f8, #f7f4f0);
}

.prompt-model-card__brief {
  width: calc(100% - 44px);
  margin: 22px auto 0;
  padding: 20px;
  border: 1px solid rgba(83, 103, 130, .13);
  border-radius: 15px;
  background: rgba(255, 255, 255, .9);
  box-shadow: 0 12px 28px rgba(52, 66, 87, .09);
}

.prompt-model-card__brief strong {
  color: #344258;
  font: 700 10px/1.2 var(--sans);
}

.prompt-model-card__brief p {
  margin-top: 13px;
  color: #344258;
  font: 650 11px/1.4 var(--sans);
}

.prompt-model-card__brief span {
  display: block;
  margin-top: 3px;
  color: #69778a;
  font: 500 9px/1.4 var(--sans);
}

.prompt-model-card__revision {
  position: absolute;
  right: 13px;
  bottom: 13px;
  left: 13px;
  display: grid;
  min-height: 72px;
  padding: 11px 12px;
  border: 1px solid rgba(92, 116, 153, .18);
  border-radius: 16px;
  grid-template-columns: 27px minmax(0, 1fr);
  align-items: center;
  color: #354760;
  background: rgba(244, 248, 254, .94);
  box-shadow: 0 13px 28px rgba(41, 57, 82, .16);
  font: 600 10px/1.45 var(--sans);
  gap: 10px;
}

.prompt-model-card__revision img {
  width: 24px;
  height: 24px;
}

.prompt-model-card__screen--plan {
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, #e8eef8, #f3ede8);
}

.prompt-model-card__plan {
  display: grid;
  width: 82%;
  padding-bottom: 72px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.prompt-model-card__plan div {
  display: grid;
  height: 73px;
  padding: 12px;
  border: 1px solid rgba(83, 103, 130, .12);
  border-radius: 15px;
  align-content: center;
  background: rgba(255, 255, 255, .74);
  box-shadow: 0 8px 18px rgba(55, 70, 92, .07);
  gap: 5px;
}

.prompt-model-card__plan div:nth-child(2) { background: #eaf1fb; }
.prompt-model-card__plan div:nth-child(3) { background: #f3ebe8; }
.prompt-model-card__plan div:nth-child(4) { background: #eef2ed; }

.prompt-model-card__plan strong {
  color: #6e7a8b;
  font: 650 8px/1 var(--sans);
}

.prompt-model-card__plan span {
  color: #344258;
  font: 650 10px/1.2 var(--sans);
}

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

.prompt-model-card__play {
  position: absolute;
  top: 90px;
  left: 50%;
  display: grid;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, .78);
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: rgba(37, 48, 67, .48);
  box-shadow: 0 10px 24px rgba(25, 36, 53, .18);
  transform: translateX(-50%);
}

.prompt-model-card__screen--code {
  padding: 22px;
  color: #dbe5f5;
  background: #202936;
}

.prompt-model-card__file {
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  color: #9eacc0;
  font: 600 9px/1 var(--mono);
}

.prompt-model-card__screen--code pre {
  margin: 22px 0 0;
  color: #cbd5e3;
  font: 500 9px/1.8 var(--mono);
  white-space: pre-wrap;
}

.prompt-model-card__screen--code pre span,
.prompt-model-card__screen--code pre b { display: block; }

.prompt-model-card__screen--code pre b {
  color: #9fd6b9;
  font-weight: 500;
}

.prompt-model-card__screen--automation {
  background: linear-gradient(145deg, #edf2f7, #eef3ef);
}

.prompt-model-card__automation {
  width: calc(100% - 44px);
  margin: 22px auto 0;
  padding: 0;
  list-style: none;
}

.prompt-model-card__automation li {
  position: relative;
  display: grid;
  min-height: 50px;
  padding: 10px 14px 10px 42px;
  border: 1px solid rgba(83, 103, 130, .14);
  border-radius: 14px;
  align-content: center;
  color: #344258;
  background: rgba(255, 255, 255, .86);
  box-shadow: 0 8px 18px rgba(55, 70, 92, .07);
  gap: 4px;
}

.prompt-model-card__automation li + li { margin-top: 10px; }

.prompt-model-card__automation li::before {
  position: absolute;
  top: 16px;
  left: 16px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: #9db2ce;
  box-shadow: inset 0 0 0 5px rgba(255, 255, 255, .78);
  content: "";
}

.prompt-model-card__automation li:not(:last-child)::after {
  position: absolute;
  z-index: 2;
  bottom: -11px;
  left: 23px;
  width: 2px;
  height: 11px;
  background: #b7c3d2;
  content: "";
}

.prompt-model-card__automation strong {
  color: #65748a;
  font: 650 8px/1 var(--sans);
}

.prompt-model-card__automation span { font: 650 10px/1.2 var(--sans); }

.prompt-model-card > p {
  margin: 19px 5px 0;
  color: #536277;
  font: 500 14px/1.55 var(--sans);
}

.prompt-models__boundary {
  width: min(100%, 1160px);
  max-width: none;
  margin: 28px auto 0;
  color: #65758b;
  font: 470 13px/1.6 var(--sans);
  text-align: left;
}

.humanize-story .prompt-models__boundary { margin: 20px auto 0; }

.prompt-destinations__toolbar {
  display: flex;
  width: min(100%, 1160px);
  margin: 26px auto 14px;
  padding: 0;
  border: 0;
  border-bottom: 1px solid rgba(67, 83, 106, .16);
  border-radius: 0;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  box-shadow: none;
  gap: 14px;
}

.prompt-destinations__tabs {
  display: flex;
  min-width: 0;
  align-items: center;
  overflow-x: auto;
  scrollbar-width: none;
  gap: 3px;
}

.prompt-destinations__tabs::-webkit-scrollbar { display: none; }

.prompt-destinations__tabs button,
.prompt-destinations__motion {
  border: 0;
  color: #59677a;
  background: transparent;
  cursor: pointer;
  font: 620 13px/1 var(--sans);
  white-space: nowrap;
}

.prompt-destinations__tabs button {
  position: relative;
  display: inline-flex;
  min-height: 48px;
  padding: 0 15px;
  border-radius: 0;
  align-items: center;
  gap: 8px;
}

.prompt-destinations__tabs button:hover { color: #25354a; }

.prompt-destinations__tabs button[aria-selected="true"] {
  color: #223247;
  background: transparent;
  box-shadow: none;
}

.prompt-destinations__tabs button[aria-selected="true"]::after {
  position: absolute;
  right: 12px;
  bottom: -1px;
  left: 12px;
  height: 2px;
  border-radius: 2px;
  background: #516f98;
  content: "";
}

.prompt-destinations__tabs img {
  width: 21px;
  height: 21px;
  border-radius: 6px;
  object-fit: contain;
}

.prompt-destination-tab__mark {
  display: grid;
  width: 22px;
  height: 22px;
  border-radius: 6px;
  place-items: center;
  color: #263a56;
  background: #cad9f5;
  font: 700 8px/1 var(--sans);
}

.prompt-destination-tab__mark--kling {
  color: #173221;
  background: #b6e0c1;
  font-size: 10px;
}

.prompt-destinations__motion {
  display: inline-flex;
  min-height: 34px;
  margin-left: 8px;
  padding: 0 10px;
  border: 1px solid rgba(67, 83, 106, .18);
  border-radius: 10px;
  align-items: center;
  color: #53647a;
  background: rgba(255, 255, 255, .34);
  gap: 7px;
}

.prompt-destinations__motion::before {
  color: #51647d;
  content: "Ⅱ";
  font: 700 10px/1 var(--sans);
}

.prompt-destinations__motion[aria-pressed="true"]::before {
  content: "▶";
  font-size: 9px;
}

.prompt-destinations__tabs button:focus-visible,
.prompt-destinations__motion:focus-visible,
.prompt-destination-clico > button:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

.prompt-destinations__stage {
  position: relative;
  width: min(100%, 1160px);
  min-height: 620px;
  margin: 0 auto;
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.prompt-destination-panel {
  position: relative;
  display: block;
  min-height: 620px;
}

.prompt-destination-panel[hidden] { display: none; }

.prompt-destination-app {
  width: calc(100% - 300px);
  min-height: 620px;
  min-width: 0;
  overflow: hidden;
  border: 1px solid rgba(67, 83, 106, .16);
  border-radius: 26px;
  background: #f7f7f8;
  box-shadow: 0 24px 64px rgba(42, 55, 73, .13);
}

.prompt-destination-app__bar {
  display: flex;
  height: 58px;
  padding: 0 160px 0 22px;
  border-bottom: 1px solid rgba(67, 83, 106, .12);
  align-items: center;
  justify-content: space-between;
  color: #27364a;
  background: rgba(255, 255, 255, .93);
}

.prompt-destination-app__bar > div {
  display: flex;
  align-items: center;
  gap: 10px;
}

.prompt-destination-app__bar img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  object-fit: contain;
}

.prompt-destination-app__bar strong { font: 650 14px/1 var(--sans); }

.prompt-destination-app__bar button {
  min-height: 32px;
  padding: 0 12px;
  border: 1px solid rgba(67, 83, 106, .14);
  border-radius: 9px;
  color: #647185;
  background: transparent;
  font: 580 11px/1 var(--sans);
}

.prompt-destination-app__wordmark {
  display: grid;
  min-width: 28px;
  height: 28px;
  padding: 0 6px;
  border-radius: 8px;
  place-items: center;
  color: #2f4360;
  background: #e4eaf2;
  font: 720 11px/1 var(--sans);
}

.prompt-destination-app__canvas {
  position: relative;
  display: flex;
  height: 562px;
  padding: 26px 30px 82px;
  flex-direction: column;
  align-items: center;
  background: #f7f7f8;
}

.prompt-destination-app__conversation {
  width: min(100%, 560px);
  margin-bottom: 16px;
  text-align: right;
}

.prompt-destination-app__conversation p {
  display: inline-block;
  max-width: 86%;
  margin: 0;
  padding: 11px 15px;
  border-radius: 17px 17px 4px 17px;
  color: #39465a;
  background: #e9e9eb;
  font: 540 13px/1.45 var(--sans);
  text-align: left;
}

.prompt-destination-app__result {
  display: grid;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  place-items: center;
  background: #e5e8ed;
  box-shadow: 0 16px 34px rgba(38, 49, 66, .15);
}

.prompt-destination-app__result img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prompt-destination-app__result--portrait {
  width: 288px;
  max-width: 100%;
  height: 357px;
  border-radius: 14px;
}

.prompt-destination-app__result--landscape {
  width: min(100%, 570px);
  aspect-ratio: 16 / 9;
  border-radius: 12px;
}

.prompt-destination-app__result--video-portrait {
  width: 202px;
  max-width: 100%;
  height: 359px;
  border-radius: 12px;
}

.prompt-destination-app__composer {
  position: absolute;
  right: 160px;
  bottom: 22px;
  left: 30px;
  display: flex;
  height: 48px;
  padding: 0 9px 0 17px;
  border: 1px solid rgba(67, 83, 106, .16);
  border-radius: 24px;
  align-items: center;
  justify-content: space-between;
  color: #7b8492;
  background: #fff;
  box-shadow: 0 8px 22px rgba(42, 55, 73, .09);
  font: 500 12px/1 var(--sans);
}

.prompt-destination-app__composer b,
.prompt-destination-app__composer i {
  display: grid;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  place-items: center;
  color: #fff;
  background: #262b31;
  font: 650 14px/1 var(--sans);
  font-style: normal;
}

.prompt-destination-app__timeline {
  display: grid;
  width: min(100%, 620px);
  height: 54px;
  margin-top: 13px;
  padding: 5px;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: #181a1e;
  gap: 5px;
}

.prompt-destination-app__timeline span {
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
}

.prompt-destination-app__timeline span.is-current { border-color: #a4b9e6; }

.prompt-destination-app__timeline img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prompt-destination-app__timeline span:nth-child(2) img { object-position: 36% center; }
.prompt-destination-app__timeline span:nth-child(3) img { object-position: 74% center; }

.prompt-destination-app__shot-notes {
  position: absolute;
  top: 164px;
  right: 34px;
  display: grid;
  width: 136px;
  gap: 8px;
}

.prompt-destination-app__shot-notes span {
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, .1);
  border-radius: 9px;
  color: #bec7c2;
  background: #242826;
  font: 560 10px/1.2 var(--sans);
}

.prompt-destination-clico {
  position: absolute;
  z-index: 3;
  top: 18px;
  right: 18px;
  bottom: 18px;
  display: flex;
  width: 420px;
  min-width: 0;
  padding: 30px 30px 24px;
  border: 1px solid rgba(67, 83, 106, .16);
  border-radius: 22px;
  flex-direction: column;
  color: #27374c;
  background: #f8fafc;
  box-shadow: 0 28px 70px rgba(24, 38, 57, .22);
}

.prompt-destination-clico::before {
  position: absolute;
  top: 50%;
  left: -23px;
  display: grid;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(67, 83, 106, .18);
  border-radius: 50%;
  place-items: center;
  color: #f7f9fc;
  background: #30445f;
  box-shadow: 0 12px 28px rgba(24, 38, 57, .2);
  content: "→";
  font: 650 18px/1 var(--sans);
  transform: translateY(-50%);
}

.prompt-destination-clico > header {
  display: grid;
  min-height: 50px;
  grid-template-columns: 42px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}

.prompt-destination-clico > header img {
  width: 38px;
  height: 38px;
}

.prompt-destination-clico > header div { min-width: 0; }

.prompt-destination-clico > header strong,
.prompt-destination-clico > header span { display: block; }

.prompt-destination-clico > header strong {
  color: #26374d;
  font: 650 17px/1.18 var(--sans);
  letter-spacing: -.02em;
}

.prompt-destination-clico > header span {
  margin-top: 4px;
  color: #758297;
  font: 520 12px/1.2 var(--sans);
}

.prompt-destination-clico__finding {
  margin-top: 24px;
  padding: 18px 0 20px;
  border-top: 1px solid rgba(67, 83, 106, .14);
  border-bottom: 1px solid rgba(67, 83, 106, .14);
}

.prompt-destination-clico__finding strong,
.prompt-destination-clico__prompt label {
  display: block;
  color: #69778a;
  font: 650 12px/1.2 var(--sans);
}

.prompt-destination-clico__finding p {
  margin-top: 10px;
  color: #39495f;
  font: 500 13.5px/1.58 var(--sans);
}

.prompt-destination-clico__prompt {
  display: flex;
  min-height: 218px;
  margin-top: 20px;
  padding: 18px 18px 20px;
  border: 1px solid rgba(67, 83, 106, .14);
  border-radius: 17px;
  flex-direction: column;
  background: rgba(255, 255, 255, .8);
  box-shadow: 0 12px 26px rgba(49, 65, 87, .07);
  flex: 0 0 auto;
}

.prompt-destination-clico__prompt:focus-within {
  border-color: rgba(48, 68, 95, .44);
  box-shadow: 0 0 0 3px rgba(81, 111, 152, .12);
}

.prompt-destination-clico__prompt textarea {
  width: 100%;
  min-height: 0;
  margin-top: 11px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  flex: 1;
  color: #33445b;
  background: transparent;
  box-shadow: none;
  font: 500 13px/1.62 var(--sans);
  resize: none;
}

.prompt-destination-clico__prompt textarea:hover,
.prompt-destination-clico__prompt textarea:focus {
  border: 0;
  background: transparent;
  box-shadow: none;
}

.prompt-destination-clico > button {
  width: fit-content;
  min-height: 45px;
  margin-top: 18px;
  padding: 0 18px;
  border: 1px solid #30445f;
  border-radius: 12px;
  color: #f7f9fb;
  background: #30445f;
  cursor: pointer;
  font: 650 12px/1 var(--sans);
}

.prompt-destination-clico > button:hover { background: #263951; }

.prompt-destination-panel--gemini .prompt-destination-app,
.prompt-destination-panel--gemini .prompt-destination-app__canvas { background: #fbfcff; }

.prompt-destination-panel--gemini .prompt-destination-app__conversation p {
  color: #244b82;
  background: #e9f1ff;
}

.prompt-destination-panel--gemini .prompt-destination-app__composer {
  border-color: rgba(66, 133, 244, .2);
  background: #f1f6ff;
}

.prompt-destination-panel--gemini .prompt-destination-app__composer b {
  color: #3d6ea9;
  background: transparent;
}

.prompt-destination-panel--gemini .prompt-destination-app__composer i { background: #0b57d0; }

.prompt-destination-panel--flow .prompt-destination-app,
.prompt-destination-panel--flow .prompt-destination-app__bar,
.prompt-destination-panel--flow .prompt-destination-app__canvas,
.prompt-destination-panel--grok .prompt-destination-app,
.prompt-destination-panel--grok .prompt-destination-app__bar,
.prompt-destination-panel--grok .prompt-destination-app__canvas,
.prompt-destination-panel--kling .prompt-destination-app,
.prompt-destination-panel--kling .prompt-destination-app__bar,
.prompt-destination-panel--kling .prompt-destination-app__canvas {
  color: #eef1f4;
  background: #111316;
}

.prompt-destination-panel--flow .prompt-destination-app__bar,
.prompt-destination-panel--grok .prompt-destination-app__bar,
.prompt-destination-panel--kling .prompt-destination-app__bar { border-bottom-color: rgba(255, 255, 255, .08); }

.prompt-destination-panel--flow .prompt-destination-app__bar strong,
.prompt-destination-panel--grok .prompt-destination-app__bar strong,
.prompt-destination-panel--kling .prompt-destination-app__bar strong { color: #f2f4f7; }

.prompt-destination-panel--flow .prompt-destination-app__bar button,
.prompt-destination-panel--grok .prompt-destination-app__bar button,
.prompt-destination-panel--kling .prompt-destination-app__bar button {
  border-color: rgba(255, 255, 255, .12);
  color: #bac1cb;
}

.prompt-destination-panel--flow .prompt-destination-app__wordmark {
  color: #0f243f;
  background: #afcaff;
}

.prompt-destination-panel--flow .prompt-destination-app__conversation p,
.prompt-destination-panel--grok .prompt-destination-app__conversation p,
.prompt-destination-panel--kling .prompt-destination-app__conversation p {
  color: #e8ebf0;
  background: #292d33;
}

.prompt-destination-panel--flow .prompt-destination-app__composer,
.prompt-destination-panel--grok .prompt-destination-app__composer,
.prompt-destination-panel--kling .prompt-destination-app__composer {
  border-color: rgba(255, 255, 255, .12);
  color: #8f98a5;
  background: #22262b;
  box-shadow: none;
}

.prompt-destination-panel--flow .prompt-destination-app__composer b,
.prompt-destination-panel--grok .prompt-destination-app__composer b { color: #1a1e24; background: #e7ebf1; }

.prompt-destination-panel--grok .prompt-destination-app__bar img { filter: invert(1); }

.prompt-destination-panel--kling .prompt-destination-app__wordmark,
.prompt-destination-panel--kling .prompt-destination-app__composer b {
  color: #142019;
  background: #9bd5ab;
}

@media (prefers-reduced-motion: no-preference) {
  .prompt-destination-panel.is-active { animation: prompt-destination-in .42s cubic-bezier(.2, .72, .2, 1); }
}

@keyframes prompt-destination-in {
  from { opacity: .2; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.prompt-jobs { padding: 174px 0 74px; }

.prompt-jobs__grid {
  display: grid;
  width: min(100%, 1120px);
  margin: 68px auto 0;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 30px;
}

.prompt-jobs__grid article {
  padding: 24px 4px 0;
  border-top: 1px solid var(--story-line);
}

.prompt-jobs__grid h3 {
  color: var(--story-ink);
  font: 400 25px/1.15 Georgia, "Times New Roman", serif;
  letter-spacing: -.025em;
}

.prompt-jobs__grid p {
  margin-top: 14px;
  color: var(--story-muted);
  font: 400 14px/1.62 var(--sans);
}

.prompt-editorial-system .prompt-connector { padding-top: 170px; }
.prompt-editorial-system .prompt-connector .connector-copy { margin-top: 112px; }
.prompt-editorial-system .story-footer-links { padding-top: 142px; }
.prompt-editorial-system .humanize-faq { padding-top: 144px; }

@media (max-width: 1020px) {
  .prompt-lab__shell { grid-template-columns: 1fr; }

  .prompt-lab__result {
    min-height: 440px;
    border-top: 1px solid var(--prompt-line);
    border-left: 0;
    border-radius: 0 0 30px 30px;
  }

  .web-extension-flow__steps {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .prompt-extension-story {
    grid-template-columns: 1fr;
    gap: 46px;
  }

  .prompt-extension-story__media { height: 560px; }

  .web-extension-flow__step {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(230px, .76fr);
    align-items: center;
    gap: 28px;
  }

  .web-extension-flow__copy { padding: 0 10px 0 0; }

  .web-extension-flow__step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -39px;
    transform: translateX(50%) rotate(90deg);
  }

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

  .prompt-destination-panel { grid-template-columns: minmax(0, 1.6fr) minmax(300px, 1fr); }

  .prompt-destination-app__canvas { padding-inline: 24px; }

  .prompt-destination-app__composer {
    right: 160px;
    left: 24px;
  }

  .prompt-destination-app__result--portrait {
    width: 286px;
    height: 355px;
  }

  .prompt-destination-clico { padding-inline: 25px; }
}

@media (max-width: 900px) {
  .prompt-destinations__stage {
    overflow: hidden;
    border: 1px solid rgba(67, 83, 106, .16);
    border-radius: 22px;
    background: #f4f6f9;
    box-shadow: 0 22px 54px rgba(48, 64, 87, .11);
  }

  .prompt-destination-panel {
    display: grid;
    grid-template-columns: 1fr;
  }

  .prompt-destination-app {
    width: 100%;
    border: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .prompt-destination-app__bar { padding-right: 22px; }

  .prompt-destination-app__canvas { height: 560px; }

  .prompt-destination-app__composer { right: 24px; }

  .prompt-destination-clico {
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    width: 100%;
    min-height: 480px;
    border-top: 1px solid rgba(67, 83, 106, .13);
    border-right: 0;
    border-bottom: 0;
    border-left: 0;
    border-radius: 0;
    box-shadow: none;
  }

  .prompt-destination-clico::before { display: none; }
}

@media (max-width: 767px) {
  .prompt-generator-page .tools-main {
    width: min(var(--tools-page-max), calc(100vw - 32px));
    padding-top: 104px;
  }

  .prompt-generator-page .prompt-hero { min-height: 160px; }

  .prompt-generator-page .prompt-hero h1 {
    font-size: clamp(37px, 12vw, 47px);
    line-height: .96;
  }

  .prompt-generator-page .prompt-hero .tools-detail-hero__lede {
    max-width: 30ch;
    margin-top: 18px;
    font-size: 16px;
  }

  .prompt-lab { margin-top: 22px; }
  .prompt-lab__shell { border-radius: 23px; }

  .prompt-lab__form,
  .prompt-lab__result { padding: 23px 20px; }

  .prompt-lab__form > textarea {
    height: 112px;
    min-height: 112px;
    font-size: 16px;
  }

  .prompt-lab__action-row {
    align-items: stretch;
    flex-direction: column;
    gap: 10px;
  }

  .prompt-type__toggle,
  .prompt-lab__submit { width: 100%; }

  .prompt-type__toggle { justify-content: space-between; }

  .prompt-type__menu {
    top: calc(100% + 8px);
    width: calc(100vw - 72px);
    max-height: 58vh;
  }

  .prompt-type__menu button {
    min-height: 56px;
    grid-template-columns: 1fr auto;
    align-items: start;
  }

  .prompt-type__menu button strong,
  .prompt-type__menu button span { grid-column: 1; }

  .prompt-type__menu button span {
    margin-top: 4px;
    font-size: 12px;
  }

  .prompt-type__menu button[aria-selected="true"]::after {
    grid-row: 1 / span 2;
    grid-column: 2;
    align-self: center;
  }

  .prompt-details__grid { grid-template-columns: 1fr; }
  .prompt-lab__field--wide { grid-column: auto; }

  .prompt-lab__result {
    min-height: 470px;
    border-radius: 0 0 23px 23px;
  }

  .prompt-lab__result pre { max-height: 390px; }

  .prompt-section-heading h2,
  .web-extension-flow__heading h2 {
    font-size: clamp(36px, 11vw, 48px);
    line-height: .98;
  }

  .prompt-section-heading p,
  .web-extension-flow__heading p {
    margin-top: 22px;
    font-size: 15px;
    line-height: 1.62;
  }

  .prompt-result-proof .prompt-section-heading {
    margin-inline: auto;
    text-align: center;
  }

  .prompt-result-proof .prompt-section-heading p { margin-inline: auto; }

  .prompt-result-proof { padding-top: 126px; }
  .prompt-result-proof .prompt-result-flow { margin-top: 54px; }

  .prompt-result-flow__request {
    width: calc(100% - 18px);
    min-height: 66px;
    padding-inline: 18px;
    font-size: 15px;
  }

  .prompt-result-flow__paths {
    --result-flow-gap: 12px;
    margin-top: 46px;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: var(--result-flow-gap);
  }

  .prompt-result-flow__paths::before {
    top: -23px;
    right: calc(25% - var(--result-flow-gap) / 4);
    left: calc(25% - var(--result-flow-gap) / 4);
    width: auto;
    height: 1px;
    background: rgba(83, 103, 130, .28);
  }

  .prompt-result-flow__paths::after {
    display: block;
    top: -46px;
    height: 23px;
  }

  .prompt-result-flow__path::after,
  .prompt-result-flow__path--result::after {
    top: -23px;
    height: 23px;
  }

  .prompt-result-flow__media {
    width: 100%;
    height: auto;
    margin-top: 26px;
    border-radius: 8px;
    aspect-ratio: 1.2;
  }

  .prompt-result-flow__path > p {
    max-width: 18ch;
    margin-top: 14px;
    font-size: 12px;
    line-height: 1.45;
  }

  .prompt-result-proof .story-button { margin-top: 42px; }
  .web-extension-flow { padding-top: 126px; }
  .web-extension-flow__heading h2 span { white-space: normal; }
  .web-extension-flow__steps { margin-top: 48px; }

  .web-extension-flow__step {
    display: block;
    padding: 0;
    border-radius: 0;
  }

  .web-extension-flow__visual { min-height: 230px; }
  .web-extension-flow__visual--create video,
  .web-extension-flow__visual--create > img { height: 230px; }
  .web-extension-flow__copy { padding: 21px 4px 0; }
  .web-extension-flow__copy h3 { font-size: 20px; }

  .prompt-extension-story__media { height: 470px; }
  .prompt-extension-story__menu { left: -4%; width: 68%; }

  .prompt-extension-story__panel {
    top: 4%;
    right: 2%;
    width: 40%;
    height: 92%;
  }

  .prompt-extension-story .web-extension-flow__steps {
    display: block;
    margin-top: 34px;
  }

  .prompt-extension-story .web-extension-flow__step + .web-extension-flow__step { margin-top: 26px; }

  .web-extension-flow__actions {
    width: min(100%, 288px);
    margin-top: 42px;
    flex-direction: column;
    gap: 11px;
  }

  .web-extension-flow__cta { width: 100%; }
  .prompt-models { padding-top: 126px; }

  .prompt-destinations__toolbar {
    position: relative;
    margin-top: 42px;
    padding: 0 48px 0 0;
    border-radius: 0;
  }

  .prompt-destinations__tabs button {
    min-height: 40px;
    padding-inline: 12px;
    font-size: 12px;
  }

  .prompt-destinations__motion {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    min-height: 0;
    padding: 0 9px;
    background: #e7ecf2;
  }

  .prompt-destinations__stage { border-radius: 22px; }

  .prompt-destination-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .prompt-destination-app__bar {
    height: 54px;
    padding-inline: 17px;
  }

  .prompt-destination-app__canvas {
    height: 526px;
    padding: 22px 16px 76px;
  }

  .prompt-destination-app__result--portrait {
    width: 270px;
    height: 335px;
  }

  .prompt-destination-app__result--landscape { margin-top: 22px; }

  .prompt-destination-app__result--video-portrait {
    width: 202px;
    height: 359px;
  }

  .prompt-destination-app__composer {
    right: 16px;
    bottom: 17px;
    left: 16px;
    height: 45px;
  }

  .prompt-destination-app__timeline {
    height: 49px;
    margin-top: 10px;
  }

  .prompt-destination-app__shot-notes {
    top: 145px;
    right: 18px;
    width: 116px;
  }

  .prompt-destination-clico {
    min-height: 508px;
    padding: 28px 22px 24px;
    border-top: 1px solid rgba(67, 83, 106, .13);
    border-left: 0;
  }

  .prompt-destination-clico__finding { margin-top: 24px; }

  .prompt-destination-clico > button {
    width: 100%;
    margin-top: 24px;
  }

  .prompt-models__boundary {
    margin-top: 20px;
    text-align: left;
  }

  .prompt-jobs { padding-top: 126px; }

  .prompt-jobs__grid {
    margin-top: 48px;
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .prompt-jobs__grid article { padding-top: 18px; }
  .prompt-editorial-system .prompt-connector { padding-top: 120px; }
  .prompt-editorial-system .prompt-connector .connector-copy { margin-top: 86px; }

  .prompt-editorial-system .story-footer-links,
  .prompt-editorial-system .humanize-faq { padding-top: 102px; }
}

@media (prefers-reduced-motion: reduce) {
  .prompt-lab__submit,
  .prompt-type__toggle svg,
  .prompt-models__track {
    scroll-behavior: auto;
    transition: none;
  }

  .prompt-lab__submit:hover,
  .prompt-lab__submit:active { transform: none; }

  .web-extension-flow.is-active .web-extension-flow__drag-card,
  .web-extension-flow.is-active .web-extension-flow__drop-target,
  .web-extension-flow.is-active .web-extension-flow__prompt-output,
  .web-extension-flow.is-active .prompt-extension-revision { animation: none; }
}

@media (max-width: 420px) {
  .prompt-destination-app__shot-notes { display: none; }
}

/* Destination result studies */
.prompt-destinations__toolbar {
  margin-top: 26px;
  margin-bottom: 16px;
}

.prompt-destinations__tabs { gap: 8px; }

.prompt-destinations__tabs button {
  min-height: 50px;
  padding-inline: 12px;
  gap: 9px;
  font-size: 13px;
}

.prompt-destinations__tabs button[aria-selected="true"]::after {
  right: 10px;
  left: 10px;
  height: 3px;
  background: #38577f;
}

.prompt-destinations__tabs img,
.prompt-destination-tab__mark {
  width: 22px;
  height: 22px;
}

.prompt-destinations__motion {
  min-height: 38px;
  margin-left: 18px;
  padding: 0 12px;
  border: 0;
  border-left: 1px solid rgba(67, 83, 106, .18);
  border-radius: 0;
  font-size: 12px;
}

.prompt-destinations__stage {
  width: min(100%, 1160px);
  min-height: 660px;
  overflow: hidden;
  border: 1px solid rgba(55, 73, 96, .16);
  border-radius: 24px;
  background: #f7f9fc;
  box-shadow: 0 24px 58px rgba(42, 55, 73, .12);
}

.prompt-destination-panel {
  display: grid;
  min-height: 660px;
  grid-template-columns: minmax(0, 3fr) minmax(390px, 2fr);
}

.prompt-destination-app {
  width: 100%;
  min-height: 660px;
  border: 0;
  border-radius: 0;
  background: #f8f8f9;
  box-shadow: none;
}

.prompt-destination-app__bar {
  height: 62px;
  padding: 0 28px;
  border-bottom-color: rgba(55, 73, 96, .12);
}

.prompt-destination-app__bar > span {
  color: #718096;
  font: 580 12px/1 var(--sans);
}

.prompt-destination-app__canvas {
  display: flex;
  height: 598px;
  padding: 22px 28px 28px;
  flex-direction: column;
}

.prompt-destination-app__request {
  display: flex;
  min-height: 38px;
  margin: 0;
  padding-bottom: 16px;
  border-bottom: 1px solid rgba(55, 73, 96, .12);
  align-items: baseline;
  color: #27364a;
  gap: 18px;
}

.prompt-destination-app__request strong {
  flex: 0 0 auto;
  color: #758297;
  font: 650 12px/1.2 var(--sans);
}

.prompt-destination-app__request span {
  font: 560 14px/1.4 var(--sans);
}

.prompt-destination-app__comparison {
  display: grid;
  min-height: 0;
  margin-top: 18px;
  flex: 1;
  gap: 14px;
}

.prompt-destination-app__comparison figure {
  display: flex;
  min-width: 0;
  margin: 0;
  flex-direction: column;
}

.prompt-destination-app__comparison figcaption {
  min-height: 18px;
  margin-bottom: 9px;
  color: #647389;
  font: 650 13px/1.35 var(--sans);
}

.prompt-destination-app__comparison img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 0;
  border-radius: 12px;
  object-fit: cover;
}

.prompt-destination-app__comparison--portrait,
.prompt-destination-app__comparison--landscape {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.prompt-destination-app__comparison--portrait img {
  aspect-ratio: 4 / 5;
}

.prompt-destination-app__comparison--landscape {
  align-content: center;
}

.prompt-destination-app__comparison--landscape img {
  aspect-ratio: 16 / 9;
}

.prompt-destination-panel--grok .prompt-destination-app__comparison--landscape img {
  aspect-ratio: 4 / 5;
}

.prompt-destination-app__comparison--sequence {
  grid-template-rows: repeat(2, minmax(0, 1fr));
}

.prompt-destination-app__comparison--sequence img {
  height: 192px;
}

.prompt-destination-app__comparison--kling figure:first-child img {
  background: #15171a;
  object-fit: contain;
}

.prompt-destination-clico {
  position: relative;
  z-index: auto;
  inset: auto;
  display: flex;
  width: 100%;
  min-height: 660px;
  padding: 30px 32px 28px;
  border: 0;
  border-left: 1px solid rgba(55, 73, 96, .16);
  border-radius: 0;
  color: #26374d;
  background: #eef3f9;
  box-shadow: none;
}

.prompt-destination-clico::before { display: none; }

.prompt-destination-clico > header {
  min-height: 46px;
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 11px;
}

.prompt-destination-clico > header img {
  width: 34px;
  height: 34px;
}

.prompt-destination-clico > header strong {
  font-size: 16px;
}

.prompt-destination-clico > header span {
  margin-top: 3px;
  font-size: 12px;
}

.prompt-destination-clico__finding {
  margin-top: 34px;
  padding: 0 0 26px;
  border-top: 0;
  border-bottom: 1px solid rgba(55, 73, 96, .16);
}

.prompt-destination-clico__finding strong,
.prompt-destination-clico__prompt label {
  color: #647389;
  font-size: 12.5px;
}

.prompt-destination-clico__finding p {
  margin-top: 11px;
  color: #26374d;
  font: 590 18px/1.45 var(--sans);
  letter-spacing: -.012em;
}

.prompt-destination-clico__prompt {
  min-height: 286px;
  margin-top: 24px;
  padding: 18px 18px 20px;
  border-color: rgba(55, 73, 96, .18);
  border-radius: 14px;
  background: rgba(255, 255, 255, .76);
  box-shadow: none;
  flex: 1;
}

.prompt-destination-clico__prompt textarea {
  margin-top: 12px;
  color: #26374d;
  font: 510 15px/1.58 var(--sans);
}

.prompt-destination-clico > button {
  min-height: 44px;
  margin-top: 20px;
  padding-inline: 18px;
  border-radius: 12px;
  font-size: 12px;
}

.prompt-destination-panel--flow .prompt-destination-app,
.prompt-destination-panel--flow .prompt-destination-app__bar,
.prompt-destination-panel--flow .prompt-destination-app__canvas,
.prompt-destination-panel--grok .prompt-destination-app,
.prompt-destination-panel--grok .prompt-destination-app__bar,
.prompt-destination-panel--grok .prompt-destination-app__canvas,
.prompt-destination-panel--kling .prompt-destination-app,
.prompt-destination-panel--kling .prompt-destination-app__bar,
.prompt-destination-panel--kling .prompt-destination-app__canvas {
  background: #111316;
}

.prompt-destination-panel--flow .prompt-destination-app__request,
.prompt-destination-panel--grok .prompt-destination-app__request,
.prompt-destination-panel--kling .prompt-destination-app__request {
  border-bottom-color: rgba(255, 255, 255, .1);
  color: #f0f2f5;
}

.prompt-destination-panel--flow .prompt-destination-app__request strong,
.prompt-destination-panel--flow .prompt-destination-app__bar > span,
.prompt-destination-panel--flow .prompt-destination-app__comparison figcaption,
.prompt-destination-panel--grok .prompt-destination-app__request strong,
.prompt-destination-panel--grok .prompt-destination-app__bar > span,
.prompt-destination-panel--grok .prompt-destination-app__comparison figcaption,
.prompt-destination-panel--kling .prompt-destination-app__request strong,
.prompt-destination-panel--kling .prompt-destination-app__bar > span,
.prompt-destination-panel--kling .prompt-destination-app__comparison figcaption {
  color: #aab2bf;
}

@media (max-width: 1080px) {
  .prompt-destination-panel {
    grid-template-columns: minmax(0, 1.55fr) minmax(340px, 1fr);
  }

  .prompt-destination-app__canvas { padding-inline: 22px; }
  .prompt-destination-clico { padding-inline: 26px; }
}

@media (max-width: 900px) {
  .prompt-destinations__stage { min-height: 0; }

  .prompt-destination-panel {
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .prompt-destination-app { min-height: 0; }

  .prompt-destination-clico {
    min-height: 0;
    padding: 30px 28px;
    border-top: 1px solid rgba(55, 73, 96, .16);
    border-left: 0;
  }

  .prompt-destination-clico__prompt { min-height: 220px; }
}

@media (max-width: 767px) {
  .prompt-models { padding-top: 84px; }

  .prompt-destinations__toolbar {
    display: grid;
    margin-top: 30px;
    padding-right: 42px;
    grid-template-columns: minmax(0, 1fr);
  }

  .prompt-destinations__tabs { gap: 2px; }

  .prompt-destinations__tabs button {
    min-height: 44px;
    padding-inline: 10px;
    font-size: 12px;
  }

  .prompt-destinations__motion {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 42px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border-left: 1px solid rgba(55, 73, 96, .16);
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .prompt-destinations__motion::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #51647d;
  }

  .prompt-destinations__stage { border-radius: 18px; }

  .prompt-destination-app__bar {
    height: 56px;
    padding-inline: 18px;
  }

  .prompt-destination-app__bar > span { font-size: 11px; }

  .prompt-destination-app__canvas {
    height: auto;
    min-height: 0;
    padding: 18px 16px 22px;
  }

  .prompt-destination-app__request {
    display: grid;
    min-height: 0;
    padding-bottom: 14px;
    gap: 6px;
  }

  .prompt-destination-app__request span { font-size: 13px; }

  .prompt-destination-app__comparison {
    min-height: 0;
    margin-top: 15px;
    gap: 9px;
  }

  .prompt-destination-app__comparison figcaption {
    margin-bottom: 7px;
    font-size: 10.5px;
  }

  .prompt-destination-app__comparison img { border-radius: 9px; }

  .prompt-destination-app__comparison--sequence img { height: 112px; }

  .prompt-destination-clico { padding: 26px 22px 24px; }

  .prompt-destination-clico__finding { margin-top: 28px; }

  .prompt-destination-clico__finding p { font-size: 17px; }

  .prompt-destination-clico__prompt {
    min-height: 210px;
    padding: 16px;
  }

  .prompt-destination-clico__prompt textarea { font-size: 14px; }

  .prompt-destination-clico > button {
    width: 100%;
    margin-top: 18px;
  }
}

/* Continuous prompt result studies */
.prompt-models {
  padding: 150px 0 96px;
}

.prompt-models .prompt-section-heading {
  width: min(100%, 1160px);
  max-width: none;
  margin: 0 auto;
  text-align: left;
}

.prompt-models .prompt-section-heading h2 {
  max-width: 740px;
  font-size: clamp(48px, 4.7vw, 68px);
  line-height: .98;
}

.prompt-models .prompt-section-heading p {
  max-width: 660px;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.prompt-destinations__workspace {
  width: min(100%, 1160px);
  margin: 52px auto 0;
  border-top: 1px solid rgba(49, 66, 90, .2);
  border-bottom: 1px solid rgba(49, 66, 90, .2);
  background: #f5f7fa;
}

.prompt-models .prompt-destinations__toolbar {
  width: 100%;
  min-height: 66px;
  margin: 0;
  padding: 0 14px 0 8px;
  border-bottom: 1px solid rgba(49, 66, 90, .17);
  align-items: stretch;
  background: rgba(255, 255, 255, .42);
}

.prompt-models .prompt-destinations__tabs {
  align-items: stretch;
  gap: 0;
}

.prompt-models .prompt-destinations__tabs button {
  min-height: 65px;
  padding: 0 16px;
  border: 0;
  border-radius: 0;
  color: #657287;
  gap: 9px;
  font-size: 13px;
}

.prompt-models .prompt-destinations__tabs button:hover {
  color: #233248;
  background: rgba(215, 224, 237, .45);
}

.prompt-models .prompt-destinations__tabs button[aria-selected="true"] {
  color: #1f2e43;
  background: #dfe7f2;
}

.prompt-models .prompt-destinations__tabs button[aria-selected="true"]::after {
  right: 0;
  bottom: 0;
  left: 0;
  height: 3px;
  border-radius: 0;
  background: #38577f;
}

.prompt-models .prompt-destinations__tabs img,
.prompt-models .prompt-destination-tab__mark {
  width: 22px;
  height: 22px;
  border-radius: 6px;
}

.prompt-models .prompt-destinations__motion {
  min-height: 36px;
  margin: auto 0 auto 14px;
  padding: 0 12px;
  border: 1px solid rgba(49, 66, 90, .18);
  border-radius: 0;
  color: #536278;
  background: rgba(255, 255, 255, .72);
  font-size: 12px;
  flex: 0 0 auto;
}

.prompt-models .prompt-destinations__motion:hover {
  color: #24344a;
  background: #fff;
}

.prompt-models .prompt-destinations__stage {
  width: 100%;
  min-height: 640px;
  margin: 0;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.prompt-models .prompt-destination-panel {
  display: block;
  min-height: 640px;
}

.prompt-models .prompt-destination-panel[hidden] {
  display: none;
}

.prompt-study__brief {
  display: grid;
  min-height: 72px;
  padding: 0 26px;
  border-bottom: 1px solid rgba(49, 66, 90, .15);
  grid-template-columns: minmax(150px, 1fr) minmax(0, 2.15fr) minmax(150px, 1fr);
  align-items: center;
  background: #f8fafc;
}

.prompt-study__brief > div {
  display: flex;
  align-items: center;
  color: #26364b;
  gap: 10px;
}

.prompt-study__brief > div img {
  width: 24px;
  height: 24px;
  border-radius: 7px;
  object-fit: contain;
}

.prompt-study__brief > div strong {
  font: 650 14px/1 var(--sans);
}

.prompt-study__brief p {
  margin: 0;
  color: #26364b;
  font: 600 15px/1.45 var(--sans);
  text-align: center;
}

.prompt-study__flow {
  display: grid;
  min-height: 568px;
  grid-template-columns: minmax(0, 1fr) minmax(330px, .94fr) minmax(0, 1fr);
}

.prompt-study__result {
  display: grid;
  min-width: 0;
  min-height: 568px;
  margin: 0;
  padding: 24px 24px 22px;
  grid-template-rows: minmax(0, 1fr) auto;
  color: #2b3a4f;
  background: #f1f3f6;
}

.prompt-study__result--directed {
  background: #f8fafc;
}

.prompt-study__media {
  display: grid;
  min-height: 0;
  overflow: hidden;
  place-items: center;
  background: #dfe4ea;
}

.prompt-study__media img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prompt-study__result--portrait .prompt-study__media img {
  object-position: center;
}

.prompt-study__result--landscape .prompt-study__media,
.prompt-study__result--sequence .prompt-study__media {
  background: #171a1e;
}

.prompt-study__result--landscape .prompt-study__media img,
.prompt-study__result--sequence .prompt-study__media img {
  object-fit: contain;
}

.prompt-study__result figcaption {
  display: block;
  min-height: 106px;
  padding-top: 18px;
}

.prompt-study__result figcaption strong,
.prompt-study__result figcaption span {
  display: block;
}

.prompt-study__result figcaption strong {
  color: #26364b;
  font: 650 17px/1.28 var(--sans);
  letter-spacing: -.018em;
}

.prompt-study__result figcaption span {
  margin-top: 7px;
  color: #667488;
  font: 500 13.5px/1.46 var(--sans);
}

.prompt-models .prompt-destination-clico {
  position: relative;
  z-index: 1;
  inset: auto;
  display: flex;
  width: 100%;
  min-width: 0;
  min-height: 568px;
  padding: 27px 27px 24px;
  border: 0;
  border-right: 1px solid rgba(255, 255, 255, .13);
  border-left: 1px solid rgba(255, 255, 255, .13);
  border-radius: 0;
  flex-direction: column;
  color: #eef3f9;
  background: #304766;
  box-shadow: none;
}

.prompt-models .prompt-destination-clico::before {
  display: none;
}

.prompt-models .prompt-destination-clico > header {
  display: grid;
  min-height: 42px;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
}

.prompt-models .prompt-destination-clico > header img {
  width: 34px;
  height: 34px;
}

.prompt-models .prompt-destination-clico > header strong,
.prompt-models .prompt-destination-clico > header span {
  display: block;
}

.prompt-models .prompt-destination-clico > header strong {
  color: #fff;
  font: 660 16px/1.16 var(--sans);
}

.prompt-models .prompt-destination-clico > header span {
  margin-top: 4px;
  color: #bac8da;
  font: 520 12px/1.2 var(--sans);
}

.prompt-models .prompt-destination-clico__finding {
  margin: 26px 0 0;
  padding: 0 0 22px;
  border: 0;
  border-bottom: 1px solid rgba(255, 255, 255, .17);
  color: #fff;
  font: 590 17px/1.42 var(--sans);
  letter-spacing: -.012em;
}

.prompt-models .prompt-destination-clico__prompt {
  display: flex;
  min-height: 270px;
  margin-top: 22px;
  padding: 17px 17px 18px;
  border: 1px solid rgba(255, 255, 255, .24);
  border-radius: 10px;
  flex: 1;
  flex-direction: column;
  background: rgba(13, 28, 48, .22);
  box-shadow: none;
}

.prompt-models .prompt-destination-clico__prompt:focus-within {
  border-color: rgba(255, 255, 255, .62);
  box-shadow: 0 0 0 3px rgba(255, 255, 255, .12);
}

.prompt-models .prompt-destination-clico__prompt label {
  display: block;
  color: #d6e0ec;
  font: 650 12px/1.2 var(--sans);
}

.prompt-models .prompt-destination-clico__prompt textarea {
  width: 100%;
  min-height: 0;
  margin-top: 12px;
  padding: 0;
  border: 0;
  border-radius: 0;
  outline: 0;
  flex: 1;
  color: #fff;
  background: transparent;
  box-shadow: none;
  font: 500 14px/1.55 var(--sans);
  resize: none;
}

.prompt-models .prompt-destination-clico__prompt textarea:hover,
.prompt-models .prompt-destination-clico__prompt textarea:focus {
  border: 0;
  color: #fff;
  background: transparent;
  box-shadow: none;
}

.prompt-models .prompt-destination-clico > button {
  width: fit-content;
  min-height: 42px;
  margin-top: 18px;
  padding: 0 17px;
  border: 1px solid #fff;
  border-radius: 9px;
  color: #263b58;
  background: #fff;
  cursor: pointer;
  font: 680 12px/1 var(--sans);
}

.prompt-models .prompt-destination-clico > button:hover {
  color: #1d304b;
  background: #edf3fa;
}

.prompt-models .prompt-destinations__tabs button:focus-visible,
.prompt-models .prompt-destinations__motion:focus-visible,
.prompt-models .prompt-destination-clico > button:focus-visible,
.prompt-models .prompt-destination-clico__prompt textarea:focus-visible {
  outline: 3px solid var(--focus-ring);
  outline-offset: 2px;
}

@media (max-width: 1020px) {
  .prompt-models .prompt-destinations__tabs button {
    padding-inline: 12px;
    font-size: 12px;
  }

  .prompt-study__flow {
    grid-template-columns: minmax(0, 1fr) minmax(300px, 1.04fr) minmax(0, 1fr);
  }

  .prompt-study__result {
    padding-inline: 18px;
  }

  .prompt-models .prompt-destination-clico {
    padding-inline: 22px;
  }
}

@media (max-width: 900px) {
  .prompt-models {
    padding-top: 116px;
  }

  .prompt-models .prompt-section-heading h2 {
    max-width: 640px;
  }

  .prompt-destinations__workspace {
    margin-top: 42px;
  }

  .prompt-study__brief {
    min-height: 84px;
    padding: 15px 22px;
    grid-template-columns: minmax(130px, auto) minmax(0, 1fr);
    gap: 22px;
  }

  .prompt-study__brief p {
    text-align: right;
  }

  .prompt-study__flow {
    display: grid;
    min-height: 0;
    grid-template-columns: 1fr;
  }

  .prompt-study__result {
    min-height: 0;
    padding: 26px;
    border-bottom: 1px solid rgba(49, 66, 90, .15);
  }

  .prompt-study__media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .prompt-study__result--portrait .prompt-study__media img {
    object-fit: contain;
  }

  .prompt-study__result figcaption {
    min-height: 0;
    padding-top: 18px;
  }

  .prompt-models .prompt-destination-clico {
    min-height: 520px;
    padding: 30px 28px 26px;
    border: 0;
    border-bottom: 1px solid rgba(49, 66, 90, .15);
  }

  .prompt-models .prompt-destination-clico__prompt {
    min-height: 250px;
  }
}

@media (max-width: 767px) {
  .prompt-models {
    padding: 92px 0 68px;
  }

  .prompt-models .prompt-section-heading h2 {
    font-size: clamp(40px, 12vw, 54px);
  }

  .prompt-models .prompt-section-heading p {
    margin-top: 18px;
    font-size: 16px;
  }

  .prompt-destinations__workspace {
    margin-top: 34px;
  }

  .prompt-models .prompt-destinations__toolbar {
    position: relative;
    display: block;
    min-height: 58px;
    padding: 0 48px 0 0;
  }

  .prompt-models .prompt-destinations__tabs button {
    min-height: 57px;
    padding-inline: 11px;
  }

  .prompt-models .prompt-destinations__motion {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 48px;
    min-height: 0;
    margin: 0;
    padding: 0;
    border: 0;
    border-left: 1px solid rgba(49, 66, 90, .17);
    overflow: hidden;
    color: transparent;
    font-size: 0;
  }

  .prompt-models .prompt-destinations__motion::before {
    position: absolute;
    inset: 0;
    display: grid;
    place-items: center;
    color: #4f6178;
  }

  .prompt-study__brief {
    display: block;
    padding: 17px 18px 18px;
  }

  .prompt-study__brief p {
    margin-top: 13px;
    font-size: 14px;
    text-align: left;
  }

  .prompt-study__result {
    padding: 18px 18px 20px;
  }

  .prompt-study__media {
    aspect-ratio: 4 / 5;
  }

  .prompt-study__result--landscape .prompt-study__media,
  .prompt-study__result--sequence .prompt-study__media {
    aspect-ratio: 16 / 10;
  }

  .prompt-study__result figcaption strong {
    font-size: 16px;
  }

  .prompt-study__result figcaption span {
    font-size: 13px;
  }

  .prompt-models .prompt-destination-clico {
    min-height: 500px;
    padding: 26px 22px 24px;
  }

  .prompt-models .prompt-destination-clico__finding {
    font-size: 16px;
  }

  .prompt-models .prompt-destination-clico__prompt {
    min-height: 244px;
    padding: 16px;
  }

  .prompt-models .prompt-destination-clico__prompt textarea {
    font-size: 14px;
  }

  .prompt-models .prompt-destination-clico > button {
    width: 100%;
  }
}

/* Result first composition with a shared Clico editing dock */
.prompt-models {
  padding-top: 126px;
}

.prompt-destinations__workspace {
  margin-top: 38px;
}

.prompt-models .prompt-destinations__toolbar {
  min-height: 60px;
}

.prompt-models .prompt-destinations__tabs button {
  min-height: 59px;
}

.prompt-models .prompt-destinations__tabs button:not([aria-selected="true"]) img,
.prompt-models .prompt-destinations__tabs button:not([aria-selected="true"]) .prompt-destination-tab__mark {
  display: none;
}

.prompt-models .prompt-destinations__tabs button[aria-selected="true"] {
  color: #fff;
  background: #304766;
}

.prompt-models .prompt-destinations__tabs button[aria-selected="true"]::after {
  display: none;
}

.prompt-study__brief {
  display: block;
  min-height: 72px;
  padding: 0 26px;
  align-content: center;
}

.prompt-study__brief > div {
  display: none;
}

.prompt-study__brief p {
  font-size: 17px;
  text-align: left;
}

.prompt-study__flow {
  display: grid;
  min-height: 0;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas:
    "weak directed"
    "editor editor";
}

.prompt-study__result {
  min-height: 510px;
  padding: 22px 22px 20px;
  grid-template-rows: 400px auto;
}

.prompt-study__result--weak {
  grid-area: weak;
  border-right: 1px solid rgba(49, 66, 90, .15);
}

.prompt-study__result--directed {
  grid-area: directed;
}

.prompt-study__media img,
.prompt-study__result--portrait .prompt-study__media img,
.prompt-study__result--landscape .prompt-study__media img,
.prompt-study__result--sequence .prompt-study__media img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.prompt-study__result figcaption {
  min-height: 0;
  padding-top: 17px;
}

.prompt-models .prompt-destination-clico {
  grid-area: editor;
  display: grid;
  width: 100%;
  min-height: 190px;
  padding: 24px 26px;
  border: 0;
  border-top: 1px solid rgba(49, 66, 90, .18);
  grid-template-columns: minmax(220px, .75fr) minmax(0, 1.9fr) auto;
  grid-template-rows: auto 1fr;
  align-items: start;
  color: #26364b;
  background: #dfe7f2;
  column-gap: 26px;
}

.prompt-models .prompt-destination-clico > header {
  grid-column: 1;
  grid-row: 1;
}

.prompt-models .prompt-destination-clico > header strong {
  color: #26364b;
}

.prompt-models .prompt-destination-clico > header span {
  color: #687991;
}

.prompt-models .prompt-destination-clico__finding {
  grid-column: 1;
  grid-row: 2;
  margin: 16px 0 0;
  padding: 0;
  border: 0;
  color: #2f4057;
  font-size: 15px;
  line-height: 1.42;
}

.prompt-models .prompt-destination-clico__prompt {
  grid-column: 2;
  grid-row: 1 / span 2;
  min-height: 142px;
  margin: 0;
  padding: 15px 17px 16px;
  border-color: rgba(49, 66, 90, .22);
  background: rgba(255, 255, 255, .72);
}

.prompt-models .prompt-destination-clico__prompt label {
  color: #67758a;
}

.prompt-models .prompt-destination-clico__prompt textarea,
.prompt-models .prompt-destination-clico__prompt textarea:hover,
.prompt-models .prompt-destination-clico__prompt textarea:focus {
  color: #26364b;
}

.prompt-models .prompt-destination-clico > button {
  grid-column: 3;
  grid-row: 1 / span 2;
  align-self: end;
  min-width: 116px;
  margin: 0;
  border-color: #304766;
  color: #fff;
  background: #304766;
}

.prompt-models .prompt-destination-clico > button:hover {
  color: #fff;
  background: #233a59;
}

@media (max-width: 900px) {
  .prompt-models {
    padding-top: 108px;
  }

  .prompt-study__flow {
    grid-template-columns: 1fr;
    grid-template-areas:
      "weak"
      "editor"
      "directed";
  }

  .prompt-study__result {
    min-height: 0;
    padding: 24px;
    grid-template-rows: minmax(0, auto) auto;
  }

  .prompt-study__result--weak {
    border-right: 0;
  }

  .prompt-study__media {
    min-height: 0;
    aspect-ratio: 16 / 11;
  }

  .prompt-models .prompt-destination-clico {
    min-height: 0;
    padding: 28px;
    grid-template-columns: minmax(190px, .75fr) minmax(0, 1.8fr);
    grid-template-rows: auto 1fr auto;
  }

  .prompt-models .prompt-destination-clico__prompt {
    grid-column: 2;
    grid-row: 1 / span 2;
  }

  .prompt-models .prompt-destination-clico > button {
    grid-column: 1;
    grid-row: 3;
    align-self: end;
    width: fit-content;
    margin-top: 18px;
  }
}

@media (max-width: 767px) {
  .prompt-models {
    padding-top: 86px;
  }

  .prompt-destinations__workspace {
    margin-top: 30px;
  }

  .prompt-models .prompt-destinations__tabs button {
    min-height: 57px;
  }

  .prompt-study__brief {
    min-height: 68px;
    padding: 15px 18px;
  }

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

  .prompt-study__result {
    padding: 18px 18px 20px;
  }

  .prompt-study__media,
  .prompt-study__result--portrait .prompt-study__media {
    aspect-ratio: 4 / 5;
  }

  .prompt-study__result--landscape .prompt-study__media,
  .prompt-study__result--sequence .prompt-study__media {
    aspect-ratio: 16 / 10;
  }

  .prompt-models .prompt-destination-clico {
    display: flex;
    min-height: 0;
    padding: 26px 22px 24px;
  }

  .prompt-models .prompt-destination-clico__finding {
    margin-top: 20px;
  }

  .prompt-models .prompt-destination-clico__prompt {
    min-height: 250px;
    margin-top: 20px;
  }

  .prompt-models .prompt-destination-clico > button {
    width: 100%;
    margin-top: 18px;
  }
}

/* Editorial comparison with an editing dock that bridges both results */
.prompt-models {
  padding-top: 108px;
}

.prompt-destinations__workspace {
  margin-top: 30px;
  border: 0;
  background: transparent;
}

.prompt-models .prompt-destinations__toolbar {
  min-height: 56px;
  padding: 0;
  border-top: 1px solid rgba(49, 66, 90, .18);
  border-bottom: 1px solid rgba(49, 66, 90, .18);
  background: transparent;
}

.prompt-models .prompt-destinations__tabs button {
  min-height: 55px;
  padding: 0 17px;
}

.prompt-models .prompt-destinations__tabs button[aria-selected="true"] {
  color: #22334a;
  background: transparent;
}

.prompt-models .prompt-destinations__tabs button[aria-selected="true"]::after {
  display: block;
  right: 14px;
  bottom: -1px;
  left: 14px;
  height: 2px;
  background: #304766;
}

.prompt-models .prompt-destinations__motion {
  margin-right: 2px;
  border: 0;
  background: transparent;
}

.prompt-models .prompt-destinations__motion:hover {
  background: rgba(255, 255, 255, .54);
}

.prompt-models .prompt-destinations__stage,
.prompt-models .prompt-destination-panel {
  min-height: 0;
  overflow: visible;
}

.prompt-study__brief {
  min-height: 92px;
  padding: 0 2px;
  border: 0;
  background: transparent;
}

.prompt-study__brief p {
  color: #27374d;
  font: 600 20px/1.35 var(--sans);
  letter-spacing: -.018em;
}

.prompt-study__flow {
  position: relative;
  display: grid;
  padding: 0 22px;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  grid-template-areas: "weak directed";
  gap: 44px;
}

.prompt-study__result {
  min-height: 0;
  padding: 0;
  grid-template-rows: 468px auto;
  background: transparent;
}

.prompt-study__result--weak {
  border: 0;
}

.prompt-study__media {
  position: relative;
  background: #dce2e9;
}

.prompt-study__media img,
.prompt-study__result--portrait .prompt-study__media img,
.prompt-study__result--landscape .prompt-study__media img,
.prompt-study__result--sequence .prompt-study__media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  max-height: none;
  object-fit: contain;
}

.prompt-destination-panel--chatgpt .prompt-study__media,
.prompt-destination-panel--gemini .prompt-study__media {
  width: min(100%, 374px);
  justify-self: center;
}

.prompt-study__result--landscape .prompt-study__media,
.prompt-study__result--sequence .prompt-study__media {
  background: #181b20;
}

.prompt-study__result figcaption {
  padding: 146px 4px 0;
}

.prompt-study__result figcaption strong {
  font-size: 19px;
  line-height: 1.25;
}

.prompt-study__result figcaption span {
  max-width: 46ch;
  margin-top: 8px;
  font-size: 14px;
}

.prompt-models .prompt-destination-clico {
  position: absolute;
  z-index: 3;
  top: 396px;
  right: 84px;
  left: 84px;
  display: grid;
  width: auto;
  min-height: 188px;
  padding: 24px 26px;
  border: 1px solid rgba(255, 255, 255, .18);
  grid-template-columns: minmax(210px, .72fr) minmax(0, 1.9fr) auto;
  grid-template-rows: auto 1fr;
  color: #edf3fa;
  background: #304766;
  box-shadow: 0 20px 48px rgba(35, 52, 76, .18);
  column-gap: 26px;
}

.prompt-models .prompt-destination-clico > header strong {
  color: #fff;
}

.prompt-models .prompt-destination-clico > header span {
  color: #bdcbdd;
}

.prompt-models .prompt-destination-clico__finding {
  margin-top: 16px;
  color: #fff;
}

.prompt-models .prompt-destination-clico__prompt {
  min-height: 138px;
  border-color: rgba(255, 255, 255, .24);
  background: rgba(12, 28, 49, .24);
}

.prompt-models .prompt-destination-clico__prompt label {
  color: #d4dfec;
}

.prompt-models .prompt-destination-clico__prompt textarea,
.prompt-models .prompt-destination-clico__prompt textarea:hover,
.prompt-models .prompt-destination-clico__prompt textarea:focus {
  color: #fff;
}

.prompt-models .prompt-destination-clico > button {
  border-color: #fff;
  color: #243a58;
  background: #fff;
}

.prompt-models .prompt-destination-clico > button:hover {
  color: #1f334f;
  background: #edf3fa;
}

@media (max-width: 900px) {
  .prompt-models {
    padding-top: 96px;
  }

  .prompt-study__flow {
    padding: 0;
    grid-template-columns: 1fr;
    grid-template-areas:
      "weak"
      "editor"
      "directed";
    gap: 0;
  }

  .prompt-study__result {
    padding: 24px;
    grid-template-rows: minmax(0, auto) auto;
    background: #f3f5f8;
  }

  .prompt-study__result figcaption {
    padding: 18px 0 0;
  }

  .prompt-models .prompt-destination-clico {
    position: relative;
    inset: auto;
    grid-area: editor;
    width: 100%;
    min-height: 0;
    box-shadow: none;
  }
}

@media (max-width: 767px) {
  .prompt-models {
    padding-top: 82px;
  }

  .prompt-models .prompt-destinations__toolbar {
    min-height: 56px;
  }

  .prompt-models .prompt-destinations__tabs button {
    min-height: 55px;
  }

  .prompt-study__brief {
    min-height: 74px;
    padding: 14px 2px;
  }

  .prompt-study__brief p {
    font-size: 17px;
  }

  .prompt-study__result {
    padding: 18px;
  }

  .prompt-models .prompt-destination-clico {
    display: flex;
    padding: 26px 22px 24px;
  }
}

/* Final image flowchart composition */
.prompt-models {
  padding-top: 96px;
}

.prompt-destinations__workspace {
  margin-top: 24px;
}

.prompt-models .prompt-destinations__toolbar {
  min-height: 50px;
  border-top: 0;
}

.prompt-models .prompt-destinations__tabs button {
  min-height: 49px;
  padding: 0 18px 0 0;
  font-size: 13px;
}

.prompt-models .prompt-destinations__tabs button + button {
  padding-left: 18px;
}

.prompt-models .prompt-destinations__tabs button img,
.prompt-models .prompt-destinations__tabs button .prompt-destination-tab__mark {
  display: none;
}

.prompt-models .prompt-destinations__tabs button[aria-selected="true"] {
  font-size: 15px;
}

.prompt-models .prompt-destinations__tabs button[aria-selected="true"]::after {
  right: 18px;
  left: 0;
}

.prompt-models .prompt-destinations__tabs button + button[aria-selected="true"]::after {
  left: 18px;
}

.prompt-models .prompt-destinations__motion {
  min-height: 34px;
  margin-right: 0;
  padding-right: 0;
}

.prompt-study__brief {
  min-height: 78px;
  padding: 0;
}

.prompt-study__brief p {
  font-size: 18px;
}

.prompt-study__flow {
  position: relative;
  display: grid;
  padding: 0;
  grid-template-columns: minmax(0, 1fr) minmax(320px, .88fr) minmax(0, 1fr);
  grid-template-areas: "weak editor directed";
  align-items: start;
  gap: 38px;
}

.prompt-study__flow::before {
  position: absolute;
  z-index: 0;
  top: 246px;
  right: 26%;
  left: 26%;
  height: 1px;
  background: rgba(48, 71, 102, .28);
  content: "";
}

.prompt-study__result {
  position: relative;
  z-index: 1;
  min-height: 0;
  padding: 0;
  grid-template-rows: 450px auto;
  background: transparent;
}

.prompt-study__result--weak {
  grid-area: weak;
}

.prompt-study__result--directed {
  grid-area: directed;
}

.prompt-study__media,
.prompt-destination-panel--chatgpt .prompt-study__media,
.prompt-destination-panel--gemini .prompt-study__media {
  width: 100%;
  height: 450px;
  justify-self: stretch;
}

.prompt-study__result figcaption {
  padding: 18px 2px 0;
}

.prompt-study__result figcaption strong {
  font-size: 18px;
}

.prompt-study__result figcaption span {
  font-size: 13.5px;
}

.prompt-models .prompt-destination-clico {
  position: relative;
  z-index: 2;
  inset: auto;
  grid-area: editor;
  display: flex;
  width: 100%;
  min-height: 438px;
  margin-top: 12px;
  padding: 24px 24px 22px;
  border: 1px solid rgba(48, 71, 102, .18);
  border-top: 4px solid #304766;
  flex-direction: column;
  color: #27384e;
  background: #e5ebf4;
  box-shadow: none;
}

.prompt-models .prompt-destination-clico > header {
  display: grid;
}

.prompt-models .prompt-destination-clico > header strong {
  color: #26374d;
}

.prompt-models .prompt-destination-clico > header span {
  color: #6c7c92;
}

.prompt-models .prompt-destination-clico__finding {
  margin: 22px 0 0;
  padding: 0 0 20px;
  border-bottom: 1px solid rgba(48, 71, 102, .16);
  color: #2d3e55;
  font-size: 16px;
}

.prompt-models .prompt-destination-clico__prompt {
  min-height: 212px;
  margin: 20px 0 0;
  padding: 15px 16px 16px;
  border-color: rgba(48, 71, 102, .2);
  background: rgba(255, 255, 255, .68);
}

.prompt-models .prompt-destination-clico__prompt label {
  color: #66758b;
}

.prompt-models .prompt-destination-clico__prompt textarea,
.prompt-models .prompt-destination-clico__prompt textarea:hover,
.prompt-models .prompt-destination-clico__prompt textarea:focus {
  color: #27384e;
  font-size: 13.5px;
}

.prompt-models .prompt-destination-clico > button {
  align-self: flex-start;
  min-width: 116px;
  margin-top: 16px;
  border-color: #304766;
  color: #fff;
  background: #304766;
}

.prompt-models .prompt-destination-clico > button:hover {
  color: #fff;
  background: #233a59;
}

@media (max-width: 1020px) {
  .prompt-study__flow {
    grid-template-columns: minmax(0, 1fr) minmax(290px, .96fr) minmax(0, 1fr);
    gap: 24px;
  }

  .prompt-study__result,
  .prompt-study__media,
  .prompt-destination-panel--chatgpt .prompt-study__media,
  .prompt-destination-panel--gemini .prompt-study__media {
    height: 410px;
    grid-template-rows: 410px auto;
  }

  .prompt-study__flow::before {
    top: 226px;
  }

  .prompt-models .prompt-destination-clico {
    min-height: 412px;
  }

  .prompt-models .prompt-destination-clico__prompt {
    min-height: 190px;
  }
}

@media (max-width: 900px) {
  .prompt-study__flow {
    grid-template-columns: 1fr;
    grid-template-areas:
      "weak"
      "editor"
      "directed";
    gap: 0;
  }

  .prompt-study__flow::before {
    display: none;
  }

  .prompt-study__result {
    padding: 24px;
    background: #f3f5f8;
  }

  .prompt-study__result,
  .prompt-study__media,
  .prompt-destination-panel--chatgpt .prompt-study__media,
  .prompt-destination-panel--gemini .prompt-study__media {
    width: 100%;
    height: auto;
    grid-template-rows: minmax(0, auto) auto;
  }

  .prompt-models .prompt-destination-clico {
    min-height: 0;
    margin: 0;
    padding: 28px;
    border-right: 0;
    border-left: 0;
  }
}

@media (max-width: 767px) {
  .prompt-models {
    padding-top: 78px;
  }

  .prompt-models .prompt-destinations__tabs button {
    min-height: 49px;
    padding-right: 14px;
  }

  .prompt-models .prompt-destinations__tabs button + button {
    padding-left: 14px;
  }

  .prompt-study__brief {
    min-height: 70px;
  }

  .prompt-study__result {
    padding: 18px;
  }

  .prompt-models .prompt-destination-clico {
    padding: 26px 22px 24px;
  }
}

/* Linear result proof and prompt specific Extension workflow */
.prompt-result-proof {
  padding: 128px 0 64px;
}

.prompt-result-proof .prompt-section-heading {
  display: block;
  width: min(100%, 46rem);
  margin-inline-start: max(0px, calc((100% - 1080px) / 2));
  padding-top: 32px;
  border-top: 1px solid var(--story-line);
  text-align: left;
}

.prompt-result-proof .prompt-section-heading h2 {
  max-width: none;
  font-size: clamp(34px, 3.2vw, 46px);
  line-height: 1.04;
}

.prompt-result-proof .prompt-section-heading p {
  max-width: 42rem;
  margin: 22px 0 0;
  font-size: 18px;
  line-height: 1.55;
}

.prompt-result-proof .prompt-result-flow {
  width: min(100%, 1080px);
  margin: 72px auto 0;
}

.prompt-result-proof .story-button {
  margin-top: 72px;
}

.prompt-result-flow__paths {
  display: grid;
  margin: 0;
  grid-template-columns: minmax(0, 1fr) 64px minmax(0, 1fr);
  align-items: start;
  gap: 18px;
}

.prompt-result-flow__paths::before,
.prompt-result-flow__paths::after,
.prompt-result-flow__path::after {
  display: none;
}

.prompt-result-flow__path {
  display: grid;
  min-width: 0;
  grid-template-rows: 168px auto auto;
  align-content: start;
  justify-items: stretch;
}

.prompt-result-flow__request {
  display: flex;
  width: 100%;
  height: 168px;
  min-height: 0;
  margin: 0;
  padding: 24px 26px;
  border: 1px solid rgba(83, 103, 130, .2);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  color: #303b4c;
  background: rgba(255, 255, 255, .5);
  box-shadow: none;
  text-align: left;
}

.prompt-result-flow__request header {
  margin-bottom: 16px;
  color: #52637a;
  font: 700 13px/1.2 var(--sans);
}

.prompt-result-flow__request p {
  margin: 0;
  font: 580 20px/1.4 var(--sans);
}

.prompt-result-flow__media {
  width: 100%;
  height: auto;
  margin: 22px 0 0;
  border-radius: 20px;
  aspect-ratio: 3 / 2;
  background: #e5e9ef;
}

.prompt-result-flow__media > img {
  object-fit: cover;
}

.prompt-result-flow__path > p {
  display: grid;
  max-width: none;
  margin: 16px 4px 0;
  color: #34475e;
  text-align: left;
  gap: 5px;
}

.prompt-result-flow__path > p strong {
  font-size: 13px;
  font-weight: 760;
}

.prompt-result-flow__path > p span {
  color: #5d6d82;
  font-size: 13px;
  font-weight: 520;
}

.prompt-result-flow__refinement {
  display: flex;
  width: 100%;
  height: 168px;
  min-width: 0;
  min-height: 0;
  padding: 20px 24px;
  border: 1px solid rgba(74, 96, 185, .28);
  border-radius: 20px;
  flex-direction: column;
  justify-content: center;
  color: #34475e;
  background: rgba(250, 252, 255, .94);
  box-shadow: none;
}

.prompt-result-flow__refinement header {
  display: flex;
  margin-bottom: 18px;
  align-items: center;
  gap: 9px;
}

.prompt-result-flow__refinement header img {
  width: 28px;
  height: 28px;
}

.prompt-result-flow__refinement header strong {
  color: #2e4058;
  font-size: 13px;
}

.prompt-result-flow__refinement p {
  margin: 0;
  font: 540 14px/1.55 var(--sans);
}

.prompt-result-flow__refinement p + p {
  margin-top: 8px;
}

.prompt-result-flow__direction {
  display: grid;
  margin-top: 64px;
  place-items: center;
}

.prompt-result-flow__direction span {
  display: grid;
  width: 30px;
  height: 30px;
  border: 1px solid rgba(83, 103, 130, .18);
  border-radius: 50%;
  place-items: center;
  color: #52647f;
  background: #f4f7fb;
  font: 650 14px/1 var(--sans);
}

.prompt-result-flow__refinement::before,
.prompt-result-flow__path--result::before {
  display: none;
}

.prompt-extension-story .web-extension-flow__copy {
  padding: 20px 4px 0;
}

.prompt-extension-story .web-extension-flow__step:not(:last-child)::after {
  display: grid;
}

@media (max-width: 1020px) {
  .prompt-result-flow__paths {
    grid-template-columns: minmax(0, 1fr) 48px minmax(0, 1fr);
    gap: 12px;
  }

  .prompt-result-flow__path {
    grid-template-rows: 210px auto auto;
  }

  .prompt-result-flow__request,
  .prompt-result-flow__refinement {
    height: 210px;
    padding: 20px;
  }

  .prompt-result-flow__direction {
    margin-top: 90px;
  }
}

@media (max-width: 767px) {
  .prompt-result-proof {
    padding: 96px 0 48px;
  }

  .prompt-result-proof .prompt-section-heading {
    width: 100%;
    margin-inline: 0;
    padding-top: 24px;
    text-align: left;
  }

  .prompt-result-proof .prompt-section-heading h2 {
    font-size: clamp(34px, 10.2vw, 40px);
    line-height: 1.02;
  }

  .prompt-result-proof .prompt-section-heading p {
    margin: 20px 0 0;
    font-size: 16px;
    line-height: 1.56;
  }

  .prompt-result-proof .prompt-result-flow {
    margin-top: 46px;
  }

  .prompt-result-flow__paths {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .prompt-result-flow__path {
    grid-template-rows: auto auto auto;
  }

  .prompt-result-flow__request,
  .prompt-result-flow__refinement {
    height: auto;
    min-height: 136px;
    padding: 20px;
  }

  .prompt-result-flow__media {
    margin-top: 16px;
    aspect-ratio: 3 / 2;
  }

  .prompt-result-flow__path > p {
    max-width: none;
    margin-top: 14px;
  }

  .prompt-result-flow__refinement {
    min-height: 0;
  }

  .prompt-result-flow__direction {
    margin: 0 auto;
  }

  .prompt-result-flow__direction span {
    transform: rotate(90deg);
  }

  .prompt-result-proof .story-button {
    margin-top: 52px;
  }

  .prompt-extension-story .web-extension-flow__step:not(:last-child)::after {
    top: auto;
    right: 50%;
    bottom: -39px;
    transform: translateX(50%) rotate(90deg);
  }
}

/* Query fanout: a working builder, useful examples, and one Extension story. */
.prompt-editorial-system .story-container { width: min(1120px, 100%); margin-inline: auto; }
.prompt-lab__input-label { display: block; margin-bottom: 9px; color: #46566b; font: 550 13px/1.4 var(--sans); }
.prompt-feedback { margin-top: 16px; }
.prompt-feedback[hidden] { display: none; }
.prompt-feedback textarea { display: block; width: 100%; min-height: 80px; padding: 12px 14px; border: 1px solid var(--prompt-line); border-radius: 12px; background: #fff; color: #25354a; resize: vertical; font: 400 16px/1.5 var(--sans); }
.prompt-feedback textarea:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 2px; }
.prompt-lab__shell { background: #f4f7fa; box-shadow: 0 16px 40px #34496112; }
.prompt-lab__form, .prompt-lab__result { padding: 30px; }
.prompt-lab__result { min-height: 0; background: #fbfcfe; }
.prompt-lab__result pre { margin-top: 18px; max-height: none; overflow: visible; }
.prompt-lab__result pre.is-expanded { max-height: none; overflow: visible; }
.prompt-lab__result-head button { box-shadow: none; border: 1px solid #d6dfeb; border-radius: 8px; }
.prompt-lab__result-head button:disabled { opacity: .5; cursor: default; }
.prompt-output-toggle { display: block; margin-top: 14px; padding: 8px 0; border: 0; border-top: 1px solid var(--prompt-line); width: 100%; text-align: left; color: #245496; background: transparent; cursor: pointer; font: 550 13px/1.5 var(--sans); }
.prompt-output-toggle[hidden] { display: none; }
.prompt-lab__trust { margin: 18px 0 0; text-align: center; color: #536276; font: 400 13px/1.6 var(--sans); }
.prompt-lab__trust a { margin-left: 10px; color: #245496; text-underline-offset: 3px; }
.prompt-lab__field > span { font: 500 12px/1.4 var(--sans); letter-spacing: 0; text-transform: none; }
.prompt-lab__action-row { padding-top: 14px; gap: 8px; }
.prompt-result-proof { padding: 86px 0 48px; }
.prompt-result-proof .prompt-section-heading { width: 100%; max-width: 740px; margin-left: 0; padding-top: 0; border-top: 0; }
.prompt-result-proof .prompt-section-heading h2 { font-size: clamp(36px, 4vw, 52px); }
.prompt-result-proof .prompt-section-heading p { max-width: 660px; font-size: 17px; }
.prompt-result-proof .prompt-result-flow { margin-top: 36px; }
.prompt-result-proof .story-button { margin-top: 30px; }
.prompt-anatomy, .prompt-image-source, .prompt-jobs { padding: 74px 0; }
.prompt-anatomy__layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 80px; align-items: start; }
.prompt-anatomy .prompt-section-heading, .prompt-image-source .prompt-section-heading, .prompt-jobs .prompt-section-heading { max-width: 720px; margin: 0; text-align: left; }
.prompt-anatomy .prompt-section-heading h2, .prompt-image-source .prompt-section-heading h2, .prompt-jobs .prompt-section-heading h2 { font-size: clamp(36px, 4vw, 52px); line-height: 1.04; }
.prompt-anatomy .prompt-section-heading p, .prompt-image-source .prompt-section-heading p, .prompt-jobs .prompt-section-heading p { margin: 20px 0 0; font-size: 16px; line-height: 1.65; }
.prompt-anatomy .prompt-section-heading p + p { color: #536276; font-size: 14px; }
.prompt-text-link { display: inline-block; margin-top: 24px; padding: 0; border: 0; background: transparent; cursor: pointer; color: #245496; font: 550 14px/1.5 var(--sans); text-decoration: none; }
.prompt-paths { display: flex; flex-wrap: wrap; column-gap: 24px; }
.prompt-text-link:focus-visible { outline: 3px solid var(--focus-ring); outline-offset: 4px; }
.prompt-anatomy__example { margin: 0; border-top: 1px solid #bfcad7; }
.prompt-anatomy__example > div { display: grid; grid-template-columns: 122px 1fr; gap: 20px; padding: 19px 0; border-bottom: 1px solid #cbd4df; }
.prompt-anatomy__example dt { color: #245496; font: 600 13px/1.5 var(--sans); }
.prompt-anatomy__example dd { margin: 0; color: #24364c; font: 500 15px/1.45 var(--sans); }
.prompt-anatomy__example small { display: block; margin-top: 5px; color: #59697d; font: 400 13px/1.5 var(--sans); }
.prompt-models .prompt-section-heading { max-width: 820px; }
.prompt-editorial-system .prompt-models .prompt-section-heading h2 { max-width: 780px; font-size: clamp(36px, 4vw, 52px); line-height: 1.04; }
.prompt-models .prompt-section-heading p { max-width: 680px; margin-left: 0; font-size: 16px; }
.prompt-models__scope { margin: 20px 0 24px; color: #59697d; font: 400 12px/1.6 var(--sans); }
.prompt-media-guide { margin-top: 42px; padding-top: 28px; border-top: 1px solid #bdc9d7; }
.prompt-media-guide h3 { margin: 0; font: 400 29px/1.2 Georgia, serif; letter-spacing: -.025em; }
.prompt-media-guide > div { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 24px; }
.prompt-media-guide h4 { margin: 0; color: #23344b; font: 600 15px/1.5 var(--sans); }
.prompt-media-guide article p { margin: 9px 0 0; color: #536276; font: 400 14px/1.7 var(--sans); }
[data-prompt-example] { display: inline-flex; gap: 10px; padding: 10px 0; border: 0; background: transparent; color: #245496; font: 600 13px/1.5 var(--sans); cursor: pointer; }
[data-prompt-example]:hover { text-decoration: underline; text-underline-offset: 4px; }
.prompt-media-guide .prompt-media-guide__note { margin: 26px 0 0; max-width: 850px; color: #59697d; font: 400 13px/1.6 var(--sans); }
.prompt-media-guide__note a { color: #245496; text-underline-offset: 3px; }
.prompt-image-source__demo { display: grid; grid-template-columns: 1.5fr 1fr; gap: 28px; margin: 36px 0 0; align-items: center; }
.prompt-image-source__reference { overflow: hidden; border-radius: 18px; }
.prompt-image-source__reference img { display: block; width: 100%; height: auto; }
.prompt-image-panel { padding: 18px; border: 1px solid #d9dfe7; border-radius: 16px; color: #27344a; background: #fff; box-shadow: 0 12px 32px #35486512; font-family: var(--sans); }
.prompt-image-panel header { display: flex; gap: 10px; align-items: center; font-size: 15px; }
.prompt-image-panel__preview { margin-top: 16px; height: 98px; border-radius: 8px; background: #f3f5f8; }
.prompt-image-panel__preview img { display: block; width: 100%; height: 100%; object-fit: contain; }
.prompt-image-panel__result { margin-top: 18px; }
.prompt-image-panel__result > div { display: flex; align-items: center; justify-content: space-between; font-size: 13px; }
.prompt-image-panel__result button { padding: 6px 10px; border: 1px solid #dce2e9; border-radius: 7px; color: #394960; background: white; cursor: pointer; font: 500 12px var(--sans); }
.prompt-image-panel textarea { width: 100%; height: 148px; margin-top: 10px; padding: 10px; border: 1px solid #dce2e9; border-radius: 8px; resize: vertical; color: #35445a; background: #fcfdff; font: 400 13px/1.6 var(--sans); }
.prompt-image-panel textarea:focus-visible { outline: 3px solid var(--focus-ring); }
.prompt-image-panel__hint { margin: 10px 0 0; color: #68768a; font-size: 12px; }
.prompt-image-source__demo figcaption { grid-column: 1 / -1; margin-top: -10px; color: #59697d; font: 400 12px/1.6 var(--sans); }
.prompt-image-source__bottom { display: flex; gap: 50px; justify-content: space-between; align-items: center; margin-top: 22px; }
.prompt-image-source__bottom p { max-width: 740px; margin: 0; color: #536276; font: 400 15px/1.65 var(--sans); }
.prompt-image-source__bottom .story-button { flex-shrink: 0; margin: 0; }
.prompt-jobs__grid { grid-template-columns: repeat(3, minmax(0, 1fr)); margin-top: 32px; gap: 28px 36px; }
.prompt-jobs__grid article { display: flex; flex-direction: column; align-items: flex-start; padding: 20px 0 0; }
.prompt-jobs__grid h3 { margin: 0; font-size: 24px; }
.prompt-jobs__grid p { margin: 12px 0; font-size: 14px; }
.prompt-jobs__grid button { margin-top: auto; }
.prompt-editorial-system .story-footer-links { padding: 32px 0 48px; }
.prompt-editorial-system .story-footer-links h2 { font-size: 28px; line-height: 1.15; max-width: none; }
.prompt-editorial-system .story-tools-links { margin-top: 22px; }
.prompt-editorial-system .humanize-faq { padding: 64px 0; }
.prompt-editorial-system .humanize-faq h2 { max-width: 700px; font-size: clamp(36px, 4vw, 52px); line-height: 1.04; }
.prompt-editorial-system .home-final-cta { min-height: 0; padding: 64px 0 82px; }
.prompt-editorial-system .home-final-cta h2 { max-width: 720px; font-size: clamp(32px, 4vw, 50px); line-height: 1.04; }
@media (max-width: 1020px) {
  .prompt-anatomy__layout { gap: 36px; }
  .prompt-lab__result { min-height: 0; }
  .prompt-image-source__demo { grid-template-columns: 1.1fr 1fr; gap: 22px; }
  .prompt-image-source__bottom { gap: 24px; }
}
@media (max-width: 767px) {
  .prompt-lab__form, .prompt-lab__result { padding: 20px 16px; }
  .prompt-lab__form > textarea { font-size: 16px; height: 106px; min-height: 106px; }
  .prompt-lab__action-row { flex-direction: row; align-items: center; gap: 4px; padding-top: 12px; }
  .prompt-type__toggle { padding: 0 4px; gap: 6px; font-size: 12px; min-height: 44px; }
  .prompt-type__toggle svg { width: 10px; }
  .prompt-lab__submit { width: auto; min-width: 0; padding: 0 12px; font-size: 12px; min-height: 44px; }
  .prompt-lab__result pre { max-height: none; font-size: 14px; }
  .prompt-lab__result pre.is-expanded { max-height: none; }
  .prompt-lab__trust { max-width: 32ch; margin: 16px auto 0; font-size: 12px; }
  .prompt-lab__trust a { display: block; margin-left: 0; }
  .prompt-anatomy, .prompt-image-source, .prompt-jobs { padding: 46px 0; }
  .prompt-anatomy__layout { grid-template-columns: 1fr; gap: 28px; }
  .prompt-anatomy .prompt-section-heading h2, .prompt-image-source .prompt-section-heading h2, .prompt-jobs .prompt-section-heading h2 { font-size: clamp(30px, 8vw, 38px); }
  .prompt-anatomy__example > div { grid-template-columns: 86px 1fr; gap: 12px; padding: 16px 0; }
  .prompt-anatomy__example dt { font-size: 12px; }
  .prompt-anatomy__example dd { font-size: 14px; }
  .prompt-anatomy__example small { font-size: 12px; }
  .prompt-editorial-system .prompt-models .prompt-section-heading h2 { font-size: clamp(30px, 8vw, 38px); }
  .prompt-models__scope { margin-top: 16px; }
  .prompt-media-guide { margin-top: 28px; padding-top: 24px; }
  .prompt-media-guide h3 { font-size: 26px; }
  .prompt-media-guide > div { grid-template-columns: 1fr; gap: 22px; }
  .prompt-image-source__demo { grid-template-columns: 1fr; gap: 20px; margin-top: 26px; }
  .prompt-image-source__reference { display: none; }
  .prompt-image-panel__preview { height: auto; }
  .prompt-image-panel__preview img { height: auto; border-radius: 8px; }
  .prompt-image-panel textarea { font-size: 16px; height: 200px; }
  .prompt-image-source__demo figcaption { margin-top: 0; }
  .prompt-image-source__bottom { flex-direction: column; align-items: flex-start; gap: 18px; }
  .prompt-jobs__grid { grid-template-columns: 1fr 1fr; gap: 24px 18px; }
  .prompt-jobs__grid h3 { font-size: 22px; }
  .prompt-jobs__grid p { font-size: 13px; }
  .prompt-jobs__grid button { font-size: 12px; gap: 6px; }
  .prompt-editorial-system .story-footer-links { padding: 24px 0 32px; }
  .prompt-editorial-system .humanize-faq { padding: 40px 0; }
  .prompt-editorial-system .humanize-faq h2 { font-size: 34px; }
  .prompt-editorial-system .home-final-cta { padding: 44px 0 60px; }
  .prompt-editorial-system .home-final-cta h2 { font-size: clamp(27px, 7.2vw, 36px); }
}

.prompt-editorial-system .prompt-triptych { grid-template-columns: minmax(0, 1.18fr) minmax(280px, 1fr) minmax(0, 1.18fr); }
.prompt-editorial-system .prompt-triptych__editor { min-height: 0; }
.prompt-editorial-system .prompt-triptych__first-prompt { padding: 12px; margin: 14px 14px 12px; width: calc(100% - 28px); }
.prompt-editorial-system .prompt-triptych__first-prompt q { font-size: 14px; margin-top: 6px; }
.prompt-editorial-system .prompt-triptych__clico-prompt { margin-top: 0; padding: 12px; border-radius: 12px; box-shadow: none; }
.prompt-editorial-system .prompt-triptych__clico-prompt .prompt-proof__source img { display: none; }
.prompt-editorial-system .prompt-proof__editor { font-size: 14px; line-height: 1.55; }
.prompt-editorial-system .prompt-models { padding-bottom: 46px; }
.prompt-generator-page .global-header__cluster { box-shadow: 0 6px 20px #2b405417; border: 1px solid #d2dbe5; background: #f4f7fa; }
@media (max-width: 1020px) and (min-width: 768px) {
  .prompt-editorial-system .prompt-triptych { grid-template-columns: minmax(0, 1fr) minmax(270px, 1.2fr) minmax(0, 1fr); }
}
@media (max-width: 767px) {
  .prompt-editorial-system .prompt-triptych { grid-template-columns: 1fr; }
}

.prompt-editorial-system .prompt-triptych figcaption { min-height: 88px; padding: 12px 16px 18px; }
.prompt-editorial-system .prompt-destination-panel--chatgpt .prompt-triptych__result--revised img { object-position: right center; }
.prompt-editorial-system .humanize-faq .faq__list { margin-top: 28px; }
.prompt-editorial-system .humanize-faq .faq-row > button { min-height: 66px; padding-block: 18px; }
.prompt-editorial-system .home-final-cta { margin-top: 24px; }
.prompt-generator-page .global-header__cluster::before, .prompt-generator-page .global-header__cluster::after { display: none; }
.prompt-generator-page .global-header__cluster .brand, .prompt-generator-page .global-header__cluster .nav-auth-split, .prompt-generator-page .global-header__cluster .nav-auth-split__download { box-shadow: none; }
.prompt-generator-page .global-header__cluster .nav-auth-split { border: 1px solid #d4dee9; background: #fff; border-radius: 12px; }
.prompt-generator-page .global-header__cluster .nav-auth-split__download { background: #e2eaf4; border-radius: 8px; }
@media (max-width: 767px) {
  .prompt-image-source__reference { display: block; }
  .prompt-image-panel__preview { display: none; }
  .prompt-image-source__demo { gap: 14px; }
  .prompt-image-source__reference img { aspect-ratio: 3 / 2; object-fit: cover; }
  .prompt-jobs__grid { grid-template-columns: 1fr; gap: 0; }
  .prompt-jobs__grid article { display: grid; grid-template-columns: 1fr auto; column-gap: 16px; padding: 18px 0; }
  .prompt-jobs__grid h3 { grid-column: 1; font-size: 24px; }
  .prompt-jobs__grid p { grid-column: 1 / -1; grid-row: 2; margin-bottom: 0; font-size: 14px; }
  .prompt-jobs__grid button { grid-column: 2; grid-row: 1; padding: 4px 0; font-size: 12px; }
  .prompt-editorial-system .humanize-faq .faq-row > button { min-height: 64px; padding-block: 16px; }
  .prompt-editorial-system .humanize-faq .faq-row > button span { font-size: 15px; line-height: 1.45; }
  .prompt-editorial-system .prompt-triptych figcaption { min-height: 0; padding: 12px 14px 16px; }
}

.prompt-shot-plan { min-height: 330px; padding: 26px 24px; background: #f6f8fb; color: #2c4058; }
.prompt-shot-plan h3 { margin: 0 0 24px; font: 400 25px/1.1 Georgia, serif; letter-spacing: -.025em; }
.prompt-shot-plan ol { display: grid; gap: 22px; margin: 0; padding-left: 18px; }
.prompt-shot-plan strong { font: 600 13px/1.4 var(--sans); }
.prompt-shot-plan p { margin: 6px 0 0; color: #536276; font: 400 14px/1.6 var(--sans); }
