*, *::before, *::after { box-sizing: border-box; }
[hidden] { display: none !important; }

:root {
  --bg: #faf7f5;
  --bg-2: #f4f1ee;
  --panel: #ffffff;
  --panel-2: #fbfaf8;
  --border: #ece8e4;
  --border-strong: #dcd6d0;
  --text: #1f2937;
  --text-2: #4b5563;
  --text-dim: #9ca3af;
  --text-faint: #b8b2ac;
  --brand: #ff6b5a;       /* 珊瑚橙 */
  --brand-2: #ff4d8f;     /* 玫红 */
  --brand-soft: #fff0ec;
  --brand-soft-2: #ffe6ef;
  --ok: #22c55e;
  --warn: #f59e0b;
  --danger: #ef4444;
  --radius: 18px;
  --radius-sm: 12px;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, .04);
  --shadow: 0 6px 24px rgba(17, 24, 39, .06), 0 1px 2px rgba(17, 24, 39, .04);
  --shadow-lg: 0 20px 40px rgba(17, 24, 39, .10), 0 2px 6px rgba(17, 24, 39, .04);
}

html, body {
  margin: 0; padding: 0;
  min-height: 100vh;
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "PingFang SC",
               "Hiragino Sans GB", "Microsoft YaHei", sans-serif;
  -webkit-font-smoothing: antialiased;
  background:
    radial-gradient(900px 500px at 12% -10%, rgba(255,107,90,.10) 0%, transparent 55%),
    radial-gradient(900px 500px at 110% 0%, rgba(255,77,143,.08) 0%, transparent 55%),
    var(--bg);
}

::-webkit-scrollbar { width: 10px; height: 10px; }
::-webkit-scrollbar-track { background: transparent; }
::-webkit-scrollbar-thumb { background: #d9d3cd; border-radius: 10px; border: 2px solid transparent; background-clip: content-box; }
::-webkit-scrollbar-thumb:hover { background: #c6beb6; background-clip: content-box; border: 2px solid transparent; }

/* ------------------ topbar ------------------ */
.topbar {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 32px;
  max-width: 1280px; margin: 0 auto;
}
.brand { display: inline-flex; align-items: center; gap: 10px; text-decoration: none; color: var(--text); }
.brand-dot {
  width: 22px; height: 22px; border-radius: 8px;
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  box-shadow: 0 4px 12px rgba(255, 107, 90, .28);
}
.brand-logo {
  width: 32px; height: 32px;
  object-fit: contain;
  display: block;
  border-radius: 6px;
}
.brand-name {
  font-weight: 900; font-size: 22px; letter-spacing: -.2px;
  -webkit-text-stroke: .6px currentColor;
}
.topbar-right { display: flex; align-items: center; gap: 14px; }
.link-muted {
  color: var(--text-dim); text-decoration: none; font-size: 13px;
  transition: color .15s;
}
.link-muted:hover { color: var(--brand); }

/* ------------------ hero ------------------ */
.hero {
  text-align: center;
  padding: 40px 20px 36px;
  max-width: 900px; margin: 0 auto;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 6px 14px; border-radius: 999px;
  background: var(--brand-soft);
  color: var(--brand);
  font-size: 12px; font-weight: 600; letter-spacing: .3px;
  border: 1px solid #ffd7cd;
}
.hero-badge .dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--brand);
  box-shadow: 0 0 0 3px rgba(255, 107, 90, .2);
}
.hero-title {
  margin: 18px 0 14px;
  font-size: 64px; font-weight: 900; line-height: 1.15;
  letter-spacing: -1.2px;
  -webkit-text-stroke: 1.2px currentColor;
}
.hero-title .grad {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-2) 100%);
  -webkit-background-clip: text; background-clip: text; color: transparent;
  padding: 0 4px;
  /* 渐变字单独描边为品牌色，保持与本体同等视觉粗度 */
  -webkit-text-stroke: 1.2px var(--brand);
}
.hero-sub {
  margin: 0; color: var(--text-2);
  font-size: 18px; font-weight: 600; line-height: 1.7;
}

/* ------------------ layout ------------------ */
.layout {
  max-width: 1280px;
  margin: 16px auto 0;
  padding: 0 32px;
  display: grid;
  grid-template-columns: 380px 1fr;
  gap: 24px;
  align-items: start;
}
.card {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 22px;
}
.card-header {
  display: flex; align-items: center; justify-content: space-between;
  margin-bottom: 16px;
}
.card-title {
  margin: 0; font-size: 16px; font-weight: 700; color: var(--text);
}
.dots { display: inline-flex; gap: 5px; }
.dots i {
  width: 9px; height: 9px; border-radius: 50%;
  background: #ff5f56;
}
.dots i:nth-child(2) { background: #ffbd2e; }
.dots i:nth-child(3) { background: #27c93f; }

/* ------------------ studio (left) ------------------ */
.studio { display: flex; flex-direction: column; gap: 14px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field label {
  font-size: 13px; font-weight: 600; color: var(--text-2); letter-spacing: .2px;
}
.field label em {
  font-style: normal; color: var(--text-faint); font-weight: 400; margin-left: 4px;
  font-size: 11px;
}
.label-row { display: flex; align-items: center; justify-content: space-between; gap: 10px; }

input[type="text"], textarea, select {
  width: 100%;
  background: var(--panel-2);
  color: var(--text);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 11px 13px;
  font-size: 14px;
  font-family: inherit;
  outline: none;
  transition: border-color .15s, box-shadow .15s, background .15s;
}
input[type="text"]::placeholder, textarea::placeholder { color: var(--text-faint); }
input[type="text"]:hover, textarea:hover, select:hover { border-color: var(--border-strong); }
input[type="text"]:focus, textarea:focus, select:focus {
  border-color: var(--brand);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(255, 107, 90, .12);
}
textarea { resize: vertical; min-height: 110px; line-height: 1.6; }
select { cursor: pointer; appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%239ca3af' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 10px center;
  padding-right: 32px;
}
optgroup { color: var(--brand); font-weight: 600; font-style: normal; }
optgroup option { color: var(--text); font-weight: 400; }

.input-with-action { display: flex; gap: 8px; }
.input-with-action input { flex: 1; }

/* ------------------ 画面比例卡片 ------------------ */
.ratio-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.ratio-card {
  appearance: none; cursor: pointer;
  background: var(--panel);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 10px 4px 8px;
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  transition: border-color .15s, background .15s, transform .08s;
  color: var(--text);
}
.ratio-card:hover { border-color: var(--border-strong); }
.ratio-card strong { font-size: 12px; font-weight: 600; color: var(--text); }
.ratio-card small { font-size: 10px; color: var(--text-dim); letter-spacing: .3px; }
.ratio-thumb {
  display: block;
  width: var(--w, 28px); height: var(--h, 28px);
  background: #e5e7eb;
  border-radius: 3px;
  margin: 2px 0;
  transition: background .15s;
}
.ratio-card.ratio-active {
  border-color: var(--brand);
  background: var(--brand-soft);
}
.ratio-card.ratio-active .ratio-thumb { background: var(--brand); }
.ratio-card.ratio-active strong { color: var(--brand); }

/* 自动档缩图：用 emoji 代替尺寸方块 */
.ratio-thumb.ratio-auto {
  width: 36px; height: 36px;
  display: inline-flex; align-items: center; justify-content: center;
  background: linear-gradient(135deg, #ffe6dc 0%, #ffd1e0 100%);
  color: var(--brand);
  font-size: 18px; line-height: 1;
  border-radius: 8px;
}
.ratio-card.ratio-active .ratio-thumb.ratio-auto {
  background: linear-gradient(135deg, #ff6b5a 0%, #ff4d8f 100%);
  color: #fff;
}

/* ------------------ 分辨率 segmented ------------------ */
.seg {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  background: var(--panel-2);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 4px;
}
.seg-item {
  appearance: none; cursor: pointer;
  background: transparent;
  border: 0;
  border-radius: calc(var(--radius-sm) - 4px);
  padding: 8px 6px;
  display: flex; flex-direction: column; align-items: center; gap: 2px;
  transition: background .15s, box-shadow .15s;
  color: var(--text-2);
}
.seg-item strong { font-size: 14px; font-weight: 700; color: var(--text); }
.seg-item small { font-size: 10px; color: var(--text-dim); }
.seg-item:hover { background: rgba(255, 107, 90, .06); }
.seg-item.seg-active {
  background: #fff;
  box-shadow: 0 2px 6px rgba(0,0,0,.08);
}
.seg-item.seg-active strong { color: var(--brand); }

/* ------------------ 参考图上传 ------------------ */
.ref-drop {
  position: relative;
  border: 1.5px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  background: #fafaf8;
  padding: 18px 14px;
  cursor: pointer;
  transition: border-color .15s, background .15s;
  min-height: 100px;
  display: flex; align-items: center; justify-content: center;
}
.ref-drop:hover { border-color: var(--brand); background: var(--brand-soft); }
.ref-drop.drag-over { border-color: var(--brand); background: var(--brand-soft); border-style: solid; }
.ref-drop.has-image { cursor: default; padding: 8px; min-height: 0; }
.ref-empty {
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  color: var(--text-dim); text-align: center;
}
.ref-empty[hidden] { display: none; }
.ref-icon {
  width: 38px; height: 38px; border-radius: 50%;
  background: #fff; display: grid; place-items: center;
  color: var(--brand);
  border: 1px solid var(--border);
}
.ref-empty strong { font-size: 13px; color: var(--text); font-weight: 600; }
.ref-empty small { font-size: 11px; color: var(--text-faint); }
.ref-preview {
  position: relative;
  width: 100%;
  display: flex; justify-content: center;
}
.ref-preview[hidden] { display: none; }
.ref-preview img {
  max-width: 100%; max-height: 180px;
  border-radius: 6px;
  display: block;
  object-fit: contain;
  background: #fff;
}
.ref-clear {
  position: absolute; top: -6px; right: -6px;
  width: 24px; height: 24px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(17, 24, 39, .85); color: #fff;
  display: grid; place-items: center;
  font-size: 16px; line-height: 1;
  box-shadow: 0 2px 6px rgba(0,0,0,.25);
}
.ref-clear:hover { background: var(--danger); }

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

.tip {
  font-size: 11px; color: var(--text-faint); line-height: 1.5;
}
.hint { color: var(--text-faint); font-weight: 500; font-size: 12px; }
.hint-foot { margin: 4px 0 0; font-size: 12px; color: var(--text-dim); line-height: 1.6; }

.card-pill {
  padding: 3px 10px; border-radius: 999px;
  background: #f3f4f6; color: var(--text-dim);
  font-size: 11px; font-weight: 600; letter-spacing: .2px;
}

.buy-link {
  margin-left: auto; margin-right: 10px;
  font-size: 12px; font-weight: 600;
  color: var(--brand);
  text-decoration: none;
  padding: 3px 10px; border-radius: 999px;
  background: var(--brand-soft);
  border: 1px solid #ffd7cd;
  transition: background .15s, transform .08s;
  white-space: nowrap;
}
.buy-link:hover { background: #ffe1d6; transform: translateY(-1px); }
.buy-link[hidden] { display: none; }
.card-pill.ok { background: #ecfdf5; color: #059669; }
.card-pill.warn { background: #fff7ed; color: #c2410c; }
.card-pill.err { background: #fef2f2; color: #dc2626; }

.btn-primary {
  appearance: none; border: 0; cursor: pointer;
  padding: 13px 18px;
  border-radius: var(--radius-sm);
  color: #fff; font-weight: 700; font-size: 15px; letter-spacing: .3px;
  background: linear-gradient(135deg, #ff6b5a 0%, #ff4d8f 100%);
  box-shadow: 0 10px 22px rgba(255, 107, 90, .30), 0 2px 6px rgba(255, 77, 143, .18);
  transition: transform .08s ease, filter .2s, box-shadow .2s;
  position: relative; overflow: hidden;
}
.btn-primary::before {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(115deg, transparent 0%, rgba(255,255,255,.35) 50%, transparent 100%);
  transform: translateX(-100%); transition: transform .6s ease;
}
.btn-primary:hover::before { transform: translateX(100%); }
.btn-primary:hover {
  filter: brightness(1.03);
  box-shadow: 0 14px 28px rgba(255, 107, 90, .38), 0 4px 10px rgba(255, 77, 143, .22);
}
.btn-primary:active { transform: translateY(1px); }
.btn-primary[disabled] { opacity: .7; cursor: progress; filter: saturate(.7); }

.btn-ghost {
  appearance: none; cursor: pointer;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  background: var(--brand-soft);
  color: var(--brand);
  border: 1px solid #ffd7cd;
  font-size: 13px; font-weight: 600;
  transition: background .15s, transform .08s;
  white-space: nowrap;
}
.btn-ghost:hover { background: #ffe3dc; }
.btn-ghost:active { transform: translateY(1px); }
.btn-ghost[disabled] { opacity: .6; cursor: not-allowed; }

/* ------------------ stage (right) ------------------ */
.stage { display: flex; flex-direction: column; min-height: 420px; }
.tag-model {
  padding: 4px 10px; border-radius: 999px;
  background: var(--brand-soft); color: var(--brand);
  border: 1px solid #ffd7cd;
  font-size: 11px; font-weight: 600;
}
.status {
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  background: #fffaf7; border: 1px solid #ffe1d6;
  color: var(--text-2); font-size: 13px;
  margin-bottom: 16px;
  animation: slideDown .3s ease;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-4px); }
  to { opacity: 1; transform: translateY(0); }
}
.status.error { background: #fef2f2; border-color: #fecaca; color: #991b1b; }
.status.ok { background: #ecfdf5; border-color: #bbf7d0; color: #065f46; }
.status details {
  margin-top: 6px; font-size: 12px;
}
.status details summary { cursor: pointer; color: var(--text-dim); }
.status details pre {
  margin-top: 6px; padding: 8px 10px;
  background: rgba(0,0,0,.03); border-radius: 8px;
  white-space: pre-wrap; word-break: break-word;
  font-size: 11px; max-height: 200px; overflow: auto;
}

.empty {
  flex: 1;
  display: grid; place-items: center; text-align: center;
  gap: 10px; padding: 32px 20px; color: var(--text-dim);
}
.empty-icon {
  width: 84px; height: 84px; border-radius: 22px;
  display: grid; place-items: center;
  background: linear-gradient(135deg, #fff4f0, #ffe7ec);
  box-shadow: inset 0 -4px 10px rgba(255,107,90,.08);
  animation: bob 4s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-5px); }
}
.empty h3 { margin: 4px 0; font-size: 16px; font-weight: 600; color: var(--text); }
.empty p { margin: 0; font-size: 13px; max-width: 320px; }

/* 结果网格 */
.gallery {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  grid-auto-rows: max-content;
  justify-content: start;
  gap: 18px;
}
.result-card {
  margin: 0;
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex; flex-direction: column;
  transition: transform .18s ease, box-shadow .18s ease, border-color .18s ease;
  animation: cardIn .35s ease backwards;
}
@keyframes cardIn {
  from { opacity: 0; transform: translateY(10px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.result-card:hover {
  transform: translateY(-2px);
  border-color: #ffc7bc;
  box-shadow: 0 14px 28px rgba(17,24,39,.08);
}
.img-wrap {
  background:
    repeating-conic-gradient(#fafafa 0% 25%, #f2f0ee 0% 50%) 0 0/20px 20px;
  aspect-ratio: var(--ar, 1 / 1);
  overflow: hidden;
  position: relative;
}
.img-wrap img {
  width: 100%; height: 100%; object-fit: contain; display: block;
  transition: opacity .3s ease;
}
.result-meta {
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px;
  border-top: 1px solid var(--border);
  font-size: 12px; color: var(--text-dim);
  gap: 8px;
}
.size-tag {
  padding: 3px 8px; border-radius: 6px;
  background: var(--bg-2); color: var(--text-2);
  font-size: 11px; font-weight: 500;
}
.actions { display: flex; gap: 6px; }
.action-btn {
  appearance: none; cursor: pointer;
  background: #fff; color: var(--text-2);
  border: 1px solid var(--border);
  padding: 5px 9px; border-radius: 6px;
  font-size: 11px; text-decoration: none;
  transition: border-color .15s, background .15s, color .15s;
}
.action-btn:hover {
  border-color: var(--brand); background: var(--brand-soft); color: var(--brand);
}

.skeleton {
  position: relative; overflow: hidden;
  background: linear-gradient(90deg, #f3eeea 0%, #ede6e1 50%, #f3eeea 100%);
  background-size: 200% 100%;
  animation: shimmer 1.4s infinite linear;
}
@keyframes shimmer { 0% { background-position: 200% 0; } 100% { background-position: -200% 0; } }

/* ------------------ recent ------------------ */
.recent {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 0 32px;
}
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  margin-bottom: 14px;
}
.section-head h2 {
  margin: 0; font-size: 18px; font-weight: 700; color: var(--text);
}
.section-head h2 .hint {
  margin-left: 8px; font-size: 12px; font-weight: 500;
}
.recent-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
}
.recent-item {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .15s, box-shadow .15s, border-color .15s;
  position: relative;
}
.recent-item:hover {
  transform: translateY(-2px);
  border-color: #ffc7bc;
  box-shadow: var(--shadow);
}
.recent-item img {
  width: 100%; height: 140px; object-fit: cover; display: block;
  background: #faf7f5;
}
.recent-info { padding: 8px 10px 10px; }
.recent-prompt {
  margin: 0; font-size: 12px; color: var(--text-2);
  line-height: 1.5; overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
}
.recent-time {
  font-size: 11px; color: var(--text-faint); margin-top: 4px; display: inline-block;
}
.recent-del {
  position: absolute; top: 6px; right: 6px;
  width: 22px; height: 22px; border-radius: 50%;
  border: 0; cursor: pointer;
  background: rgba(0,0,0,.5); color: #fff;
  font-size: 14px; line-height: 1;
  display: grid; place-items: center;
  opacity: 0; transition: opacity .15s;
}
.recent-item:hover .recent-del { opacity: 1; }
.recent-del:hover { background: var(--danger); }

.recent-empty {
  display: flex; align-items: center; gap: 16px;
  padding: 22px 24px;
  background: var(--panel);
  border: 1px dashed var(--border-strong);
  border-radius: var(--radius-sm);
  color: var(--text-dim);
}
.recent-empty[hidden] { display: none; }
.recent-empty-icon {
  font-size: 32px;
  flex: 0 0 auto;
}
.recent-empty strong {
  display: block; color: var(--text); font-size: 14px; margin-bottom: 4px;
}
.recent-empty p {
  margin: 0; font-size: 13px; line-height: 1.55;
}

/* ------------------ inspiration ------------------ */
.inspiration {
  max-width: 1280px;
  margin: 32px auto 0;
  padding: 0 32px 40px;
}
.chips {
  display: flex; flex-wrap: wrap; gap: 8px;
  margin-bottom: 16px;
}
.chip {
  appearance: none; cursor: pointer;
  padding: 6px 14px; border-radius: 999px;
  background: var(--panel); color: var(--text-2);
  border: 1px solid var(--border);
  font-size: 12px; font-weight: 500;
  transition: all .15s;
}
.chip:hover { border-color: var(--border-strong); }
.chip.chip-active {
  background: var(--text);
  color: #fff;
  border-color: var(--text);
}
.preset-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 16px;
}
.preset {
  background: var(--panel);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: transform .18s, box-shadow .18s, border-color .18s;
  display: flex; flex-direction: column;
}
.preset:hover {
  transform: translateY(-2px);
  border-color: #ffc7bc;
  box-shadow: var(--shadow);
}
.preset-cover {
  aspect-ratio: 4 / 3;
  background: linear-gradient(135deg, #ffe6dd, #ffd9e5);
  display: grid; place-items: center;
  color: rgba(0,0,0,.25); font-size: 38px;
  position: relative; overflow: hidden;
}
.preset-cover::after {
  content: attr(data-label);
  position: absolute; top: 10px; left: 10px;
  padding: 3px 9px; border-radius: 6px;
  background: rgba(0,0,0,.55); color: #fff;
  font-size: 11px; font-weight: 600; letter-spacing: .3px;
}
.preset-body { padding: 12px; display: flex; flex-direction: column; gap: 6px; }
.preset-title { margin: 0; font-size: 14px; font-weight: 600; color: var(--text); }
.preset-desc {
  margin: 0; font-size: 12px; color: var(--text-2); line-height: 1.55;
  overflow: hidden;
  display: -webkit-box; -webkit-line-clamp: 2; line-clamp: 2; -webkit-box-orient: vertical;
}
.preset-apply {
  align-self: flex-start; margin-top: 4px;
  font-size: 11px; color: var(--brand); font-weight: 600;
}

/* ------------------ footer ------------------ */
.footer {
  max-width: 1280px; margin: 0 auto;
  padding: 24px 32px;
  display: flex; align-items: center; justify-content: center; gap: 10px;
  color: var(--text-faint); font-size: 12px;
}
.footer .sep { color: var(--text-faint); }

/* ------------------ responsive ------------------ */
@media (max-width: 980px) {
  .layout { grid-template-columns: 1fr; }
  .hero-title { font-size: 42px; letter-spacing: -.6px; -webkit-text-stroke: .9px currentColor; }
  .hero-title .grad { -webkit-text-stroke: .9px var(--brand); }
  .hero-sub { font-size: 16px; }
  .brand-name { font-size: 20px; }
  .topbar, .recent, .inspiration, .footer { padding-left: 16px; padding-right: 16px; }
  .layout { padding: 0 16px; }
}
