:root {
  color-scheme: light;
  --bg: #f4f0dc;
  --surface: #fffaf0;
  --surface-strong: #fff6d9;
  --ink: #111713;
  --muted: #4c5d4a;
  --line: #1d2b1d;
  --green: #248a38;
  --green-deep: #0c4d28;
  --yellow: #ffe11f;
  --red: #ef3b22;
  --blue: #2a70d6;
  --shadow: 10px 10px 0 #111713;
  --radius: 8px;
  --font-sans: Inter, "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  --font-display: Impact, "Arial Black", "PingFang SC", sans-serif;
}

[data-theme="dark"] {
  color-scheme: dark;
  --bg: #101510;
  --surface: #182217;
  --surface-strong: #24341d;
  --ink: #f8f4dc;
  --muted: #cfdbbe;
  --line: #f8f4dc;
  --green: #3aa84d;
  --green-deep: #122917;
  --yellow: #ffe34d;
  --red: #ff5d45;
  --blue: #78a8ff;
  --shadow: 10px 10px 0 #ffe34d;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.06) 1px, transparent 1px) 0 0 / 28px 28px,
    linear-gradient(rgba(17, 23, 19, 0.05) 1px, transparent 1px) 0 0 / 28px 28px,
    var(--bg);
  color: var(--ink);
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.55;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  content: "";
  opacity: 0.22;
  background-image:
    radial-gradient(circle at 12% 22%, rgba(255, 225, 31, 0.95) 0 2px, transparent 3px),
    radial-gradient(circle at 80% 16%, rgba(36, 138, 56, 0.8) 0 2px, transparent 3px),
    radial-gradient(circle at 58% 76%, rgba(239, 59, 34, 0.55) 0 2px, transparent 3px);
  background-size: 84px 84px, 110px 110px, 128px 128px;
}

a {
  color: inherit;
}

button,
select,
textarea {
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button:focus-visible,
a:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid var(--blue);
  outline-offset: 4px;
}

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

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  padding: 10px 14px;
  background: var(--yellow);
  color: #111713;
  transform: translateY(-140%);
  transition: transform 180ms ease-out;
}

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

.icon-sprite {
  display: none;
}

svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 48px;
  gap: 16px;
  align-items: center;
  padding: 14px clamp(16px, 4vw, 48px);
  border-bottom: 2px solid var(--line);
  background: var(--surface);
  background: color-mix(in srgb, var(--surface) 90%, transparent);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-flex;
  min-height: 58px;
  align-items: center;
  color: var(--ink);
  font-weight: 900;
  text-decoration: none;
}

.brand-logo {
  display: block;
  width: clamp(126px, 16vw, 172px);
  height: auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  gap: 8px;
  align-items: center;
}

.nav-links a {
  min-height: 44px;
  padding: 11px 12px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
  text-decoration: none;
}

.nav-links a:hover {
  color: var(--ink);
  text-decoration: underline;
  text-decoration-thickness: 2px;
  text-underline-offset: 5px;
}

.icon-button,
.small-icon {
  display: grid;
  min-width: 44px;
  min-height: 44px;
  place-items: center;
  border: 2px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.icon-button:hover,
.small-icon:hover {
  background: var(--yellow);
  color: #111713;
}

main {
  overflow-x: clip;
}

.hero {
  display: grid;
  min-height: auto;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1fr);
  gap: clamp(28px, 5vw, 72px);
  align-items: center;
  padding: clamp(28px, 6vw, 72px) clamp(16px, 4vw, 48px) 36px;
}

.hero-copy {
  max-width: 670px;
}

.kicker {
  margin: 0 0 12px;
  color: var(--green-deep);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

[data-theme="dark"] .kicker {
  color: var(--yellow);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(4.5rem, 13vw, 11rem);
  line-height: 0.82;
  text-transform: uppercase;
  text-shadow: 5px 5px 0 var(--yellow), 8px 8px 0 var(--line);
}

#hero-title {
  max-width: min(100%, 720px);
  color: var(--ink);
  font-size: clamp(3.2rem, 8vw, 7rem);
  line-height: 0.92;
  text-shadow: 5px 5px 0 var(--yellow), 8px 8px 0 var(--line);
}

.hero-logo {
  display: block;
  width: min(100%, clamp(300px, 43vw, 620px));
  height: auto;
  filter: brightness(0) drop-shadow(6px 6px 0 var(--yellow));
}

.hero-lede {
  max-width: 520px;
  margin: 28px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.35rem);
  font-weight: 700;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.primary-action,
.secondary-action,
.submit-button,
.copy-button,
.toolbar-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 2px solid var(--line);
  color: var(--ink);
  cursor: pointer;
  font-weight: 900;
  text-decoration: none;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.primary-action,
.submit-button {
  padding: 13px 18px;
  background: var(--yellow);
  color: #111713;
  box-shadow: 6px 6px 0 var(--line);
}

.secondary-action,
.copy-button,
.toolbar-button {
  padding: 13px 16px;
  background: var(--surface);
}

.primary-action:hover,
.secondary-action:hover,
.submit-button:hover,
.copy-button:hover,
.toolbar-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 8px 8px 0 var(--line);
}

.hero-collage {
  position: relative;
  justify-self: end;
  width: min(100%, 720px);
  height: clamp(560px, 58vw, 680px);
  isolation: isolate;
  overflow: visible;
}

.hero-collage::before {
  position: absolute;
  inset: 6% 5% 10% auto;
  z-index: -2;
  width: 62%;
  border: 2px solid var(--line);
  background: var(--green);
  box-shadow: var(--shadow);
  content: "";
}

.collage-img {
  position: absolute;
  border: 2px solid var(--line);
  height: auto;
  object-fit: contain;
  filter: saturate(1.05) contrast(1.04);
  box-shadow: 8px 8px 0 var(--line);
  transform-origin: center;
  transition: transform 260ms ease-out, box-shadow 260ms ease-out, filter 260ms ease-out;
  will-change: transform;
}

.collage-img-one {
  right: 3%;
  bottom: 1%;
  z-index: 1;
  width: min(58%, 420px);
  aspect-ratio: 2 / 3;
  transform: translateX(0) rotate(-1deg);
}

.collage-img-two {
  top: 6%;
  left: 4%;
  z-index: 2;
  width: min(34%, 250px);
  aspect-ratio: 2 / 3;
  transform: translateX(0) rotate(0.6deg);
}

.collage-img:hover {
  filter: saturate(1.16) contrast(1.08);
}

.collage-img-one:hover {
  z-index: 5;
  transform: translate(8px, -10px) rotate(1.5deg);
  box-shadow: 14px 14px 0 var(--line);
}

.collage-img-two:hover {
  z-index: 6;
  transform: translate(-8px, -10px) rotate(-1.4deg);
  box-shadow: 14px 14px 0 var(--line);
}

.cutout-note {
  position: absolute;
  right: 4%;
  bottom: 12%;
  z-index: 8;
  display: grid;
  gap: 2px;
  width: min(30%, 240px);
  color: #fffef1;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 4.1vw, 3.6rem);
  line-height: 0.76;
  pointer-events: none;
  text-shadow: 5px 5px 0 var(--line);
  transition: transform 260ms ease-out;
}

.hero-collage:has(.collage-img:hover) .cutout-note {
  transform: translateY(-8px);
}

.studio,
.wall,
.inspiration-wall {
  padding: 70px clamp(16px, 4vw, 48px);
  scroll-margin-top: 92px;
}

.section-heading {
  display: flex;
  max-width: 1180px;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin: 0 auto 24px;
}

h2 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 6vw, 5.2rem);
  line-height: 0.88;
  text-transform: uppercase;
}

.section-lede {
  max-width: 430px;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  font-weight: 800;
}

.inspiration-wall {
  padding-top: 46px;
}

.inspiration-heading {
  align-items: center;
}

.inspiration-board {
  display: grid;
  max-width: 1180px;
  gap: 18px;
  margin: 0 auto;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 225, 31, 0.2), transparent 38%),
    color-mix(in srgb, var(--green) 82%, var(--surface));
  box-shadow: 8px 8px 0 var(--line);
}

.seed-maker {
  display: grid;
  gap: 10px;
  padding: 14px;
  border: 2px solid var(--line);
  background: #fffef1;
  color: #111713;
  box-shadow: 5px 5px 0 var(--line);
}

.seed-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: stretch;
}

.seed-input-row textarea {
  min-height: 86px;
  background: #fff7b8;
  color: #111713;
}

.seed-button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 2px solid var(--line);
  background: var(--yellow);
  color: #111713;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--line);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.seed-button {
  min-width: 184px;
  padding: 10px 14px;
}

.seed-button:hover {
  background: #fffef1;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--line);
}

.seed-button svg,
.seed-card-action svg {
  width: 18px;
  height: 18px;
}

.seed-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  align-items: stretch;
}

.seed-card {
  display: grid;
  gap: 10px;
  min-height: 290px;
  padding: 14px;
  border: 2px solid var(--line);
  background: #fffef1;
  color: #111713;
  text-align: left;
  cursor: pointer;
  box-shadow: 5px 5px 0 var(--line);
  transform: rotate(-1.2deg);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
  appearance: none;
}

.seed-card:nth-child(2n) {
  background: #fff7b8;
  transform: rotate(1.3deg);
}

.seed-card:nth-child(3n) {
  background: #d9efc2;
  transform: rotate(-0.4deg);
}

.seed-card:nth-child(4n) {
  background: #cfe6f7;
  transform: rotate(1.7deg);
}

.seed-card:nth-child(5n) {
  background: #fffef1;
  transform: rotate(-1.8deg);
}

.seed-card:hover,
.seed-card:focus-visible {
  background: #fff3a0;
  transform: translate(-3px, -3px) rotate(0deg);
  box-shadow: 9px 9px 0 var(--line);
}

.seed-card:focus-visible .seed-card-action,
.seed-card:hover .seed-card-action {
  color: var(--green-deep);
  transform: translateX(4px);
}

.seed-category {
  display: inline-flex;
  min-height: 34px;
  align-items: center;
  width: fit-content;
  max-width: 100%;
  padding: 5px 9px;
  border: 2px solid var(--line);
  background: var(--green);
  color: #fffef1;
  font-size: 11px;
  font-weight: 900;
  line-height: 1;
}

.seed-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.65rem, 2.7vw, 2.55rem);
  line-height: 0.92;
}

.seed-card p {
  margin: 0;
  font-weight: 800;
  line-height: 1.35;
}

.seed-meta {
  display: grid;
  gap: 5px;
  margin: 0;
  font-size: 13px;
  line-height: 1.3;
}

.seed-meta dt {
  color: #335031;
  font-weight: 900;
}

.seed-meta dd {
  margin: -5px 0 0;
  font-weight: 800;
}

.seed-card-action {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  align-self: end;
  width: 100%;
  padding: 10px 0 0;
  border: 0;
  border-top: 2px solid currentColor;
  background: transparent;
  color: #3f4b3b;
  font-size: 14px;
  font-weight: 900;
  box-shadow: none;
  pointer-events: none;
  transition: transform 180ms ease-out, color 180ms ease-out;
}

.workspace {
  display: grid;
  max-width: 1180px;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  gap: 22px;
  margin: 0 auto;
}

.workbench-stack {
  display: grid;
  gap: 16px;
  align-self: start;
}

.spark-form,
.spark-output,
.wall-tile {
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: 6px 6px 0 var(--line);
}

.spark-form {
  display: grid;
  gap: 18px;
  align-self: start;
  padding: 18px;
}

.workbench-seed-maker {
  align-self: start;
}

.field-group {
  display: grid;
  gap: 8px;
  transition: opacity 180ms ease-out, transform 180ms ease-out;
}

.field-group.is-empty-optional {
  opacity: 0.6;
}

.field-group.is-empty-optional:focus-within {
  opacity: 1;
}

.field-group.is-autofill-hinting {
  animation: optionalFadeIn 520ms ease-out;
}

label {
  color: var(--ink);
  font-size: 14px;
  font-weight: 900;
}

textarea,
select {
  width: 100%;
  min-height: 48px;
  border: 2px solid var(--line);
  border-radius: 0;
  background: var(--surface-strong);
  color: var(--ink);
  font-size: 16px;
}

textarea {
  min-height: 108px;
  padding: 14px;
  resize: vertical;
}

#topicInput {
  min-height: 138px;
}

select {
  padding: 0 12px;
  cursor: pointer;
}

.helper {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
}

.ai-placeholder {
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transform: translateY(-4px);
  transition: max-height 180ms ease-out, opacity 180ms ease-out, transform 180ms ease-out;
}

.field-group:focus-within .ai-placeholder {
  max-height: 24px;
  opacity: 1;
  transform: translateY(0);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.submit-button {
  width: 100%;
}

.spark-output {
  min-height: 720px;
  padding: 18px;
  background:
    linear-gradient(135deg, rgba(255, 225, 31, 0.14), transparent 42%),
    var(--green);
}

.brief-loading {
  display: grid;
  min-height: 500px;
  align-content: center;
  gap: 18px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(255, 225, 31, 0.28), transparent 46%),
    #fffef1;
  color: #111713;
  box-shadow: 8px 8px 0 var(--line);
}

.brief-loading[hidden] {
  display: none;
}

.brief-loading-stage {
  position: relative;
  min-height: 220px;
  border: 2px solid var(--line);
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(17, 23, 19, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    #d9efc2;
  overflow: hidden;
}

.brief-loading-stage::before {
  position: absolute;
  inset: 44px 12% auto;
  height: 72px;
  border: 2px solid var(--line);
  background: var(--yellow);
  box-shadow: 6px 6px 0 var(--line);
  content: "";
  transform: rotate(-1.2deg);
}

.brief-loading-stage::after {
  position: absolute;
  left: 50%;
  top: 78px;
  width: min(58%, 340px);
  height: 14px;
  background: repeating-linear-gradient(
    90deg,
    #111713 0 22px,
    transparent 22px 36px
  );
  content: "";
  transform: translateX(-50%);
}

.loading-sticker {
  position: absolute;
  display: grid;
  min-width: 76px;
  min-height: 48px;
  place-items: center;
  padding: 8px 10px;
  border: 2px solid var(--line);
  background: #fffef1;
  color: #111713;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--line);
}

.loading-sticker-topic {
  left: 10%;
  top: 22px;
  background: var(--yellow);
  transform: rotate(-6deg);
}

.loading-sticker-angle {
  right: 12%;
  top: 28px;
  background: #cfe6f7;
  animation-delay: 120ms;
  transform: rotate(5deg);
}

.loading-sticker-hook {
  left: 18%;
  bottom: 34px;
  background: #fff7b8;
  animation-delay: 240ms;
  transform: rotate(4deg);
}

.loading-sticker-publish {
  right: 18%;
  bottom: 28px;
  background: #bde77a;
  animation-delay: 360ms;
  transform: rotate(-4deg);
}

.brief-loading-copy {
  display: grid;
  gap: 8px;
}

.brief-loading-copy h3,
.brief-loading-copy p {
  margin: 0;
}

.brief-loading-copy h3 {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 5vw, 4.8rem);
  line-height: 0.9;
}

.brief-loading-copy p:last-child {
  max-width: 620px;
  color: #335031;
  font-weight: 850;
}

.spark-output[data-brief-state="loading"] .brief-loading-stage {
  background:
    linear-gradient(90deg, rgba(17, 23, 19, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    linear-gradient(rgba(17, 23, 19, 0.08) 1px, transparent 1px) 0 0 / 24px 24px,
    #fff7b8;
}

.spark-output[data-brief-state="loading"] .brief-loading-stage::after {
  animation: briefScan 900ms steps(4) infinite;
}

.spark-output[data-brief-state="loading"] .loading-sticker {
  animation: loadingStickerFloat 1500ms ease-in-out infinite;
}

.api-error-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 14px;
  padding: 14px;
  border: 2px solid var(--line);
  background: #fffef1;
  color: #111713;
  box-shadow: 5px 5px 0 var(--line);
}

.api-error-panel[hidden] {
  display: none;
}

.api-error-panel strong {
  display: block;
  margin-bottom: 4px;
  color: var(--red);
  font-weight: 900;
}

.api-error-panel p {
  margin: 0;
  color: #335031;
  font-size: 13px;
  font-weight: 800;
}

.panel-topline {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
  color: #fffef1;
  font-weight: 900;
}

.panel-controls {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.toolbar-button {
  min-height: 44px;
  padding: 9px 12px;
  color: #111713;
  font-size: 13px;
  box-shadow: 4px 4px 0 var(--line);
}

.collapse-button {
  position: absolute;
  right: -10px;
  bottom: -22px;
  z-index: 3;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: min(72%, 210px);
  padding: 9px 12px;
  border: 2px solid var(--line);
  background: var(--blue);
  color: #fffef1;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--line);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.collapse-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--line);
}

.collapse-button svg {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
  transition: transform 180ms ease-out;
}

.collapse-button.is-collapsed svg {
  transform: rotate(0deg);
}

.toolbar-button svg {
  width: 18px;
  height: 18px;
}

.brief-document[hidden] {
  display: none;
}

.brief-one-liner[hidden],
.angle-bank[hidden] {
  display: none;
}

.brief-document {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: #fffef1;
  color: #111713;
  box-shadow: 8px 8px 0 var(--line);
}

.brief-one-liner {
  position: relative;
  display: grid;
  gap: 10px;
  margin-bottom: 34px;
  padding: 18px 18px 44px;
  border: 2px solid var(--line);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--line);
}

.brief-section-label {
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.brief-one-liner p {
  max-width: 760px;
  margin: 0;
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  font-weight: 900;
  line-height: 1.35;
}

.brief-block,
.brief-actions-block {
  display: grid;
  gap: 14px;
  padding: 16px;
  border: 2px solid var(--line);
  background: #fffaf0;
}

.brief-block:nth-of-type(odd) {
  background: #f1f7df;
}

.brief-block-head {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--line);
}

.brief-block-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.7rem);
  line-height: 0.92;
}

.brief-summary {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin: 0;
  border: 2px solid var(--line);
  background: #fffef1;
}

.brief-summary-row {
  display: grid;
  grid-template-columns: minmax(100px, 0.36fr) minmax(0, 1fr);
  min-height: 62px;
  border-right: 2px solid var(--line);
  border-bottom: 2px solid var(--line);
}

.brief-summary-row:nth-child(2n) {
  border-right: 0;
}

.brief-summary-row:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.brief-summary-row dt,
.brief-summary-row dd {
  margin: 0;
  padding: 12px;
}

.brief-summary-row dt {
  display: grid;
  align-items: center;
  border-right: 2px solid var(--line);
  background: var(--yellow);
  font-size: 12px;
  font-weight: 900;
}

.brief-summary-row dd {
  display: grid;
  align-items: center;
  font-weight: 800;
  line-height: 1.35;
}

.brief-subsections {
  display: grid;
  gap: 0;
  border: 2px solid var(--line);
  background: #fffef1;
}

.brief-subsection {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-bottom: 2px solid var(--line);
}

.brief-subsection-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}

.brief-subsection-actions {
  display: inline-flex;
  flex: 0 0 auto;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.brief-subsection:last-child {
  border-bottom: 0;
}

.brief-subsection h4 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1rem;
  font-weight: 900;
}

.micro-tune-button,
.micro-copy-button {
  display: inline-flex;
  min-height: 34px;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 6px 8px;
  border: 2px solid var(--line);
  background: #fffef1;
  color: #111713;
  cursor: pointer;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 3px 3px 0 var(--line);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.micro-tune-button:hover,
.micro-tune-button:focus-visible,
.micro-copy-button:hover,
.micro-copy-button:focus-visible {
  background: var(--yellow);
  transform: translate(-1px, -1px);
  box-shadow: 4px 4px 0 var(--line);
}

.micro-copy-button svg {
  width: 15px;
  height: 15px;
}

.micro-tune-button:disabled,
.micro-copy-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

.brief-subsection.is-local-loading {
  animation: shake 500ms ease-in-out;
}

.brief-subsection ul {
  display: grid;
  gap: 9px;
  margin: 0;
  padding-left: 18px;
  font-weight: 750;
  line-height: 1.55;
}

.brief-subsection li::marker {
  color: var(--green-deep);
  font-weight: 900;
}

.brief-badge {
  display: inline-grid;
  width: 38px;
  height: 32px;
  flex: 0 0 auto;
  place-items: center;
  border: 2px solid var(--line);
  background: var(--green);
  color: #fffef1;
  font-size: 12px;
  font-weight: 900;
}

.brief-actions-block .panel-controls {
  justify-content: flex-start;
}

.angle-bank {
  display: grid;
  gap: 12px;
  margin-top: 18px;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, #fffef1 92%, transparent);
  color: #111713;
  box-shadow: 6px 6px 0 var(--line);
}

.strategy-angle-bank {
  margin: 0 0 18px;
  background: var(--yellow);
  transform: rotate(-0.4deg);
  box-shadow: 8px 8px 0 var(--line);
}

.angle-bank .kicker {
  margin-bottom: 6px;
}

.angle-bank h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 0.92;
}

.angle-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.angle-card {
  display: grid;
  gap: 8px;
  min-height: 140px;
  padding: 12px;
  border: 2px solid var(--line);
  background: #fffef1;
  color: #111713;
  text-align: left;
  cursor: pointer;
  box-shadow: 4px 4px 0 var(--line);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
  appearance: none;
}

.strategy-angle-bank .angle-card {
  background: #d9efc2;
}

.strategy-angle-bank .angle-card:nth-child(2n) {
  background: #fffef1;
}

.angle-card:nth-child(2n) {
  background: #fff7b8;
}

.angle-card:hover,
.angle-card:focus-visible {
  background: #fff3a0;
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--line);
}

.angle-card.is-active {
  background: #d9efc2;
  box-shadow: 7px 7px 0 var(--line);
}

.angle-card span {
  color: var(--green-deep);
  font-size: 11px;
  font-weight: 900;
}

.angle-card h4,
.angle-card p {
  margin: 0;
}

.angle-card h4 {
  font-size: 1rem;
  line-height: 1.2;
}

.angle-card p {
  font-weight: 700;
}

.angle-card-action {
  display: inline-flex;
  min-height: 0;
  align-items: center;
  justify-content: flex-start;
  gap: 8px;
  align-self: end;
  width: 100%;
  padding-top: 10px;
  border-top: 2px solid currentColor;
  color: #3f4b3b;
  font-size: 14px;
  font-weight: 900;
  pointer-events: none;
  transition: transform 180ms ease-out, color 180ms ease-out;
}

.angle-card:hover .angle-card-action,
.angle-card:focus-visible .angle-card-action,
.angle-card.is-active .angle-card-action {
  color: var(--green-deep);
  transform: translateX(4px);
}

.clipboard-fallback {
  position: fixed;
  left: -9999px;
  top: 0;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.flying-seed-sticker {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 60;
  max-width: min(260px, 76vw);
  padding: 8px 10px;
  border: 2px solid var(--line);
  background: var(--yellow);
  color: #111713;
  font-size: 12px;
  font-weight: 900;
  line-height: 1.25;
  pointer-events: none;
  box-shadow: 4px 4px 0 var(--line);
  transform: translate(var(--from-x), var(--from-y)) rotate(-4deg) scale(0.96);
  animation: flySeedSticker 760ms cubic-bezier(0.18, 0.78, 0.26, 1) forwards;
}

@keyframes optionalFadeIn {
  0% {
    opacity: 0.6;
    transform: translateY(0);
  }

  45% {
    opacity: 1;
    transform: translateY(-3px);
  }

  100% {
    opacity: 0.6;
    transform: translateY(0);
  }
}

@keyframes flySeedSticker {
  0% {
    opacity: 0;
    transform: translate(var(--from-x), var(--from-y)) rotate(-6deg) scale(0.9);
  }

  18% {
    opacity: 1;
  }

  78% {
    opacity: 1;
    transform: translate(var(--to-x), var(--to-y)) rotate(3deg) scale(1);
  }

  100% {
    opacity: 0;
    transform: translate(var(--to-x), var(--to-y)) rotate(0deg) scale(0.88);
  }
}

@keyframes shake {
  0%,
  100% {
    transform: translateX(0) rotate(0deg);
  }

  20% {
    transform: translateX(-3px) rotate(-0.5deg);
  }

  40% {
    transform: translateX(3px) rotate(0.5deg);
  }

  60% {
    transform: translateX(-2px) rotate(-0.35deg);
  }

  80% {
    transform: translateX(2px) rotate(0.35deg);
  }
}

@keyframes briefScan {
  0% {
    opacity: 0.35;
    transform: translateX(-50%) scaleX(0.72);
  }

  100% {
    opacity: 1;
    transform: translateX(-50%) scaleX(1);
  }
}

@keyframes loadingStickerFloat {
  0%,
  100% {
    translate: 0 0;
  }

  50% {
    translate: 0 -8px;
  }
}

.segmented {
  display: inline-flex;
  border: 2px solid var(--line);
  background: #fffef1;
}

.segment {
  min-height: 44px;
  padding: 0 14px;
  border: 0;
  background: transparent;
  color: #111713;
  cursor: pointer;
  font-size: 14px;
  font-weight: 900;
}

.segment.active {
  background: var(--yellow);
}

.detail-back-button {
  min-height: 44px;
  padding: 0 14px;
  border: 2px solid var(--line);
  background: #fffef1;
  color: #111713;
  cursor: pointer;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--line);
}

.idea-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.idea-grid.list-view {
  grid-template-columns: 1fr;
  gap: 8px;
}

.idea-grid.detail-mode {
  grid-template-columns: 1fr;
}

.idea-card {
  display: grid;
  gap: 14px;
  min-height: 248px;
  padding: 16px;
  border: 2px solid var(--line);
  border-radius: 6px;
  background: #fffef1;
  color: #111713;
  cursor: pointer;
  transition: transform 180ms ease-out, box-shadow 180ms ease-out, background 180ms ease-out;
}

.idea-grid.list-view .idea-card {
  position: relative;
  grid-template-columns: auto 1fr;
  align-items: center;
  gap: 8px 12px;
  min-height: 0;
  padding: 10px 12px 10px 44px;
  cursor: default;
}

.idea-grid.list-view .idea-card::before {
  position: absolute;
  left: 14px;
  width: 16px;
  height: 16px;
  border: 2px solid var(--line);
  background: #fffef1;
  content: "";
}

.idea-card[hidden],
.idea-card.is-detail-hidden {
  display: none !important;
}

[data-theme="dark"] .idea-card {
  background: #f8f4dc;
}

.idea-card:hover,
.idea-card:focus-visible {
  background: #e5f2ff;
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--line);
}

.idea-grid.list-view .idea-card:hover,
.idea-grid.list-view .idea-card:focus-visible {
  background: #fffef1;
  transform: none;
  box-shadow: none;
}

.idea-card.is-detail-active {
  background: #cfe6f7;
  outline: 3px solid #1e88ff;
  outline-offset: 0;
  min-height: 0;
}

.idea-grid.detail-mode .idea-card.is-detail-active {
  cursor: default;
  transform: none;
  box-shadow: 8px 8px 0 var(--line);
}

.card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.idea-grid.list-view .card-head {
  display: contents;
}

.idea-type,
.idea-meta {
  color: #335031;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.idea-card h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.7vw, 3.2rem);
  line-height: 0.9;
}

.idea-grid.list-view .idea-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  line-height: 1.35;
}

.idea-card p {
  margin: 0;
  font-weight: 700;
}

.idea-grid.list-view .idea-card p,
.idea-grid.list-view .idea-meta,
.idea-grid.list-view .favorite-button,
.idea-grid.list-view .copy-button {
  display: none;
}

.favorite-button.is-active {
  background: var(--red);
  color: #fffef1;
}

.copy-button {
  width: max-content;
  min-height: 44px;
  padding: 8px 12px;
  box-shadow: none;
}

.copy-button:hover {
  box-shadow: 4px 4px 0 var(--line);
}

.wall {
  position: relative;
  background:
    linear-gradient(135deg, rgba(255, 225, 31, 0.16), transparent 46%),
    color-mix(in srgb, var(--green) 78%, var(--surface));
  color: #fffef1;
  overflow: hidden;
}

.wall .kicker {
  color: var(--yellow);
}

.wall-board {
  display: grid;
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}

.wall-detail-stage {
  min-height: auto;
  margin-top: 0;
  padding: 18px;
  border: 2px solid var(--line);
  border-radius: var(--radius);
  background: color-mix(in srgb, #fffef1 92%, transparent);
  box-shadow: 8px 8px 0 var(--line);
}

.wall-detail-stage:has(.wall-panel.is-active) {
  min-height: 340px;
}

.spark-output .wall-board {
  max-width: none;
  margin-top: 18px;
  padding-top: 0;
}

.spark-output .wall-stickers {
  position: relative;
  inset: auto;
  display: grid;
  min-height: auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.spark-output .sticker {
  position: relative;
  inset: auto;
  max-width: none;
}

.spark-output .wall-detail-stage {
  min-height: 74px;
  margin-top: 14px;
}

.spark-output .wall-detail-stage:has(.wall-panel.is-active) {
  min-height: auto;
  background: #fffef1;
}

.spark-output .wall-panel {
  grid-template-columns: minmax(180px, 240px) minmax(0, 1fr);
}

.spark-output .wall-panel img {
  height: min(28vw, 260px);
  min-height: 180px;
  max-height: 260px;
}

.wall-placeholder {
  margin: 0;
  color: #1f3619;
  font-size: 1.1rem;
  font-weight: 800;
}

.wall-panel {
  display: none;
  grid-template-columns: minmax(240px, 300px) minmax(0, 1fr);
  gap: 18px;
  align-items: stretch;
  color: #111713;
}

.wall-panel.is-active {
  display: grid;
}

.wall-panel img {
  width: 100%;
  height: min(42vw, 360px);
  min-height: 260px;
  max-height: 360px;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--line);
  object-fit: cover;
  box-shadow: 6px 6px 0 var(--line);
}

.wall-panel-copy {
  display: grid;
  align-content: start;
  gap: 12px;
}

.wall-panel-kicker {
  margin: 0;
  color: #335031;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.wall-panel h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
}

.wall-panel p {
  margin: 0;
  font-weight: 700;
}

.wall-actions {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 20px;
  font-weight: 700;
}

.sample-brief {
  display: grid;
  gap: 16px;
  color: #111713;
}

.sample-brief-head {
  position: relative;
  display: grid;
  gap: 8px;
  padding: 18px 18px 42px;
  border: 2px solid var(--line);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--line);
}

.sample-brief-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 4rem);
  line-height: 0.9;
}

.sample-collapse-button {
  position: absolute;
  right: -10px;
  bottom: -22px;
  z-index: 3;
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
  max-width: min(72%, 210px);
  padding: 9px 12px;
  border: 2px solid var(--line);
  background: var(--blue);
  color: #fffef1;
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 4px 4px 0 var(--line);
  transition: transform 180ms ease-out, box-shadow 180ms ease-out;
}

.sample-collapse-button:hover {
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--line);
}

.sample-collapse-button svg {
  width: 18px;
  height: 18px;
  transform: rotate(90deg);
  transition: transform 180ms ease-out;
}

.sample-collapse-button.is-collapsed svg {
  transform: rotate(0deg);
}

.sample-preview,
.sample-expanded {
  display: grid;
  gap: 14px;
  padding: 18px;
  border: 2px solid var(--line);
  background: #fffef1;
  box-shadow: 5px 5px 0 var(--line);
}

.sample-preview[hidden],
.sample-expanded[hidden] {
  display: none;
}

.sample-preview h4,
.sample-expanded h4 {
  margin: 0;
  color: var(--green-deep);
  font-size: 1.15rem;
  font-weight: 900;
}

.sample-preview h5,
.sample-expanded h5 {
  margin: 0 0 6px;
  color: var(--green-deep);
  font-size: 0.95rem;
  font-weight: 900;
}

.sample-preview p,
.sample-expanded p {
  margin: 0;
  font-weight: 750;
}

.sample-expanded ul,
.sample-expanded ol {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 20px;
  font-weight: 750;
}

.sample-image-frame {
  display: grid;
  gap: 10px;
  margin: 2px 0 0;
  padding: 10px;
  border: 2px solid var(--line);
  background: var(--yellow);
  box-shadow: 5px 5px 0 var(--line);
}

.sample-image-frame img {
  width: 100%;
  border: 2px solid var(--line);
  height: auto;
  object-fit: contain;
}

.sample-image-frame figcaption {
  color: #111713;
  font-size: 12px;
  font-weight: 900;
}

@media (min-width: 1100px) {
  .sample-expanded {
    grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.8fr);
    align-items: start;
    column-gap: 18px;
  }

  .sample-expanded > h4 {
    grid-column: 1 / -1;
  }

  .sample-expanded > :not(h4):not(.sample-image-frame) {
    grid-column: 1;
  }

  .sample-expanded > .sample-image-frame {
    position: sticky;
    top: 18px;
    grid-column: 2;
    grid-row: 2 / span 3;
    margin: 0;
  }

  .sample-image-frame img {
    max-height: 560px;
  }
}

.sample-steps {
  list-style: none;
  padding-left: 0 !important;
}

.sample-steps li {
  position: relative;
  padding: 0 0 18px;
}

.sample-steps li:not(:last-child)::after {
  position: absolute;
  left: 0;
  bottom: 0;
  color: var(--green-deep);
  content: "↓";
  font-weight: 900;
}

.wall-stickers {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  align-items: start;
  opacity: 1;
}

.sticker {
  position: relative;
  display: grid;
  gap: 8px;
  max-width: none;
  min-height: 92px;
  padding: 12px 14px;
  border: 2px solid var(--line);
  background: #fffef1;
  color: #111713;
  box-shadow: 5px 5px 0 var(--line);
  appearance: none;
  text-align: left;
  cursor: default;
  pointer-events: auto;
}

.sticker span {
  font-size: 11px;
  font-weight: 900;
  text-transform: uppercase;
}

.sticker strong {
  font-size: 0.95rem;
  line-height: 1.2;
}

.sticker-yellow {
  background: var(--yellow);
  transform: rotate(-4deg);
}

.sticker-white {
  background: #fffef1;
  transform: rotate(3deg);
}

.sticker-red {
  background: var(--red);
  color: #fffef1;
  transform: rotate(-2deg);
}

.sticker-blue {
  background: #cfe6f7;
  transform: rotate(4deg);
}

.sticker-outline {
  background: #fffef1;
  transform: rotate(2deg);
}

.sticker-green {
  background: #bde77a;
  transform: rotate(-5deg);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(16px, 4vw, 48px);
  border-top: 2px solid var(--line);
  color: var(--muted);
  font-size: 14px;
  font-weight: 900;
}

@media (max-width: 1180px) {
  .hero {
    grid-template-columns: minmax(0, 0.8fr) minmax(330px, 0.95fr);
    gap: 28px;
  }

  h1 {
    font-size: clamp(4.2rem, 11vw, 8.6rem);
  }

  .hero-collage {
    height: clamp(520px, 56vw, 620px);
  }

  .cutout-note {
    width: min(32%, 220px);
    font-size: clamp(1.55rem, 3.7vw, 3rem);
  }

  .workspace {
    grid-template-columns: minmax(280px, 400px) minmax(0, 1fr);
  }

  .seed-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .idea-card h3 {
    font-size: clamp(1.55rem, 3.2vw, 2.6rem);
  }

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

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

  .nav-links {
    display: none;
  }

  .hero,
  .workspace {
    grid-template-columns: 1fr;
  }

  .seed-input-row {
    grid-template-columns: 1fr;
  }

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

  .hero {
    min-height: auto;
  }

  .hero-collage {
    height: clamp(520px, 82vw, 620px);
    justify-self: center;
  }

  .hero-copy {
    max-width: 760px;
  }

  .panel-topline {
    display: grid;
  }

  .panel-controls {
    justify-content: flex-start;
  }

  .spark-output {
    min-height: auto;
  }

  .wall-detail-stage {
    margin-top: 16px;
  }

  .wall-board {
    min-height: auto;
  }

  .wall-stickers {
    position: relative;
    inset: auto;
    display: grid;
    max-width: 1180px;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin: 16px auto 0;
  }

  .sticker {
    position: relative;
    inset: auto;
    max-width: none;
  }

  .wall-panel,
  .wall-panel.is-active {
    grid-template-columns: 1fr;
  }

  .wall-panel img {
    height: min(48vw, 340px);
    max-height: 340px;
  }

  .spark-output .wall-stickers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .spark-output .wall-panel,
  .spark-output .wall-panel.is-active {
    grid-template-columns: 1fr;
  }

  .spark-output .wall-panel img {
    height: min(42vw, 260px);
  }
}

@media (max-width: 640px) {
  .site-header {
    padding-inline: 12px;
  }

  .brand span:last-child {
    max-width: 8em;
  }

  .hero,
  .studio,
  .wall,
  .inspiration-wall {
    padding-inline: 14px;
  }

  h1 {
    font-size: clamp(4.2rem, 22vw, 6.5rem);
  }

  .hero {
    gap: 18px;
  }

  .hero-collage {
    display: none;
  }

  .cutout-note {
    right: 3%;
    bottom: 14%;
    width: 36%;
    font-size: clamp(1.7rem, 10vw, 3.4rem);
  }

  .form-row,
  .idea-grid,
  .brief-summary,
  .wall-panel,
  .wall-panel.is-active {
    grid-template-columns: 1fr;
  }

  #hero-title {
    font-size: clamp(2.8rem, 15vw, 5rem);
  }

  .toolbar-button {
    width: 100%;
    justify-content: flex-start;
  }

  .inspiration-board {
    padding: 12px;
  }

  .seed-grid {
    grid-auto-columns: minmax(84%, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 4px 6px 10px 2px;
    margin-inline: -2px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .seed-grid::-webkit-scrollbar {
    display: none;
  }

  .seed-card {
    min-height: auto;
    transform: none;
    scroll-snap-align: start;
  }

  .seed-card:nth-child(n) {
    transform: none;
  }

  .seed-button {
    width: 100%;
  }

  .angle-grid {
    grid-auto-columns: minmax(86%, 1fr);
    grid-auto-flow: column;
    grid-template-columns: none;
    gap: 10px;
    overflow-x: auto;
    overflow-y: visible;
    padding: 2px 4px 8px 2px;
    margin-inline: -2px;
    scroll-padding-inline: 2px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }

  .angle-grid::-webkit-scrollbar {
    display: none;
  }

  .angle-card {
    min-height: 156px;
    scroll-snap-align: start;
  }

  .collapse-button {
    position: absolute;
    right: -8px;
    bottom: -22px;
    width: max-content;
    max-width: min(76%, 220px);
    justify-content: center;
  }

  .sample-collapse-button {
    position: absolute;
    right: -8px;
    bottom: -22px;
    width: max-content;
    max-width: min(76%, 220px);
    justify-content: center;
  }

  .brief-document,
  .brief-block,
  .brief-actions-block,
  .angle-bank,
  .sample-preview,
  .sample-expanded {
    padding: 12px;
  }

  .brief-summary-row,
  .brief-summary-row:nth-child(2n) {
    grid-template-columns: 1fr;
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .brief-summary-row:nth-last-child(-n + 2) {
    border-bottom: 2px solid var(--line);
  }

  .brief-summary-row:last-child {
    border-bottom: 0;
  }

  .brief-summary-row dt {
    border-right: 0;
    border-bottom: 2px solid var(--line);
  }

  .wall-detail-stage {
    margin-top: 18px;
    min-height: auto;
  }

  .wall-panel img {
    min-height: 220px;
  }

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

  .spark-output .wall-stickers {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sticker {
    transform: none;
  }

  .section-heading {
    display: grid;
  }

  .site-footer {
    display: grid;
  }
}

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