:root {
  --cream: #fff7e8;
  --peach: #ffcf99;
  --lemon: #ffe45e;
  --pink: #ff7bb0;
  --coral: #ff6b57;
  --mint: #72e4b7;
  --sky: #65c8ff;
  --ink: #1f1641;
  --ink-soft: #4f4774;
  --white: rgba(255, 255, 255, 0.78);
  --line: rgba(31, 22, 65, 0.12);
  --shadow: 0 24px 70px rgba(80, 47, 110, 0.18);
  --shadow-soft: 0 14px 30px rgba(80, 47, 110, 0.12);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Avenir Next", "Segoe UI", "Gill Sans", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 255, 255, 0.9), transparent 24%),
    radial-gradient(circle at 85% 12%, rgba(255, 123, 176, 0.28), transparent 18%),
    radial-gradient(circle at 15% 80%, rgba(114, 228, 183, 0.32), transparent 20%),
    linear-gradient(135deg, #fff4cb 0%, #ffd7d9 42%, #c3efff 100%);
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.22) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.22) 1px, transparent 1px);
  background-size: 30px 30px;
  opacity: 0.45;
  pointer-events: none;
}

p,
h1,
h2 {
  margin: 0;
}

.page-shell {
  position: relative;
  width: min(1120px, calc(100% - 32px));
  margin: 0 auto;
  padding: 28px 0 40px;
}

.orb {
  position: absolute;
  z-index: 0;
  border-radius: 999px;
  filter: blur(2px);
  opacity: 0.9;
}

.orb-lemon {
  top: 110px;
  right: 120px;
  width: 180px;
  height: 180px;
  background: rgba(255, 228, 94, 0.75);
}

.orb-pink {
  left: -30px;
  bottom: 100px;
  width: 140px;
  height: 140px;
  background: rgba(255, 123, 176, 0.45);
}

.orb-blue {
  right: 24px;
  bottom: -10px;
  width: 220px;
  height: 220px;
  background: rgba(101, 200, 255, 0.34);
}

.topbar,
.hero,
.feature-strip,
.site-footer {
  position: relative;
  z-index: 1;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  margin-bottom: 28px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(16px);
  position: sticky;
  top: 14px;
  z-index: 5;
}

.topbar-nav {
  display: flex;
  flex-wrap: wrap;
  margin-left: auto;
  justify-content: flex-end;
  gap: 10px;
}

.wordmark,
.topbar-note,
.eyebrow,
.status-label,
.feature-kicker,
.status-pill,
.footer-title {
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 4px;
  font-size: 0.88rem;
  font-weight: 900;
}

.nav-link,
.button-primary,
.button-secondary,
.button-download,
.back-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.nav-link {
  border: 1px solid rgba(31, 22, 65, 0.08);
  background: rgba(255, 255, 255, 0.58);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-link-current {
  background: linear-gradient(135deg, var(--ink) 0%, #412e78 100%);
  color: #fff8ef;
}

.nav-link:hover,
.button-primary:hover,
.button-secondary:hover,
.button-download:hover,
.back-link:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(80, 47, 110, 0.16);
}

.topbar-note {
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(31, 22, 65, 0.08);
  background: rgba(255, 255, 255, 0.58);
  box-shadow: var(--shadow-soft);
  font-size: 0.72rem;
  font-weight: 800;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 20px;
  align-items: start;
}

.hero-panel,
.status-stack,
.feature-card,
.site-footer {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.hero-panel {
  display: grid;
  align-content: start;
  gap: 16px;
  padding: 34px 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 228, 94, 0.5), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.82) 0%, rgba(255, 245, 232, 0.72) 100%);
}

.eyebrow {
  margin-bottom: 18px;
  color: var(--coral);
  font-size: 0.78rem;
  font-weight: 900;
}

h1,
h2 {
  font-family: "Avenir Next Condensed", "Arial Narrow", "Franklin Gothic Medium", sans-serif;
  letter-spacing: -0.03em;
}

h1 {
  max-width: 13ch;
  font-size: clamp(2.5rem, 5vw, 4.7rem);
  line-height: 0.96;
}

.intro,
.status-copy,
.feature-card p,
.footer-copy {
  color: var(--ink-soft);
  line-height: 1.7;
}

.intro {
  max-width: 58ch;
  font-size: 1rem;
}

.signal-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.signal-pill {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid rgba(31, 22, 65, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.62);
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--ink);
  box-shadow: var(--shadow-soft);
}

.hero-meta {
  display: grid;
  gap: 10px;
  margin-top: 2px;
}

.button-primary {
  width: fit-content;
  background: linear-gradient(135deg, var(--coral) 0%, #ff9460 100%);
  color: #fff8ef;
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.button-secondary,
.back-link,
.button-download {
  width: fit-content;
  border: 1px solid rgba(31, 22, 65, 0.1);
  background: rgba(255, 255, 255, 0.65);
  color: var(--ink);
  box-shadow: var(--shadow-soft);
  font-weight: 800;
}

.button-download {
  background: linear-gradient(135deg, var(--sky) 0%, #4e92ff 100%);
  border-color: rgba(78, 146, 255, 0.24);
  color: #ffffff;
}

.button-inline {
  margin-top: 4px;
}

.tool-button,
.preset-button,
.style-option,
.sticker-item,
.rotate-button {
  border: 0;
  cursor: pointer;
  font: inherit;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  min-height: 42px;
  padding: 0 16px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--ink) 0%, #412e78 100%);
  color: #fff8ef;
  font-size: 0.68rem;
  font-weight: 900;
  box-shadow: var(--shadow-soft);
}

.tiny-joke {
  font-size: 0.88rem;
  color: #6c618f;
}

.status-stack {
  display: grid;
  gap: 12px;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.45);
}

.status-card {
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(31, 22, 65, 0.08);
  box-shadow: var(--shadow-soft);
}

.status-card-coral {
  background: linear-gradient(140deg, rgba(255, 107, 87, 0.95), rgba(255, 154, 106, 0.92));
  color: #fff7f1;
}

.status-card-butter {
  background: linear-gradient(145deg, rgba(255, 240, 163, 0.92), rgba(255, 209, 126, 0.92));
}

.status-card-mint {
  background: linear-gradient(145deg, rgba(114, 228, 183, 0.92), rgba(101, 200, 255, 0.88));
}

.status-label {
  margin-bottom: 10px;
  font-size: 0.7rem;
  font-weight: 900;
}

.status-title {
  font-size: clamp(1.35rem, 2vw, 1.8rem);
  line-height: 1;
}

.status-copy {
  margin-top: 10px;
  font-size: 0.92rem;
  line-height: 1.55;
}

.status-card-coral .status-label,
.status-card-coral .status-copy {
  color: rgba(255, 247, 241, 0.88);
}

.status-card-coral .status-title {
  color: #ffffff;
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(240px, 1fr));
  gap: 18px;
  margin-top: 20px;
}

.feature-card {
  padding: 22px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.68);
}

.feature-card-dark {
  background: linear-gradient(145deg, rgba(31, 22, 65, 0.96), rgba(74, 56, 135, 0.94));
}

.feature-kicker {
  margin-bottom: 12px;
  color: var(--coral);
  font-size: 0.72rem;
  font-weight: 900;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(1.45rem, 2.4vw, 2.1rem);
  line-height: 1;
}

.feature-card-dark .feature-kicker {
  color: var(--lemon);
}

.feature-card-dark h2,
.feature-card-dark p {
  color: #fff6ef;
}

.site-footer {
  display: grid;
  gap: 8px;
  margin-top: 24px;
  padding: 18px 22px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.62);
  text-align: center;
}

.footer-title {
  font-size: 0.8rem;
  font-weight: 900;
}

.footer-copy {
  font-size: 0.92rem;
}

.page-shell-inner {
  padding-bottom: 56px;
}

.inner-page {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 22px;
}

.page-hero,
.filter-card,
.job-card,
.job-detail-hero,
.detail-card,
.detail-sidebar-card {
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
}

.page-hero {
  display: grid;
  gap: 16px;
  padding: 34px 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at 100% 0%, rgba(255, 228, 94, 0.4), transparent 26%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 245, 232, 0.7) 100%);
}

.page-hero-jobs h1 {
  max-width: 11ch;
}

.page-hero-generator h1,
.page-hero-generator .intro {
  max-width: none;
}

.generator-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  gap: 20px;
  align-items: start;
}

.generator-panel,
.preview-panel {
  display: grid;
  gap: 16px;
  min-width: 0;
  width: 100%;
  align-self: start;
}

.generator-panel {
  position: sticky;
  top: 96px;
}

.control-card,
.canvas-shell,
.sticker-card {
  display: grid;
  gap: 16px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 28px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  background: rgba(255, 255, 255, 0.74);
  width: 100%;
}

.upload-drop {
  display: grid;
  gap: 8px;
  padding: 22px;
  border: 1px dashed rgba(31, 22, 65, 0.2);
  border-radius: 24px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(255, 247, 232, 0.88));
  cursor: pointer;
}

.upload-title,
.style-name,
.canvas-status {
  font-weight: 800;
}

.upload-copy,
.file-status,
.canvas-copy,
.empty-list-note {
  color: var(--ink-soft);
  line-height: 1.6;
}

.file-status {
  min-height: 1.6em;
  font-size: 0.92rem;
}

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

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

.style-option,
.preset-button,
.sticker-item {
  display: grid;
  gap: 10px;
  align-items: center;
  padding: 14px;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  text-align: left;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.style-option:hover,
.preset-button:hover,
.sticker-item:hover,
.rotate-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 18px 34px rgba(80, 47, 110, 0.14);
}

.style-option-active,
.sticker-item-active {
  background: linear-gradient(145deg, rgba(31, 22, 65, 0.96), rgba(74, 56, 135, 0.94));
  color: #fff8ef;
}

.style-preview {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  border-radius: 18px;
  font-size: 0.82rem;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.style-preview-placard {
  background: #f0dcba;
  color: #231815;
  border: 2px solid #3a2b1f;
}

.style-preview-sticker {
  background: linear-gradient(135deg, #ff6b57 0%, #ff7bb0 100%);
  color: #fff8ef;
}

.style-preview-note {
  background: #fff7e8;
  color: var(--ink);
  border: 2px solid rgba(79, 71, 116, 0.2);
}

.style-preview-burst {
  background: linear-gradient(135deg, #72e4b7 0%, #9bf4d0 100%);
  color: var(--ink);
  clip-path: polygon(
    50% 0%,
    62% 15%,
    80% 6%,
    79% 27%,
    100% 30%,
    87% 47%,
    100% 64%,
    79% 67%,
    82% 88%,
    62% 79%,
    50% 100%,
    38% 79%,
    18% 88%,
    21% 67%,
    0% 64%,
    13% 47%,
    0% 30%,
    21% 27%,
    20% 6%,
    38% 15%
  );
}

.control-stack {
  display: grid;
  gap: 14px;
}

.slider-group {
  display: grid;
  gap: 8px;
}

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

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

.slider-head {
  font-size: 0.94rem;
  font-weight: 700;
}

.slider-group input[type="range"] {
  width: 100%;
  accent-color: var(--coral);
}

.preset-button {
  place-items: center;
  min-height: 50px;
  text-align: center;
}

.rotate-button {
  min-height: 48px;
  padding: 0 14px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-soft);
  color: var(--ink);
  font-weight: 800;
  transition:
    transform 160ms ease,
    box-shadow 160ms ease,
    background-color 160ms ease;
}

.tool-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tool-row-prominent {
  padding-top: 4px;
}

.canvas-shell {
  padding: 18px;
  min-width: 0;
  overflow: hidden;
}

.canvas-head {
  align-items: start;
}

.canvas-head > div {
  min-width: 0;
}

.canvas-status {
  min-width: 110px;
  text-align: right;
}

.canvas-stage {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 420px;
  height: min(72vh, 680px);
  max-height: 680px;
  padding: 18px;
  border-radius: 24px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.24) 1px, transparent 1px),
    linear-gradient(145deg, rgba(255, 245, 232, 0.7), rgba(195, 239, 255, 0.54));
  background-size: 26px 26px, 26px 26px, auto;
  touch-action: none;
  cursor: grab;
  overflow: hidden;
  min-width: 0;
}

.canvas-stage-dragging {
  cursor: grabbing;
}

#posterCanvas {
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  background: #fff7e8;
  touch-action: none;
  object-fit: contain;
}

.canvas-empty {
  position: absolute;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 40px;
  text-align: center;
  color: var(--ink-soft);
  font-size: 1rem;
  font-weight: 700;
  pointer-events: none;
}

.canvas-empty-hidden {
  display: none;
}

.tool-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}

.rotate-button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
  box-shadow: none;
  transform: none;
}

.sticker-list {
  display: grid;
  gap: 10px;
}

.sticker-item {
  display: flex;
  justify-content: space-between;
}

.jobs-layout {
  display: grid;
  grid-template-columns: minmax(240px, 0.38fr) minmax(0, 1fr);
  gap: 20px;
  align-items: start;
}

.filter-panel,
.jobs-grid,
.detail-layout {
  display: grid;
  gap: 16px;
}

.filter-card {
  padding: 22px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.7);
}

.filter-card-soft {
  box-shadow: var(--shadow-soft);
}

.filter-label,
.job-company,
.detail-company,
.detail-section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
}

.filter-label,
.detail-section-kicker {
  color: var(--coral);
  margin-bottom: 10px;
}

.filter-chip-row,
.job-skill-row,
.detail-fact-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.filter-chip,
.job-skill,
.job-meta-row span,
.detail-fact-list span {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 0 12px;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 700;
}

.filter-chip,
.job-skill,
.detail-fact-list span {
  border: 1px solid rgba(31, 22, 65, 0.1);
  background: rgba(255, 255, 255, 0.72);
}

.filter-chip-active {
  background: linear-gradient(135deg, rgba(31, 22, 65, 0.96), rgba(74, 56, 135, 0.92));
  color: #fff8ef;
}

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

.job-card {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.74);
}

.job-card-featured {
  background:
    radial-gradient(circle at top right, rgba(255, 228, 94, 0.34), transparent 28%),
    rgba(255, 255, 255, 0.8);
}

.job-card-top {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: start;
}

.job-company,
.detail-company {
  color: var(--coral);
  margin-bottom: 8px;
}

.job-summary,
.filter-card p,
.detail-card p,
.detail-list {
  color: var(--ink-soft);
  line-height: 1.7;
}

.job-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.job-meta-row span {
  background: rgba(31, 22, 65, 0.08);
  color: var(--ink);
}

.job-badge {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--coral) 0%, #ff9460 100%);
  color: #fff8ef;
  font-size: 0.74rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.job-badge-soft {
  background: rgba(31, 22, 65, 0.1);
  color: var(--ink);
}

.job-detail-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
  gap: 18px;
  padding: 24px;
  border-radius: 34px;
  background:
    radial-gradient(circle at top right, rgba(114, 228, 183, 0.32), transparent 24%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.84) 0%, rgba(255, 245, 232, 0.72) 100%);
}

.job-detail-intro {
  display: grid;
  gap: 14px;
}

.detail-sidebar-card {
  display: grid;
  gap: 14px;
  align-content: start;
  padding: 22px;
  border-radius: 28px;
  background: linear-gradient(145deg, rgba(31, 22, 65, 0.96), rgba(74, 56, 135, 0.94));
  color: #fff8ef;
}

.detail-sidebar-title {
  font-size: 1.2rem;
  font-weight: 800;
}

.detail-sidebar-card .detail-company,
.detail-sidebar-card .detail-fact-list span {
  color: #fff8ef;
}

.detail-sidebar-card .detail-fact-list span {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.14);
}

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

.detail-card {
  padding: 24px;
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.72);
}

.detail-list {
  margin: 0;
  padding-left: 18px;
}

.detail-list li + li {
  margin-top: 10px;
}

@media (max-width: 980px) {
  .hero,
  .feature-strip,
  .generator-layout,
  .jobs-layout,
  .job-detail-hero,
  .detail-layout {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    padding: 30px;
  }

  h1 {
    max-width: none;
  }

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

  .generator-panel {
    order: 1;
  }

  .preview-panel {
    order: 2;
  }

  .generator-panel {
    position: static;
  }
}

@media (max-width: 640px) {
  .page-shell {
    width: min(100% - 20px, 1180px);
    padding-top: 18px;
    padding-bottom: 28px;
  }

  .topbar {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    top: 10px;
    padding: 12px;
  }

  .topbar-nav {
    width: 100%;
    justify-content: flex-start;
  }

  .nav-link {
    flex: 1 1 0;
    min-height: 44px;
  }

  .hero-panel,
  .status-stack,
  .feature-card,
  .page-hero,
  .control-card,
  .canvas-shell,
  .sticker-card,
  .filter-card,
  .job-card,
  .job-detail-hero,
  .detail-card,
  .detail-sidebar-card {
    border-radius: 24px;
  }

  .hero-panel,
  .feature-card,
  .site-footer,
  .page-hero,
  .control-card,
  .canvas-shell,
  .sticker-card,
  .filter-card,
  .job-card,
  .detail-card,
  .detail-sidebar-card {
    padding: 22px;
  }

  .status-stack {
    padding: 14px;
  }

  h1 {
    font-size: clamp(2.1rem, 11vw, 3.3rem);
  }

  .status-title {
    font-size: 1.3rem;
  }

  .intro,
  .status-copy,
  .feature-card p,
  .footer-copy,
  .upload-copy,
  .file-status,
  .canvas-copy,
  .job-summary,
  .filter-card p,
  .detail-card p,
  .detail-list {
    font-size: 0.95rem;
  }

  .orb-lemon {
    right: 0;
    top: 150px;
    width: 120px;
    height: 120px;
  }

  .orb-blue {
    width: 160px;
    height: 160px;
  }

  .job-card-top {
    flex-direction: column;
  }

  .style-grid,
  .preset-grid {
    grid-template-columns: 1fr;
  }

  .slider-head,
  .canvas-head {
    flex-direction: column;
    align-items: flex-start;
  }

  .canvas-status {
    min-width: 0;
    text-align: left;
  }

  .canvas-stage {
    min-height: 320px;
    height: min(58vh, 460px);
    max-height: 460px;
    padding: 12px;
  }
}
