:root {
  --green: #154f3a;
  --deep-green: #0b3528;
  --fresh-green: #7cab5f;
  --mint: #dff1e8;
  --paper: #fbf7ed;
  --cream: #f0eadb;
  --ink: #23332c;
  --muted: #718077;
  --line: rgba(21, 79, 58, .14);
  --white: #fffefa;
  --gold: #d9b872;
}

* { box-sizing: border-box; }
body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(223,241,232,.75), transparent 28%),
    radial-gradient(circle at 88% 14%, rgba(217,184,114,.18), transparent 24%),
    linear-gradient(180deg, #fffdf7 0%, var(--paper) 42%, #f6f0e3 100%);
  font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
}
body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background-image:
    radial-gradient(circle at 22% 28%, rgba(21,79,58,.045) 0 1px, transparent 2px),
    radial-gradient(circle at 74% 18%, rgba(217,184,114,.08) 0 1px, transparent 2px);
  background-size: 46px 46px, 64px 64px;
  mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}
.topbar {
  height: 72px; padding: 0 6vw; display: flex; align-items: center; justify-content: space-between;
  border-bottom: 1px solid var(--line); background: rgba(255,254,250,.78); backdrop-filter: blur(16px);
  position: sticky; top: 0; z-index: 10;
}
.brand {
  display: flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  padding: 7px 11px 7px 8px;
  border-radius: 18px;
  background: rgba(255,254,250,.58);
  box-shadow: inset 0 0 0 1px rgba(21,79,58,.06);
}
.brand-logo { width: 54px; height: 40px; display: block; object-fit: contain; border-radius: 10px; background: transparent; }
.brand strong, .brand span { display: block; }
.brand strong { color: var(--deep-green); font-size: 16px; letter-spacing: 1px; }
.brand span { color: var(--muted); font-size: 11px; margin-top: 2px; letter-spacing: 1px; }
.topbar-actions { display: flex; align-items: center; gap: 10px; }
.brand-slogan {
  display: inline-flex;
  align-items: center;
  height: 30px;
  padding: 0 11px;
  border: 1px solid rgba(21,79,58,.08);
  border-radius: 999px;
  color: var(--green);
  background: linear-gradient(135deg, rgba(237,246,239,.92), rgba(255,254,250,.78));
  box-shadow: 0 8px 18px rgba(39,71,56,.05);
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
}
.service-status { display: flex; gap: 8px; align-items: center; padding: 7px 10px; border-radius: 999px; color: var(--muted); background: rgba(255,255,255,.58); font-size: 12px; }
.service-status i { width: 7px; height: 7px; border-radius: 50%; background: #d09a49; }
.service-status.ready i { background: #46a46d; }
.service-status.error i { background: #d15a52; }
.auth-user { display: flex; align-items: center; gap: 8px; padding: 7px 10px; border-radius: 999px; color: var(--green); background: rgba(237,246,239,.92); font-size: 11px; }
.auth-user a { color: var(--muted); text-decoration: none; }
.auth-gate { width: min(520px, 90vw); min-height: calc(100vh - 72px); display: grid; place-items: center; margin: 0 auto; padding: 40px 0; }
.auth-card { width: 100%; padding: 34px; border: 1px solid var(--line); border-radius: 28px; text-align: center; background: rgba(255,254,250,.94); box-shadow: 0 24px 60px rgba(39,71,56,.12); }
.auth-card img { width: 116px; height: 66px; object-fit: contain; }
.auth-card .eyebrow { margin-top: 18px; }
.auth-card h2 { font-size: 24px; }
.auth-card p:not(.eyebrow) { margin: 14px auto 22px; max-width: 380px; color: var(--muted); font-size: 13px; line-height: 1.8; }
.auth-card button { width: 100%; padding: 14px 18px; cursor: pointer; border: 0; border-radius: 14px; color: #fff; background: linear-gradient(135deg, var(--green), #3e7658); box-shadow: 0 12px 24px rgba(21,79,58,.18); font-size: 15px; font-weight: 700; }
.auth-card small { display: block; margin-top: 13px; color: #8b9991; font-size: 11px; }

main { width: min(1220px, 90vw); margin: 0 auto 70px; }
.hero { display: grid; grid-template-columns: minmax(0, .95fr) minmax(330px, .78fr); gap: 28px; align-items: center; padding: 52px 0 30px; position: relative; }
.hero::before {
  content: "";
  position: absolute;
  width: 260px;
  height: 260px;
  right: 4%;
  top: 20px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(223,241,232,.82), transparent 68%);
  filter: blur(8px);
  z-index: -1;
  animation: breathe 4.8s ease-in-out infinite;
}
.eyebrow { margin: 0 0 10px; color: #7d937f; font-size: 10px; font-weight: 700; letter-spacing: 3px; }
.hero .eyebrow { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; border-radius: 999px; background: rgba(255,254,250,.7); border: 1px solid rgba(21,79,58,.08); box-shadow: 0 8px 18px rgba(39,71,56,.05); }
.hero .eyebrow::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--fresh-green); box-shadow: 0 0 0 4px rgba(124,171,95,.12); }
h1 { margin: 0; color: var(--deep-green); font-family: Georgia, "Songti SC", serif; font-size: clamp(38px, 5vw, 62px); line-height: 1.12; font-weight: 500; letter-spacing: -2px; }
h1 em { color: #2c7356; font-style: normal; }
.hero-copy { max-width: 600px; color: #61766c; font-size: 14px; line-height: 1.9; }
.hero-flow {
  width: fit-content;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 8px;
  border: 1px solid rgba(21,79,58,.08);
  border-radius: 18px;
  color: #42685b;
  background: linear-gradient(135deg, rgba(255,254,250,.82), rgba(237,246,239,.74));
  box-shadow: 0 12px 26px rgba(39,71,56,.06);
  font-size: 12px;
  font-weight: 700;
}
.hero-flow span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
  padding: 7px 10px 7px 7px;
  border-radius: 13px;
  background: rgba(255,254,250,.7);
}
.hero-flow span:nth-of-type(2) {
  color: #fffefa;
  background: linear-gradient(135deg, var(--green), #4e835f);
  box-shadow: 0 8px 18px rgba(21,79,58,.16);
}
.hero-flow b {
  width: 19px;
  height: 19px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  color: #fff;
  background: var(--green);
  font-size: 10px;
}
.hero-flow span:nth-of-type(2) b { color: var(--green); background: #fffefa; }
.hero-flow i { width: 20px; height: 1px; background: linear-gradient(90deg, transparent, #91b09f, transparent); }
.hero-brand-card {
  max-width: 500px;
  justify-self: end;
  position: relative;
  overflow: hidden;
  padding: 16px;
  border: 1px solid rgba(21,79,58,.1);
  border-radius: 28px;
  background:
    radial-gradient(circle at 88% 10%, rgba(124,171,95,.18), transparent 28%),
    linear-gradient(145deg, rgba(255,254,250,.94), rgba(246,251,244,.84));
  box-shadow: 0 18px 44px rgba(39,71,56,.1);
}
.hero-brand-card::before {
  content: "";
  position: absolute;
  right: -44px;
  top: -34px;
  width: 150px;
  height: 150px;
  border-radius: 38px;
  background: rgba(21,79,58,.045);
  transform: rotate(18deg);
}
.hero-brand-card::after {
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 14px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(21,79,58,.18), transparent);
}
.brand-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
}
.brand-card-head img {
  width: 70px;
  height: 42px;
  object-fit: contain;
  padding: 6px 8px;
  border-radius: 14px;
  background: rgba(255,255,255,.72);
  box-shadow: inset 0 0 0 1px rgba(21,79,58,.06);
}
.brand-card-head strong,
.brand-card-head span { display: block; }
.brand-card-head strong { color: var(--deep-green); font-size: 14px; letter-spacing: .6px; }
.brand-card-head span { margin-top: 2px; color: var(--muted); font-size: 11px; }
.hero-brand-card p {
  position: relative;
  z-index: 2;
  margin: 12px 4px 2px;
  color: #62796e;
  font-size: 12px;
  line-height: 1.7;
}
.process-demo { overflow: hidden; padding: 10px; border-radius: 22px; border: 1px solid rgba(21,79,58,.08); background: rgba(255,254,250,.76); box-shadow: 0 12px 28px rgba(39,71,56,.07); transform: rotate(.7deg); transition: .25s ease; position: relative; }
.process-demo::before {
  content: "";
  position: absolute;
  inset: -60% -30%;
  background: linear-gradient(115deg, transparent 38%, rgba(255,255,255,.55) 48%, transparent 58%);
  transform: translateX(-55%) rotate(8deg);
  animation: shine 5.2s ease-in-out infinite;
  pointer-events: none;
}
.process-demo::after {
  content: "";
  position: absolute;
  inset: 10px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.62);
  pointer-events: none;
}
.process-demo:hover { transform: rotate(0deg) translateY(-2px); box-shadow: 0 18px 38px rgba(39,71,56,.1); }
.process-demo > * { position: relative; z-index: 1; }
.process-demo em {
  position: absolute;
  top: 14px;
  right: 14px;
  z-index: 3;
  padding: 4px 9px;
  border-radius: 999px;
  color: #fffefa;
  background: linear-gradient(135deg, var(--green), #5f8d48);
  box-shadow: 0 8px 18px rgba(21,79,58,.16);
  font-size: 10px;
  font-style: normal;
  font-weight: 800;
  letter-spacing: .4px;
}
.process-demo img { width: 100%; display: block; }
.magic-dot { position: absolute; display: block; width: 9px; height: 9px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 6px rgba(217,184,114,.14); opacity: .75; pointer-events: none; }
.dot-one { right: 20px; top: 18px; animation: floatOne 3.4s ease-in-out infinite; }
.dot-two { left: 30px; bottom: 34px; width: 6px; height: 6px; animation: floatTwo 4s ease-in-out infinite; }
.dot-three { right: 34%; bottom: 22px; width: 5px; height: 5px; background: var(--fresh-green); animation: floatOne 4.6s ease-in-out infinite reverse; }
.workspace { display: grid; grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr); gap: 20px; align-items: start; }
.panel { border: 1px solid var(--line); border-radius: 24px; background: rgba(255,254,250,.86); box-shadow: 0 14px 35px rgba(39,71,56,.06); }
.form-panel { padding: 26px; }
.step-heading { display: flex; gap: 13px; align-items: flex-start; margin-bottom: 15px; }
.step-heading > span { color: #91aa9c; font-family: Georgia, serif; font-size: 24px; line-height: 1; }
h2 { margin: 0; color: var(--deep-green); font-size: 18px; letter-spacing: .5px; }
.step-heading p { margin: 5px 0 0; color: var(--muted); font-size: 12px; }
.shoot-guide { margin-bottom: 13px; padding: 12px; border-radius: 16px; color: var(--green); background: linear-gradient(135deg, #edf6ef, #f6fbf4); }
.shoot-guide > strong { display: block; margin-bottom: 10px; font-size: 12px; }
.shoot-guide-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 7px; }
.shoot-guide-item { display: flex; min-width: 0; align-items: center; gap: 5px; padding: 7px 5px; border-radius: 12px; background: rgba(255,255,255,.86); transition: .2s ease; }
.shoot-guide-item:hover { transform: translateY(-1px); box-shadow: 0 8px 18px rgba(39,71,56,.06); }
.shoot-guide-item svg { width: 29px; height: 29px; flex: 0 0 auto; fill: none; stroke: var(--green); stroke-linecap: round; stroke-linejoin: round; stroke-width: 2; }
.shoot-guide-item span, .shoot-guide-item small { display: block; white-space: nowrap; }
.shoot-guide-item span { color: var(--deep-green); font-size: 11px; font-weight: 700; }
.shoot-guide-item small { margin-top: 1px; color: var(--muted); font-size: 9px; font-weight: 400; }
.upload-zone {
  min-height: 152px; display: flex; align-items: center; justify-content: center; flex-direction: column;
  position: relative; overflow: hidden; cursor: pointer; border: 1px dashed #a9beb3; border-radius: 18px; color: var(--green); background: linear-gradient(180deg, #fffefa 0%, #fbfdf9 100%); transition: .2s ease;
}
.upload-zone::before { content: ""; position: absolute; inset: 14px; border-radius: 14px; border: 1px solid rgba(21,79,58,.04); pointer-events: none; }
.upload-zone::after { content: ""; position: absolute; width: 120px; height: 120px; border-radius: 50%; background: rgba(223,241,232,.52); right: -42px; bottom: -52px; pointer-events: none; transition: .25s ease; }
.upload-zone:hover, .upload-zone.dragging { background: #edf6ef; border-color: var(--green); transform: translateY(-1px); box-shadow: 0 12px 26px rgba(39,71,56,.07); }
.upload-zone:hover::after, .upload-zone.dragging::after { transform: scale(1.18); background: rgba(223,241,232,.72); }
.upload-zone input { display: none; }
.upload-icon { width: 38px; height: 38px; display: grid; place-items: center; margin-bottom: 8px; border-radius: 50%; color: #fff; background: linear-gradient(135deg, var(--green), #3f7a5b); box-shadow: 0 8px 18px rgba(21,79,58,.18); font-size: 26px; font-weight: 300; position: relative; z-index: 1; animation: pulseSoft 2.6s ease-in-out infinite; }
.upload-zone strong, .upload-zone small { position: relative; z-index: 1; }
.upload-zone strong { font-size: 14px; }
.upload-zone small { color: var(--muted); margin-top: 5px; font-size: 11px; }
.upload-note { margin: 8px 2px 0; color: var(--muted); font-size: 11px; }
.preview-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; margin-top: 10px; }
.preview { aspect-ratio: 1; position: relative; overflow: hidden; border-radius: 12px; background: var(--cream); box-shadow: 0 8px 18px rgba(39,71,56,.06); }
.preview img { width: 100%; height: 100%; object-fit: cover; }
.preview button { width: 22px; height: 22px; position: absolute; top: 5px; right: 5px; cursor: pointer; border: 0; border-radius: 50%; color: #fff; background: rgba(0,0,0,.55); }
.mode-heading { margin-top: 24px; }
.mode-grid { display: grid; gap: 8px; }
.mode-card { display: grid; grid-template-columns: minmax(0, 1fr) 104px; gap: 12px; align-items: center; position: relative; cursor: pointer; padding: 13px 14px 13px 39px; border: 1px solid var(--line); border-radius: 15px; background: rgba(255,255,255,.92); transition: .2s ease; }
.mode-card:hover { border-color: #8eb8a3; transform: translateY(-1px); box-shadow: 0 10px 22px rgba(39,71,56,.06); }
.mode-card.active { border-color: var(--green); background: linear-gradient(135deg, var(--mint), #f4fbf6); box-shadow: inset 0 0 0 1px var(--green), 0 10px 24px rgba(39,71,56,.08); }
.mode-card.active::after { content: "已选"; position: absolute; right: 12px; top: 10px; padding: 2px 6px; border-radius: 999px; color: #fff; background: var(--green); font-size: 9px; }
.mode-card input { position: absolute; top: 15px; left: 14px; accent-color: var(--green); }
.mode-card strong, .mode-card small { display: block; }
.mode-card strong { color: var(--deep-green); font-size: 13px; }
.mode-card em { margin-left: 5px; padding: 2px 5px; border-radius: 8px; color: #fff; background: var(--green); font-size: 9px; font-style: normal; font-weight: 500; }
.mode-card small { margin-top: 5px; color: var(--muted); font-size: 11px; line-height: 1.55; }
.mode-visual { min-height: 72px; border-radius: 10px; background: rgba(248,245,237,.72); border: 1px solid rgba(21,79,58,.08); }
.mode-visual svg { width: 100%; height: 72px; display: block; }
.mode-visual .paper, .mode-visual .box, .mode-visual .bottle, .mode-visual .stick, .mode-visual .canvas {
  fill: #fffefa; stroke: #6c9b83; stroke-width: 1.8; stroke-linejoin: round;
}
.mode-visual .canvas { fill: rgba(255,254,250,.74); stroke: #b7d1c2; stroke-dasharray: 3 2; }
.mode-visual .product, .mode-visual .label { fill: #dfeee7; stroke: #6c9b83; stroke-width: 1.4; }
.mode-visual .alt { fill: #edf7f1; }
.mode-visual .box { fill: #f2dfbd; }
.mode-visual .box-top { fill: #ead0a0; stroke: #6c9b83; stroke-width: 1.8; stroke-linejoin: round; }
.mode-visual .box-side { fill: #dfc28d; stroke: #6c9b83; stroke-width: 1.8; stroke-linejoin: round; }
.mode-visual .line { fill: none; stroke: #9dbfac; stroke-width: 1.7; stroke-linecap: round; }
.mode-visual text { fill: #48665a; font-size: 10.5px; font-weight: 700; text-anchor: middle; }
.mode-visual .caption { fill: #154f3a; font-size: 9.5px; }
.mode-note { margin: 9px 2px 0; color: #577467; font-size: 11px; line-height: 1.6; }
.generate-notice { margin: 15px 0 0; padding: 9px 11px; border-radius: 9px; color: #9a6540; background: #fff4e8; font-size: 11px; line-height: 1.6; }
.generate-button {
  width: 100%; margin-top: 18px; padding: 15px; cursor: pointer; border: 0; border-radius: 16px;
  position: relative; overflow: hidden;
  color: #fff; background: linear-gradient(135deg, var(--green), #3e7658); box-shadow: 0 12px 24px rgba(21,79,58,.18); transition: .2s ease;
}
.generate-button::after { content: ""; position: absolute; inset: 0; background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,.24) 45%, transparent 70%); transform: translateX(-110%); transition: .45s ease; }
.generate-button:not(:disabled):hover::after { transform: translateX(110%); }
.generate-button:not(:disabled):hover { background: linear-gradient(135deg, var(--deep-green), var(--green)); transform: translateY(-1px); box-shadow: 0 15px 28px rgba(21,79,58,.22); }
.generate-button:disabled { opacity: .42; cursor: not-allowed; }
.generate-button strong {
  position: absolute;
  left: 14px;
  top: 12px;
  z-index: 1;
  color: rgba(255,254,250,.72);
  font-size: 9px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.generate-button span, .generate-button i { display: block; position: relative; z-index: 1; }
.generate-button span { font-size: 15px; font-weight: 700; letter-spacing: 2px; }
.generate-button i { margin-top: 3px; opacity: .68; font-size: 10px; font-style: normal; }
.result-panel { min-height: 566px; padding: 25px; position: sticky; top: 92px; align-self: start; }
.result-title { padding-bottom: 17px; border-bottom: 1px solid var(--line); }
.result-title h2 { display: flex; flex-wrap: wrap; align-items: center; gap: 8px; }
.result-title h2 span {
  padding: 3px 8px;
  border-radius: 999px;
  color: #5f7f42;
  background: rgba(237,246,239,.92);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .2px;
}
.empty-state, .loading-state { min-height: 445px; display: flex; align-items: center; justify-content: center; flex-direction: column; text-align: center; }
.empty-state strong, .loading-state strong { margin-top: 20px; color: var(--deep-green); font-size: 15px; }
.empty-state p, .loading-state p { max-width: 230px; color: var(--muted); font-size: 12px; line-height: 1.7; }
.empty-art { width: 145px; height: 120px; position: relative; }
.empty-art span { position: absolute; display: block; border-radius: 14px; border: 1px solid #c8d8cf; background: #eff5ef; }
.empty-art span:nth-child(1) { inset: 8px 26px 12px; transform: rotate(-10deg); animation: floatTwo 4.4s ease-in-out infinite; }
.empty-art span:nth-child(2) { inset: 8px 26px 12px; transform: rotate(9deg); animation: floatOne 4.2s ease-in-out infinite; }
.empty-art span:nth-child(3) { inset: 8px 26px 12px; background: #e1eee6; }
.loader { width: 45px; height: 45px; border: 3px solid #d7e5dc; border-top-color: var(--green); border-radius: 50%; animation: spin 1s linear infinite; }
.result-list { padding-top: 16px; animation: fadeInUp .25s ease; }
.result-notice { margin: 0 0 10px; padding: 10px 11px; border-radius: 9px; color: #9a6540; background: #fff4e8; font-size: 11px; line-height: 1.6; }
.result-notice.ready { color: #3f6b58; background: #eef7f1; }
.result-card { overflow: hidden; margin-top: 10px; border-radius: 13px; border: 1px solid var(--line); background: #fff; }
.result-card:first-child { margin-top: 0; }
.result-card img { width: 100%; display: block; }
.result-actions { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px; }
.result-actions span { color: var(--muted); font-size: 11px; }
.result-actions a { padding: 7px 12px; border-radius: 7px; color: #fff; background: var(--green); font-size: 12px; text-decoration: none; }
.check-card { margin-top: 15px; padding: 14px; border-radius: 13px; color: #48665a; background: #f3f8f4; border: 1px solid rgba(21,79,58,.1); }
.check-card strong { display: block; color: var(--deep-green); font-size: 13px; }
.check-card ul { margin: 9px 0 0; padding-left: 17px; }
.check-card li { margin: 5px 0; font-size: 11px; line-height: 1.55; }
.check-card p { margin: 10px 0 0; color: var(--muted); font-size: 11px; line-height: 1.6; }
.image-card { padding: 0; overflow: hidden; background: #fffefa; }
.image-card img { width: 100%; display: block; }
.toast { position: fixed; right: 22px; bottom: 22px; max-width: 340px; padding: 13px 16px; border-radius: 9px; color: #fff; background: #293b34; box-shadow: 0 8px 20px rgba(0,0,0,.15); font-size: 13px; line-height: 1.5; }
.hidden { display: none !important; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes breathe { 0%, 100% { transform: scale(.96); opacity: .72; } 50% { transform: scale(1.06); opacity: 1; } }
@keyframes shine { 0%, 58% { transform: translateX(-58%) rotate(8deg); } 74%, 100% { transform: translateX(58%) rotate(8deg); } }
@keyframes pulseSoft { 0%, 100% { transform: scale(1); box-shadow: 0 8px 18px rgba(21,79,58,.18); } 50% { transform: scale(1.04); box-shadow: 0 10px 24px rgba(21,79,58,.24); } }
@keyframes floatOne { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-6px); } }
@keyframes floatTwo { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(5px); } }
@media (max-width: 800px) {
  main { width: min(92vw, 620px); }
  .hero { grid-template-columns: 1fr; gap: 18px; padding-top: 38px; }
  .hero-brand-card { width: 100%; max-width: 520px; justify-self: start; padding: 14px; border-radius: 24px; }
  .process-demo { width: 100%; padding: 10px; }
  .topbar { padding: 0 4vw; }
  .brand-logo { width: 40px; height: 40px; }
  .brand strong { font-size: 14px; letter-spacing: .2px; }
  .brand span, .brand-slogan { display: none; }
  .service-status { font-size: 11px; }
  .auth-user { display: none; }
  .workspace { grid-template-columns: 1fr; }
  .result-panel { min-height: 420px; position: static; }
  .empty-state, .loading-state { min-height: 310px; }
  .shoot-guide-grid { grid-template-columns: 1fr 1fr; }
  .mode-card { grid-template-columns: minmax(0, 1fr) 92px; }
}
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; scroll-behavior: auto !important; transition-duration: .001ms !important; }
}
