:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --text: #000000;
  --muted: #5f6368;
  --line: #dadce0;
  --blue: #1a73e8;
  --blue-light: #4285f4;
  --red: #ea4335;
  --yellow: #fbbc04;
  --green: #34a853;
  --soft-blue: #e8f0fe;
  --soft-gray: #f8fafd;
  --shadow: 0 16px 38px rgba(60, 64, 67, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
}

a {
  color: var(--blue);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 12px clamp(18px, 4vw, 56px);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid #e0e0e0;
  backdrop-filter: blur(18px);
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #000000;
  font-size: 28px;
  font-weight: 750;
  letter-spacing: 0;
}

.logo::before {
  content: "";
  width: 28px;
  height: 28px;
  background: conic-gradient(from 25deg, var(--blue-light), var(--green), var(--yellow), var(--red), var(--blue-light));
  clip-path: polygon(50% 0, 62% 36%, 100% 50%, 62% 64%, 50% 100%, 38% 64%, 0 50%, 38% 36%);
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(14px, 2.5vw, 32px);
  align-items: center;
  justify-content: flex-end;
  font-size: 18px;
}

.nav a {
  position: relative;
  color: #000000;
  font-weight: 500;
  padding: 18px 0;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -13px;
  height: 3px;
  background: var(--blue);
  opacity: 0;
}

.nav a:hover {
  text-decoration: none;
}

.nav a:hover::after {
  opacity: 1;
}

.nav a.active,
.nav a[aria-current="page"] {
  color: var(--blue);
  font-weight: 750;
}

.nav a.active::after,
.nav a[aria-current="page"]::after {
  opacity: 1;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(56px, 9vw, 120px) clamp(18px, 5vw, 72px) 36px;
}

.home-hero {
  display: block;
  padding-top: clamp(24px, 3vw, 44px);
  background: linear-gradient(110deg, rgba(251, 188, 4, 0.12), rgba(66, 133, 244, 0.13) 58%, rgba(52, 168, 83, 0.08));
}

.compact-hero,
.prompt-hero {
  display: block;
  padding-top: clamp(28px, 4vw, 54px);
  background: linear-gradient(110deg, rgba(251, 188, 4, 0.10), rgba(66, 133, 244, 0.12) 58%, rgba(52, 168, 83, 0.07));
  align-items: stretch;
}

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

.home-hero .hero-copy {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.compact-hero .hero-copy,
.prompt-hero .hero-copy {
  max-width: 920px;
  margin: 0 auto;
  text-align: center;
}

.home-hero h1 {
  max-width: none;
  font-size: clamp(34px, 4.2vw, 54px);
  white-space: nowrap;
}

.home-hero .hero-actions {
  justify-content: center;
}

.compact-hero .hero-actions,
.prompt-hero .hero-actions {
  justify-content: center;
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 9px 14px;
  border: 1px solid #d2e3fc;
  border-radius: 999px;
  background: var(--soft-blue);
  color: #1967d2;
  font-size: 14px;
  font-weight: 650;
}

h1,
h2,
h3 {
  line-height: 1.15;
  letter-spacing: 0;
}

h1 {
  margin: 0;
  color: #000000;
  font-size: clamp(52px, 8.5vw, 104px);
  font-weight: 700;
  max-width: 860px;
}

h2 {
  margin: 0 0 18px;
  color: #000000;
  font-size: clamp(28px, 4vw, 42px);
  font-weight: 650;
}

h3 {
  margin: 0 0 10px;
  color: #202124;
  font-size: 20px;
  font-weight: 650;
}

p {
  margin: 0 0 16px;
}

.hero-subtitle {
  margin-top: 22px;
  color: var(--muted);
  font-size: clamp(18px, 2.2vw, 22px);
  max-width: 760px;
}

.home-hero .hero-subtitle {
  max-width: 860px;
  margin-right: auto;
  margin-left: auto;
}

.compact-hero .hero-subtitle,
.prompt-hero .hero-subtitle {
  max-width: 820px;
  margin-right: auto;
  margin-left: auto;
}

.compact-hero {
  padding-top: clamp(16px, 2vw, 30px);
  padding-bottom: 22px;
}

.prompt-hero {
  padding-top: clamp(16px, 2vw, 30px);
  padding-bottom: 22px;
}

.compact-hero h1 {
  max-width: none;
  font-size: clamp(32px, 4vw, 52px);
  white-space: nowrap;
}

.prompt-hero h1 {
  max-width: none;
  font-size: clamp(32px, 4vw, 52px);
  white-space: nowrap;
}

.compact-hero .hero-subtitle {
  max-width: 760px;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.45;
}

.prompt-hero .hero-subtitle {
  max-width: 760px;
  font-size: clamp(15px, 1.45vw, 18px);
  line-height: 1.45;
}

.compact-hero .hero-actions {
  margin-top: 18px;
}

.prompt-hero .hero-actions {
  margin-top: 18px;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 13px 24px;
  border: 0;
  border-radius: 999px;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}

.button:hover {
  text-decoration: none;
  transform: translateY(-1px);
}

.button-primary {
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  color: #ffffff;
  box-shadow: 0 8px 22px rgba(26, 115, 232, 0.28);
}

.button-secondary {
  background: #ffffff;
  color: #1a73e8;
  border: 1px solid var(--line);
}

.full-width {
  width: 100%;
}

.tool-panel {
  background: #ffffff;
  border: 1px solid #e0e0e0;
  border-radius: 28px;
  padding: clamp(18px, 3vw, 28px);
  box-shadow: var(--shadow);
}

.hero-tool {
  min-height: 600px;
}

.generator-workspace {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 1fr);
  gap: 24px;
  max-width: 1220px;
  margin: clamp(22px, 3vw, 36px) auto 0;
}

.generator-card,
.preview-card {
  min-height: 560px;
  padding: clamp(18px, 2.4vw, 28px);
}

.tool-title {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 24px;
  color: #000000;
  font-size: clamp(24px, 2.2vw, 30px);
  font-weight: 750;
  line-height: 1.15;
}

.mode-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0;
  margin-bottom: 20px;
  padding: 5px;
  border: 1px solid #e6ddcf;
  border-radius: 14px;
  background: #fff9ec;
}

.mode-tab {
  min-height: 44px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  color: #4d4d4d;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
}

.mode-tab.is-active {
  background: #ffffff;
  color: #000000;
  box-shadow: 0 2px 8px rgba(60, 64, 67, 0.16);
}

.select-row {
  margin-bottom: 16px;
}

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

.generator-card textarea {
  min-height: 132px;
  margin-top: 8px;
  font-size: 15px;
}

.safety-note {
  margin: 12px 0 8px;
  color: var(--muted);
  font-size: 14px;
}

.prompt-count {
  margin-bottom: 16px;
  color: var(--muted);
  font-size: 14px;
}

.generator-meta {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

.reference-block {
  margin: 4px 0 24px;
}

.reference-block.is-hidden {
  display: none;
}

.reference-title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
  color: #000000;
  font-size: 18px;
  font-weight: 750;
}

.reference-title span,
.reference-title em,
.upload-tile small {
  color: var(--yellow);
  font-style: normal;
}

.upload-tile {
  display: grid;
  place-items: center;
  width: 150px;
  min-height: 150px;
  border: 1px dashed #dadce0;
  border-radius: 18px;
  background: #ffffff;
  color: #000000;
  box-shadow: 0 3px 10px rgba(60, 64, 67, 0.06);
}

.upload-tile span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  border: 1px dashed #dadce0;
  border-radius: 50%;
  font-size: 24px;
}

.upload-tile strong {
  margin-top: 8px;
}

.preview-frame {
  display: grid;
  place-items: center;
  min-height: 350px;
  padding: clamp(16px, 3vw, 28px);
  border: 1px dashed #dadce0;
  border-radius: 28px;
}

.preview-art {
  position: relative;
  display: grid;
  place-items: center;
  width: 100%;
  max-width: 720px;
  min-height: 270px;
  padding: 32px;
  overflow: hidden;
  border: 1px solid #e0e0e0;
  border-radius: 22px;
  background: linear-gradient(110deg, #fffaf0, #eef4ff);
  text-align: center;
}

.preview-art strong,
.preview-art p,
.preview-icon {
  position: relative;
  z-index: 1;
}

.preview-art strong {
  color: #000000;
  font-size: clamp(17px, 1.6vw, 22px);
  line-height: 1.2;
}

.preview-art p {
  max-width: 430px;
  margin: 12px 0 0;
  color: #4d4d4d;
  font-size: 15px;
}

.preview-lines {
  position: absolute;
  inset: 42px 52px auto;
  height: 56px;
  opacity: 0.46;
  background:
    linear-gradient(#d3d7de, #d3d7de) 0 0 / 100% 12px no-repeat,
    linear-gradient(#d3d7de, #d3d7de) 40px 34px / calc(100% - 80px) 12px no-repeat;
  border-radius: 999px;
}

.preview-dots {
  position: absolute;
  inset: 70px 90px 52px;
  opacity: 0.42;
  background-image: radial-gradient(circle, #3c4043 2.3px, transparent 2.6px);
  background-size: 13px 13px;
  mask-image: radial-gradient(ellipse at 50% 48%, #000 0 50%, transparent 73%);
}

.preview-icon {
  display: grid;
  place-items: center;
  width: 66px;
  height: 66px;
  margin-bottom: 14px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid rgba(218, 220, 224, 0.7);
  color: #5f6368;
  font-size: 26px;
  backdrop-filter: blur(4px);
}

.result-preview-grid {
  display: grid;
  gap: 14px;
}

.result-card {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 14px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 6px 18px rgba(60, 64, 67, 0.06);
}

.result-card strong {
  color: #000000;
  font-size: 17px;
}

.result-card p {
  margin: 2px 0 6px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.4;
}

.result-card span {
  display: inline-flex;
  width: fit-content;
  padding: 4px 8px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: #1967d2;
  font-size: 12px;
  font-weight: 750;
}

.result-thumb {
  grid-row: span 3;
  aspect-ratio: 16 / 10;
  border-radius: 16px;
  background: linear-gradient(135deg, #e8f0fe, #ffffff);
}

.cinematic-thumb {
  background: linear-gradient(135deg, #1a73e8, #fbbc04);
}

.product-thumb {
  background: linear-gradient(135deg, #ffffff, #34a853);
}

.social-thumb {
  background: linear-gradient(135deg, #ea4335, #4285f4);
}

.panel-topline {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
  color: var(--muted);
}

.panel-topline strong {
  color: #202124;
}

.field-label,
.input-grid label {
  display: grid;
  gap: 8px;
  color: #202124;
  font-size: 14px;
  font-weight: 750;
}

textarea,
input,
select {
  width: 100%;
  border: 1px solid #dadce0;
  border-radius: 16px;
  background: #ffffff;
  color: var(--text);
  font: inherit;
}

textarea:focus,
input:focus,
select:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #d2e3fc;
  outline: none;
}

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

input,
select {
  min-height: 44px;
  padding: 9px 11px;
}

.upload-placeholder {
  display: grid;
  place-items: center;
  min-height: 112px;
  margin: 16px 0;
  padding: 18px;
  border: 1px dashed #aecbfa;
  border-radius: 20px;
  background:
    linear-gradient(135deg, rgba(66, 133, 244, 0.10), rgba(52, 168, 83, 0.08)),
    #ffffff;
  text-align: center;
}

.upload-placeholder span {
  font-weight: 850;
}

.upload-placeholder small {
  color: var(--muted);
}

.control-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-bottom: 18px;
}

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

fieldset {
  display: grid;
  gap: 8px;
  margin: 0;
  padding: 14px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: var(--soft-gray);
}

legend {
  padding: 0 6px;
  color: #202124;
  font-size: 13px;
  font-weight: 850;
}

fieldset label {
  display: flex;
  gap: 8px;
  align-items: center;
  color: var(--muted);
  font-size: 14px;
}

fieldset input {
  width: auto;
  min-height: auto;
}

.link-cards,
.content-section,
.site-footer {
  max-width: 1180px;
  margin: 0 auto;
  padding: clamp(28px, 5vw, 58px) clamp(18px, 4vw, 34px);
}

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

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

.tools-link-section h2 {
  grid-column: 1 / -1;
  margin-bottom: 0;
  text-align: center;
}

.link-card,
.feature-grid article,
.usecase-grid article,
.checklist-card,
.template-card,
.example-list article {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 24px;
  box-shadow: 0 8px 22px rgba(60, 64, 67, 0.08);
}

.link-card {
  display: block;
  padding: 24px;
  color: var(--text);
}

.link-card span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 850;
  text-transform: uppercase;
}

.link-card strong {
  display: block;
  margin: 6px 0;
  font-size: 24px;
}

.content-section {
  color: #202124;
}

.content-section > p,
.split-section p {
  max-width: 930px;
  color: var(--muted);
  font-size: 17px;
}

.feature-grid,
.usecase-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 24px;
}

.feature-grid article,
.usecase-grid article {
  padding: 20px;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: center;
}

.reverse {
  direction: rtl;
}

.reverse > * {
  direction: ltr;
}

.mini-visual,
.image-flow {
  min-height: 280px;
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 188, 4, 0.24), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(66, 133, 244, 0.22), transparent 32%),
    radial-gradient(circle at 60% 82%, rgba(52, 168, 83, 0.18), transparent 30%),
    #f8fafd;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.mini-visual {
  position: relative;
}

.video-showcase {
  position: relative;
  min-height: 280px;
  aspect-ratio: 16 / 10;
  border: 1px solid var(--line);
  border-radius: 32px;
  background:
    radial-gradient(circle at 20% 20%, rgba(251, 188, 4, 0.20), transparent 28%),
    radial-gradient(circle at 80% 30%, rgba(66, 133, 244, 0.18), transparent 32%),
    #f8fafd;
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-showcase video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.scene-card {
  position: absolute;
  width: 58%;
  height: 44%;
  border-radius: 28px;
  background: linear-gradient(135deg, var(--blue-light), var(--blue));
  box-shadow: 0 18px 42px rgba(66, 133, 244, 0.24);
}

.scene-card-one {
  top: 34px;
  left: 32px;
}

.scene-card-two {
  right: 30px;
  bottom: 34px;
  background: linear-gradient(135deg, var(--green), var(--yellow));
}

.image-flow {
  display: grid;
  grid-template-columns: 1fr 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 24px;
}

.image-flow div {
  aspect-ratio: 1;
  border-radius: 28px;
  background: linear-gradient(135deg, #ffffff, #e8f0fe);
  border: 1px solid #d2e3fc;
}

.image-flow span {
  height: 4px;
  border-radius: 999px;
  background: linear-gradient(90deg, var(--red), var(--yellow), var(--green), var(--blue));
}

.prompt-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 20px 0 6px;
}

.prompt-strip span {
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: #1967d2;
  font-size: 14px;
  font-weight: 750;
}

.table-wrap {
  overflow-x: auto;
  margin-top: 22px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
}

table {
  width: 100%;
  min-width: 720px;
  border-collapse: collapse;
}

th,
td {
  padding: 16px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: var(--soft-gray);
  color: #202124;
}

.faq-section details {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  margin-bottom: 10px;
  padding: 16px 18px;
}

summary {
  color: #202124;
  font-weight: 850;
  cursor: pointer;
}

details p {
  margin-top: 12px;
}

.small-tool textarea {
  min-height: 132px;
}

.compact-hero .small-tool {
  max-width: 760px;
  margin: clamp(18px, 2.8vw, 30px) auto 0;
}

.prompt-hero .prompt-tool {
  max-width: 980px;
  margin: clamp(18px, 2.8vw, 30px) auto 0;
}

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

.prompt-tool textarea {
  min-height: 124px;
  margin-bottom: 14px;
}

.checklist-card,
.template-card {
  padding: 24px;
}

.checklist-card strong,
.template-card strong {
  display: block;
  margin-bottom: 14px;
  font-size: 20px;
}

.checklist-card ul {
  margin: 0;
  padding-left: 20px;
}

.example-list {
  display: grid;
  gap: 12px;
  margin-top: 20px;
}

.example-list article {
  padding: 18px;
}

.prompt-actions {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
}

.prompt-example-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 22px;
}

.prompt-example-grid article {
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 8px 22px rgba(60, 64, 67, 0.08);
}

.prompt-example-grid article p {
  color: var(--muted);
  font-size: 15px;
}

.prompt-example-grid article div,
.prompt-parts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.prompt-example-grid span,
.prompt-parts h3 {
  margin: 0;
  padding: 5px 9px;
  border-radius: 999px;
  background: var(--soft-blue);
  color: #1967d2;
  font-size: 12px;
  font-weight: 750;
}

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

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 28px;
  border-top: 1px solid var(--line);
  color: var(--muted);
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-content: flex-start;
  justify-content: flex-end;
}

.toast {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  max-width: min(420px, calc(100vw - 36px));
  padding: 16px 18px;
  border-radius: 20px;
  background: #202124;
  color: #ffffff;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.25);
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.toast.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 980px) {
  .hero,
  .split-section,
  .generator-workspace {
    grid-template-columns: 1fr;
  }

  .feature-grid,
  .usecase-grid,
  .tools-link-section,
  .prompt-example-grid,
  .compact-feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-tool {
    min-height: auto;
  }

  .generator-card,
  .preview-card {
    min-height: auto;
  }
}

@media (max-width: 720px) {
  .site-header {
    position: static;
    align-items: flex-start;
    flex-direction: column;
  }

  .nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 32px;
  }

  .control-grid,
  .two-cols,
  .select-row.two-up,
  .link-cards,
  .tools-link-section,
  .feature-grid,
  .usecase-grid,
  .input-grid,
  .prompt-example-grid,
  .compact-feature-grid {
    grid-template-columns: 1fr;
  }

  .result-card {
    grid-template-columns: 1fr;
  }

  .prompt-actions {
    grid-template-columns: 1fr;
  }

  .home-hero {
    padding-top: 22px;
  }

  .home-hero h1 {
    font-size: clamp(30px, 10vw, 44px);
    white-space: normal;
  }

  .compact-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    white-space: normal;
  }

  .prompt-hero h1 {
    font-size: clamp(30px, 9vw, 42px);
    white-space: normal;
  }

  .tool-title {
    margin-bottom: 22px;
  }

  .mode-tab {
    font-size: 16px;
  }

  .generator-meta {
    flex-direction: column;
  }

  .preview-frame {
    min-height: 300px;
  }

  .preview-art {
    min-height: 260px;
    padding: 28px;
  }

  .site-footer {
    flex-direction: column;
  }

  .site-footer nav {
    justify-content: flex-start;
  }
}
