:root {
  --bg: #ffffff;
  --panel: #ffffff;
  --panel-2: #f7f7f5;
  --text: #2f2f2c;
  --muted: #73736f;
  --line: #e4e3df;
  --accent: #1f1f1d;
  --accent-dark: #1f1f1d;
  --ok: #3f7a4f;
  --warn: #9b6b1d;
  --bad: #9a3f36;
  --shadow-soft: 0 24px 70px rgba(31, 31, 29, .08);
  --shadow-active: 0 28px 80px rgba(31, 31, 29, .12);
}

* { box-sizing: border-box; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
.topbar {
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 0 clamp(28px, 8vw, 172px);
  background: rgba(255, 255, 255, .96);
  border-bottom: 1px solid #eeeeeb;
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(16px);
  animation: topbar-in .45s ease both;
}
.topbrand {
  display: flex;
  align-items: center;
  gap: 12px;
  border-radius: 8px;
  transition: transform .18s ease, opacity .18s ease;
}
.topbrand:hover {
  opacity: .86;
  transform: translateY(-1px);
}
.topbrand.is-tapped {
  transform: translateY(1px) scale(.98);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(22px, 3vw, 44px);
  flex: 1;
}
.site-nav-link {
  position: relative;
  border: 0;
  background: transparent;
  color: #444440;
  min-height: 34px;
  padding: 0 2px;
  display: inline-grid;
  place-items: center;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease;
}
.site-nav-link::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 3px;
  height: 1px;
  background: #1f1f1d;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .18s ease;
}
.site-nav-link:hover { color: #1f1f1d; transform: translateY(-1px); }
.site-nav-link:hover::after { transform: scaleX(1); }
.site-nav-link.is-tapped { transform: translateY(1px) scale(.98); }
.topnav { display: flex; align-items: center; gap: 10px; font-weight: 400; }
.nav-link {
  min-width: 66px;
  height: 34px;
  padding: 0 16px;
  border-radius: 9px;
  border: 1px solid transparent;
  background: transparent;
  color: inherit;
  display: inline-grid;
  place-items: center;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.nav-link:hover { border-color: #deddda; background: #f8f8f6; transform: translateY(-1px); box-shadow: 0 8px 18px rgba(31, 31, 29, .06); }
.nav-link.is-tapped { transform: translateY(1px) scale(.98); box-shadow: none; }
.nav-login { background: #1f1f1d; color: #fff; }
.nav-register { background: #fff; border-color: #deddda !important; }
.nav-form { margin: 0; }
.top-user {
  color: #4b4b47;
  font-size: 14px;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.top-user-link {
  border-radius: 8px;
  padding: 7px 8px;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.top-user-link:hover {
  background: #f1f1ef;
  color: #1f1f1d;
  transform: translateY(-1px);
}
.top-user-link.is-tapped { transform: translateY(1px) scale(.98); }
.shell { min-height: calc(100vh - 64px); }
.sidebar {
  border-right: 1px solid var(--line);
  background: #f7f7f5;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  display: block;
  background: transparent;
}
.topbrand-name {
  font-family: Georgia, "Times New Roman", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  color: #2f2f2c;
  font-size: 23px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .92;
  white-space: nowrap;
}
.brand-wordmark {
  min-width: 88px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #1f1f1d;
  font-family: Georgia, "Songti SC", "Noto Serif CJK SC", serif;
  font-size: 25px;
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1;
}
.brand-wordmark::before {
  content: "";
  width: 10px;
  height: 26px;
  border-radius: 3px;
  background: #1f1f1d;
  transform: skew(-12deg);
}
.brand-title { font-weight: 800; font-size: 28px; font-family: Georgia, "Times New Roman", serif; letter-spacing: 0; }
.brand-subtitle { color: var(--muted); font-size: 13px; }
.mozo-wordmark {
  font-family: Georgia, "Times New Roman", Times, serif;
  font-weight: 800;
  font-style: normal;
  letter-spacing: 0;
  line-height: .92;
  color: #333331;
}
.mozo-wordmark-inline {
  display: inline-block;
  vertical-align: baseline;
}
.nav { display: grid; gap: 6px; }
.nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: var(--muted);
}
.nav a:hover { background: #eeeeeb; color: var(--text); }
.sidebar-note {
  margin-top: auto;
  color: var(--muted);
  font-size: 13px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px;
  background: rgba(255, 255, 255, .7);
}
.main { padding: 0 32px 32px; max-width: 1280px; width: 100%; margin: 0 auto; }
.commercial-hero {
  min-height: calc(100vh - 64px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 0 54px;
}
.commercial-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  font-size: 40px;
  line-height: 1.14;
  letter-spacing: 0;
  margin: 0 0 30px;
  animation: hero-title-in .52s ease both;
}
.agent-composer {
  width: clamp(520px, 42vw, 760px);
  min-height: 126px;
  background: rgba(255, 255, 255, .96);
  border: 1px solid #deddda;
  border-radius: 18px;
  box-shadow: var(--shadow-soft);
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  transform: translateY(0);
  transition: border-color .22s ease, box-shadow .22s ease, transform .22s ease, background-color .22s ease;
  animation: composer-in .56s ease .08s both;
}
.agent-composer:hover {
  background: rgba(255, 255, 255, .96);
  border-color: #d7d6d2;
  transform: translateY(-2px);
}
.agent-composer.is-focused {
  border-color: #cfcfcb;
  box-shadow: var(--shadow-active);
}
.agent-composer.has-content {
  background: #fff;
}
.agent-input {
  border: 0;
  background: transparent;
  min-height: 56px;
  max-height: 180px;
  padding: 0;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
  color: var(--text);
  outline: none;
  resize: none;
  overflow: hidden;
  transition: color .2s ease, height .16s ease;
}
.agent-input::placeholder { color: #aaa9a5; font-weight: 400; }
.agent-composer.is-focused .agent-input::placeholder { color: #999894; }
.agent-input:hover,
.agent-input:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}
.composer-bar {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.send-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: #eeeeec;
  color: #aaa9a5;
  font-size: 22px;
  display: grid;
  place-items: center;
  cursor: pointer;
  font-weight: 400;
  line-height: 1;
  transition: background-color .2s ease, color .2s ease, transform .18s ease, box-shadow .18s ease;
}
.agent-composer.has-content .send-button {
  background: #1f1f1d;
  color: #fff;
  box-shadow: 0 12px 30px rgba(31, 31, 29, .18);
}
.agent-composer.has-content .send-button:hover {
  transform: translateY(-1px);
}
.send-button.is-pulsing {
  animation: send-pulse .34s ease both;
}
.prompt-tags {
  display: flex;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 24px;
  max-width: 760px;
  animation: composer-in .56s ease .14s both;
}
.prompt-tag {
  min-height: 36px;
  border: 1px solid #e8e7e3;
  border-radius: 999px;
  background: #fff;
  color: #444440;
  padding: 0 17px;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.prompt-tag:hover {
  border-color: #d7d6d2;
  background: #fbfbfa;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 31, 29, .06);
}
.prompt-tag.is-tapped {
  transform: translateY(1px) scale(.98);
  box-shadow: none;
}
.commercial-section { margin-top: 8px; }
.auth-page {
  min-height: calc(100vh - 64px);
  display: grid;
  place-items: center;
  padding: 56px 24px;
}
.auth-panel {
  width: min(100%, 390px);
  text-align: center;
}
.auth-kicker {
  margin: 0 0 10px;
  color: #73736f;
  font-size: 14px;
}
.auth-panel h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 34px;
  font-weight: 500;
  line-height: 1.16;
  margin: 0;
}
.auth-copy {
  margin: 12px 0 28px;
  color: #73736f;
  font-size: 15px;
}
.auth-form {
  display: grid;
  gap: 14px;
  text-align: left;
}
.auth-form input {
  height: 42px;
  border-radius: 10px;
  background: #fff;
}
.auth-method-tabs {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  padding: 4px;
  border: 1px solid #e4e3df;
  border-radius: 12px;
  background: #f7f7f5;
}
.auth-method-tab {
  height: 34px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #73736f;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  transition: background-color .18s ease, border-color .18s ease, color .18s ease, transform .18s ease;
}
.auth-method-tab:hover {
  color: #1f1f1d;
}
.auth-method-tab.is-active {
  border-color: #deddda;
  background: #fff;
  color: #1f1f1d;
  box-shadow: 0 6px 16px rgba(31, 31, 29, .05);
}
.auth-code-row {
  display: grid;
  grid-template-columns: 1fr 112px;
  gap: 8px;
}
.auth-code-button {
  height: 42px;
  border: 1px solid #deddda;
  border-radius: 10px;
  background: #fff;
  color: #1f1f1d;
  font: inherit;
  font-size: 14px;
  cursor: pointer;
  white-space: nowrap;
  transition: background-color .18s ease, border-color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.auth-code-button:hover:not(:disabled) {
  border-color: #d7d6d2;
  background: #f8f8f6;
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(31, 31, 29, .06);
}
.auth-code-button:disabled {
  cursor: not-allowed;
  color: #9b9a96;
  background: #f7f7f5;
}
.auth-code-status {
  min-height: 18px;
  color: var(--ok);
  font-size: 12px;
}
.auth-code-status.is-error {
  color: var(--bad);
}
.auth-error {
  border: 1px solid #f0d8d4;
  border-radius: 10px;
  background: #fff7f6;
  color: var(--bad);
  padding: 10px 12px;
  font-size: 13px;
}
.auth-submit {
  width: 100%;
  height: 42px;
  border: 1px solid #1f1f1d;
  border-radius: 10px;
  background: #1f1f1d;
  color: #fff;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  cursor: pointer;
  margin-top: 2px;
  transition: transform .18s ease, box-shadow .18s ease, background-color .18s ease;
}
.auth-submit:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 28px rgba(31, 31, 29, .12);
}
.auth-submit.is-tapped {
  transform: translateY(1px) scale(.99);
  box-shadow: none;
}
.auth-switch {
  margin: 20px 0 0;
  color: #73736f;
  font-size: 14px;
}
.auth-switch a {
  color: #1f1f1d;
  margin-left: 6px;
}
.auth-legal {
  margin: 26px 0 0;
  color: #9b9a96;
  font-size: 12px;
}
.copy-function-page {
  min-height: calc(100vh - 64px);
  padding: 68px 0 78px;
}
.copy-function-hero {
  display: grid;
  grid-template-columns: minmax(0, .78fr) minmax(500px, 1.22fr);
  gap: clamp(34px, 5.6vw, 78px);
  align-items: center;
}
.copy-function-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(42px, 5.3vw, 70px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
  max-width: 820px;
}
.copy-function-hero-copy > p:not(.auth-kicker) {
  color: var(--muted);
  font-size: 17px;
  max-width: 620px;
  margin: 20px 0 0;
}
.copy-function-hero-visual {
  margin: 0;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.copy-function-hero-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.industry-tile {
  position: relative;
  min-height: 244px;
  aspect-ratio: 4 / 3;
  margin: 0;
  overflow: hidden;
  border: 1px solid #e4e3df;
  border-radius: 8px;
  background: #f4f3ef;
  box-shadow: 0 16px 42px rgba(31, 31, 29, .06);
}
.industry-tile::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 46%;
  background: linear-gradient(180deg, rgba(31, 31, 29, 0), rgba(31, 31, 29, .62));
  pointer-events: none;
}
.industry-tile figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 13px;
  z-index: 1;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 12px;
  color: #fff;
  text-shadow: 0 1px 12px rgba(0, 0, 0, .28);
}
.industry-tile span {
  font-size: 13px;
  color: rgba(255, 255, 255, .82);
}
.industry-tile strong {
  color: #fff;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.18;
  text-align: right;
}
.copy-function-overview {
  max-width: 920px;
  padding: 78px 0 34px;
}
.copy-function-overview h2 {
  margin: 0;
  color: #2f2f2c;
  font-size: clamp(30px, 4.4vw, 54px);
  line-height: 1.08;
  font-weight: 500;
}
.copy-function-list {
  border-top: 1px solid #e8e7e3;
}
.copy-function-row {
  min-height: 118px;
  display: grid;
  grid-template-columns: minmax(180px, .34fr) minmax(0, .66fr);
  gap: clamp(20px, 5vw, 72px);
  align-items: center;
  border-bottom: 1px solid #e8e7e3;
  padding: 24px 0;
}
.copy-function-row h2 {
  margin: 0;
  color: #2f2f2c;
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1.12;
  font-weight: 500;
}
.copy-function-row p {
  margin: 0;
  color: #62625d;
  font-size: 17px;
  line-height: 1.65;
}
.copy-function-scenes {
  display: grid;
  gap: 1px;
  margin-top: 72px;
  border-top: 1px solid #e8e7e3;
}
.copy-function-scene {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #e8e7e3;
}
.copy-function-scene-reverse {
  grid-template-columns: minmax(300px, .92fr) minmax(0, 1.08fr);
}
.copy-function-scene-reverse figure {
  order: 2;
}
.copy-function-scene-reverse div {
  order: 1;
}
.copy-function-scene figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f3ef;
}
.copy-function-scene img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.copy-function-scene p {
  margin: 0 0 14px;
  color: #8a8985;
  font-size: 14px;
}
.copy-function-scene h2 {
  margin: 0;
  color: #2f2f2c;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 500;
}
.store-solution-page {
  min-height: calc(100vh - 64px);
  padding: 68px 0 78px;
}
.store-solution-hero {
  text-align: center;
  display: grid;
  justify-items: center;
}
.store-solution-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 500;
  line-height: 1.04;
  margin: 0;
  max-width: 980px;
}
.store-solution-hero > p:not(.auth-kicker) {
  color: var(--muted);
  font-size: 17px;
  max-width: 720px;
  margin: 20px 0 0;
}
.store-solution-visual {
  width: 100%;
  margin: 48px 0 0;
  aspect-ratio: 16 / 8.2;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f3ef;
}
.store-solution-visual img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.store-solution-types {
  margin: 32px auto 0;
  padding: 18px 0;
  border-top: 1px solid #e8e7e3;
  border-bottom: 1px solid #e8e7e3;
  display: flex;
  justify-content: center;
  gap: clamp(22px, 4vw, 58px);
  flex-wrap: wrap;
  color: #555550;
  font-size: 15px;
}
.store-solution-intro {
  padding: 92px 0 40px;
  max-width: 930px;
}
.store-solution-intro h2,
.store-solution-assets h2 {
  margin: 0;
  color: #2f2f2c;
  font-size: clamp(30px, 4.6vw, 56px);
  line-height: 1.08;
  font-weight: 500;
}
.store-solution-stories {
  border-top: 1px solid #e8e7e3;
}
.store-story {
  display: grid;
  grid-template-columns: minmax(280px, .8fr) minmax(0, 1.2fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
  padding: 56px 0;
  border-bottom: 1px solid #e8e7e3;
}
.store-story-reverse {
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, .8fr);
}
.store-story-reverse .store-story-copy {
  order: 2;
}
.store-story-reverse figure {
  order: 1;
}
.store-story-copy p {
  margin: 0 0 14px;
  color: #8a8985;
  font-size: 14px;
}
.store-story-copy h2 {
  margin: 0;
  color: #2f2f2c;
  font-size: clamp(28px, 4vw, 48px);
  line-height: 1.12;
  font-weight: 500;
}
.store-story figure {
  margin: 0;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  border-radius: 8px;
  background: #f4f3ef;
}
.store-story img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.store-solution-assets {
  padding: 82px 0 0;
}
.store-solution-assets h2 {
  max-width: 880px;
}
.store-asset-line {
  margin-top: 34px;
  border-top: 1px solid #e8e7e3;
  border-bottom: 1px solid #e8e7e3;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}
.store-asset-line span {
  min-height: 86px;
  display: grid;
  place-items: center;
  color: #3f3f3b;
  font-size: 16px;
  border-right: 1px solid #e8e7e3;
}
.store-asset-line span:last-child {
  border-right: 0;
}
.results-page {
  min-height: calc(100vh - 64px);
  padding: 64px 0 72px;
}
.results-hero {
  display: grid;
  grid-template-columns: minmax(0, .86fr) minmax(420px, 1.14fr);
  gap: 46px;
  align-items: center;
  margin-bottom: 44px;
}
.results-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 50px;
  font-weight: 500;
  line-height: 1.08;
  margin: 0;
  max-width: 760px;
}
.results-hero-copy > p:not(.auth-kicker) {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin: 18px 0 0;
}
.results-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  max-width: 390px;
}
.results-actions .plan-action { flex: 1; }
.results-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #e1dfda;
  background: #e1dfda;
  margin-top: 34px;
  max-width: 660px;
}
.results-points div {
  background: #fff;
  padding: 16px;
  min-height: 106px;
}
.results-points strong {
  display: block;
  color: #2f2f2c;
  font-size: 17px;
  font-weight: 500;
  margin-bottom: 7px;
}
.results-points span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.results-hero-visual {
  position: relative;
  margin: 0;
  min-height: 420px;
  border: 1px solid #e4e3df;
  border-radius: 8px;
  overflow: hidden;
  background: #f4f3ef;
  box-shadow: 0 24px 70px rgba(31, 31, 29, .08);
}
.results-hero-visual img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  display: block;
  object-fit: cover;
}
.results-hero-visual figcaption {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  border: 1px solid rgba(255, 255, 255, .72);
  border-radius: 8px;
  background: rgba(255, 255, 255, .9);
  backdrop-filter: blur(14px);
  padding: 13px 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}
.results-hero-visual strong {
  color: #242421;
  font-size: 15px;
  font-weight: 500;
}
.results-hero-visual span {
  color: #66635e;
  font-size: 13px;
  text-align: right;
}
.result-band {
  border-top: 1px solid #e8e7e3;
  border-bottom: 1px solid #e8e7e3;
  padding: 36px 0;
  margin-bottom: 24px;
}
.results-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 22px;
}
.results-section-head h2 {
  max-width: 760px;
  margin: 0;
  font-size: 30px;
  line-height: 1.18;
  font-weight: 500;
}
.deliverables-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #e4e3df;
  background: #e4e3df;
}
.deliverables-row article {
  background: #fff;
  min-height: 220px;
  padding: 20px;
}
.deliverables-row span {
  display: block;
  color: #8a8985;
  font-size: 13px;
  margin-bottom: 34px;
}
.deliverables-row h3 {
  margin: 0 0 10px;
  color: #2f2f2c;
  font-size: 20px;
  font-weight: 500;
}
.deliverables-row p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}
.result-showcase-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}
.result-card {
  border: 1px solid #e4e3df;
  border-radius: 8px;
  background: #fff;
  min-height: 360px;
  overflow: hidden;
  box-shadow: 0 16px 42px rgba(31, 31, 29, .045);
}
.result-card-wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, .82fr);
  min-height: 430px;
}
.result-card-media {
  min-height: 290px;
  background: #f4f3ef;
}
.result-card-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  display: block;
  object-fit: cover;
}
.result-card-body {
  padding: 28px;
}
.result-card h2 {
  margin: 10px 0 12px;
  color: #2f2f2c;
  font-size: 28px;
  line-height: 1.16;
  font-weight: 500;
}
.result-card p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}
.result-label {
  display: inline-flex;
  align-items: center;
  min-height: 26px;
  border: 1px solid #deddda;
  border-radius: 999px;
  color: #66635e;
  background: #f7f7f5;
  padding: 0 10px;
  font-size: 12px;
}
.result-metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin-top: 30px;
  border: 1px solid #e8e7e3;
  background: #e8e7e3;
}
.result-metrics div {
  background: #fbfbfa;
  padding: 14px;
}
.result-metrics strong {
  display: block;
  color: #2f2f2c;
  font-size: 22px;
  font-weight: 500;
}
.result-metrics span {
  color: var(--muted);
  font-size: 12px;
}
.result-script {
  border: 1px solid #e8e7e3;
  border-radius: 8px;
  background: #fbfbfa;
  margin-top: 18px !important;
  padding: 16px;
  color: #444440 !important;
  font-size: 16px !important;
  line-height: 1.75;
}
.result-list {
  list-style: none;
  display: grid;
  gap: 10px;
  margin: 24px 0 0;
  padding: 0;
  color: #444440;
  font-size: 14px;
}
.result-list li {
  border-top: 1px solid #eeeeeb;
  padding-top: 10px;
}
.result-card-dark {
  background: #25231f;
  border-color: #25231f;
}
.result-card-dark h2,
.result-card-dark .platform-output strong {
  color: #fff;
}
.result-card-dark .result-label {
  border-color: rgba(255, 255, 255, .18);
  color: #e6e2dc;
  background: rgba(255, 255, 255, .08);
}
.result-card-dark p,
.result-card-dark .platform-output span {
  color: #d6d0c6;
}
.platform-output {
  display: grid;
  gap: 18px;
  margin-top: 24px;
}
.platform-output p {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, .14);
  padding-top: 14px;
}
.platform-output strong {
  color: #2f2f2c;
  font-size: 16px;
  font-weight: 500;
}
.platform-output span {
  color: var(--muted);
  font-size: 14px;
}
.result-card-handoff {
  grid-template-columns: minmax(340px, .82fr) minmax(0, 1.18fr);
  align-items: stretch;
}
.handoff-board {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: #e4e3df;
  border-left: 1px solid #e4e3df;
}
.handoff-board div {
  background: #fbfbfa;
  padding: 22px;
  min-height: 136px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.handoff-board span {
  color: #8a8985;
  font-size: 12px;
}
.handoff-board strong {
  color: #2f2f2c;
  font-size: 18px;
  font-weight: 500;
}
.features-page {
  min-height: calc(100vh - 64px);
  padding: 78px 0 72px;
}
.features-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 480px);
  gap: 54px;
  align-items: center;
  margin-bottom: 54px;
}
.features-hero h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 48px;
  font-weight: 500;
  line-height: 1.1;
  margin: 0;
  max-width: 720px;
}
.features-hero p:not(.auth-kicker) {
  color: var(--muted);
  font-size: 16px;
  max-width: 620px;
  margin: 18px 0 0;
}
.features-actions {
  display: flex;
  gap: 12px;
  margin-top: 28px;
  max-width: 320px;
}
.features-actions .plan-action { flex: 1; }
.feature-preview {
  border: 1px solid #e4e3df;
  border-radius: 20px;
  background: #fff;
  padding: 18px;
  box-shadow: 0 24px 70px rgba(31, 31, 29, .08);
}
.preview-bar {
  display: flex;
  gap: 6px;
  margin-bottom: 16px;
}
.preview-bar span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d7d6d2;
}
.preview-input {
  border: 1px solid #eeeeeb;
  border-radius: 14px;
  color: #444440;
  padding: 14px;
  font-size: 14px;
  min-height: 78px;
  background: #fbfbfa;
}
.preview-output {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  margin-top: 14px;
}
.preview-output p {
  grid-column: 1 / -1;
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 2px;
}
.preview-output div {
  border: 1px solid #eeeeeb;
  border-radius: 999px;
  padding: 8px 10px;
  text-align: center;
  font-size: 13px;
  color: #444440;
}
.feature-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid #e8e7e3;
  border-radius: 18px;
  overflow: hidden;
  background: #e8e7e3;
  margin-bottom: 18px;
}
.feature-strip article {
  background: #fff;
  padding: 24px;
}
.feature-strip h2,
.feature-card h2 {
  font-size: 20px;
  font-weight: 500;
  margin: 0 0 10px;
}
.feature-strip p,
.feature-card span {
  color: var(--muted);
  font-size: 14px;
}
.feature-strip p { margin: 0; }
.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.feature-card {
  border: 1px solid #e8e7e3;
  border-radius: 18px;
  background: #fff;
  padding: 22px;
  min-height: 190px;
  box-shadow: 0 16px 45px rgba(31, 31, 29, .045);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.feature-card:hover {
  border-color: #d7d6d2;
  transform: translateY(-3px);
  box-shadow: 0 22px 58px rgba(31, 31, 29, .08);
}
.feature-card p {
  color: #9b9a96;
  font-size: 13px;
  margin: 0 0 22px;
}
.pricing-page {
  min-height: calc(100vh - 64px);
  padding: 82px 0 72px;
}
.pricing-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 42px;
}
.pricing-head h1 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 44px;
  font-weight: 500;
  line-height: 1.12;
  margin: 0;
}
.pricing-head p:last-child {
  margin: 14px auto 0;
  color: var(--muted);
  font-size: 15px;
}
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.pricing-card {
  position: relative;
  min-height: 430px;
  border: 1px solid #e8e7e3;
  border-radius: 18px;
  background: #fff;
  padding: 24px;
  display: flex;
  flex-direction: column;
  box-shadow: 0 18px 55px rgba(31, 31, 29, .05);
  transition: transform .2s ease, border-color .2s ease, box-shadow .2s ease;
}
.pricing-card:hover {
  border-color: #d7d6d2;
  transform: translateY(-3px);
  box-shadow: 0 24px 70px rgba(31, 31, 29, .09);
}
.pricing-card.is-featured {
  border-color: #1f1f1d;
  box-shadow: 0 24px 70px rgba(31, 31, 29, .1);
}
.pricing-card.is-featured:hover {
  box-shadow: 0 30px 78px rgba(31, 31, 29, .14);
}
.plan-badge {
  position: absolute;
  top: 18px;
  right: 18px;
  height: 26px;
  border-radius: 999px;
  background: #1f1f1d;
  color: #fff;
  display: inline-grid;
  place-items: center;
  padding: 0 11px;
  font-size: 12px;
}
.plan-label {
  color: var(--muted);
  font-size: 13px;
  margin: 0 0 8px;
}
.pricing-card h2 {
  font-size: 22px;
  font-weight: 500;
  margin: 0 0 10px;
}
.plan-copy {
  color: var(--muted);
  font-size: 14px;
  margin: 0;
}
.plan-price {
  margin: 28px 0 20px;
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.plan-price span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 46px;
  line-height: 1;
}
.plan-price small {
  color: var(--muted);
  font-size: 14px;
}
.plan-features {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 12px;
  color: #444440;
  font-size: 14px;
}
.plan-features li {
  position: relative;
  padding-left: 18px;
}
.plan-features li::before {
  content: "";
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #1f1f1d;
  position: absolute;
  left: 0;
  top: .65em;
}
.plan-action {
  height: 40px;
  border: 1px solid #deddda;
  border-radius: 10px;
  display: grid;
  place-items: center;
  margin-top: auto;
  font-size: 14px;
  background: #fff;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.plan-action:hover {
  border-color: #cfcfcb;
  background: #f8f8f6;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 31, 29, .07);
}
.plan-action.is-tapped {
  transform: translateY(1px) scale(.99);
  box-shadow: none;
}
.plan-action.primary {
  background: #1f1f1d;
  border-color: #1f1f1d;
  color: #fff;
}
.plan-action.primary:hover {
  background: #111110;
  border-color: #111110;
}
.page-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  margin-bottom: 24px;
}
.eyebrow { color: var(--accent); font-size: 13px; font-weight: 700; margin: 0 0 4px; }
h1 { margin: 0; font-size: 32px; letter-spacing: 0; }
h2 { margin: 0 0 16px; font-size: 18px; }
.lead { margin: 8px 0 0; color: var(--muted); max-width: 720px; }
.grid { display: grid; gap: 18px; }
.grid.two { grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); }
.panel {
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
}
.button {
  border: 1px solid var(--line);
  background: var(--panel);
  color: var(--text);
  border-radius: 8px;
  padding: 10px 14px;
  font-weight: 400;
  cursor: pointer;
  transition: transform .18s ease, border-color .18s ease, background-color .18s ease, box-shadow .18s ease;
}
.button:hover {
  border-color: #d7d6d2;
  background: #f8f8f6;
  transform: translateY(-1px);
  box-shadow: 0 10px 24px rgba(31, 31, 29, .06);
}
.button.is-tapped {
  transform: translateY(1px) scale(.99);
  box-shadow: none;
}
.button.primary { background: var(--accent); color: #fff; border-color: var(--accent-dark); }
.button.primary:hover { background: #111110; border-color: #111110; }
.timeline { display: grid; gap: 12px; }
.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  align-items: flex-start;
  padding: 13px 14px 13px 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
}
.timeline-item::before {
  content: "";
  position: absolute;
  left: 0;
  top: 12px;
  bottom: 12px;
  width: 3px;
  border-radius: 999px;
  background: #dfddd8;
}
.timeline-item p { margin: 4px 0 0; color: var(--muted); font-size: 13px; }
.step-index {
  display: block;
  color: #777570;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}
.status-passed::before { background: #6f946f; }
.status-failed::before { background: #c85048; }
.status-needs_ai::before { background: #cf784f; }
.status-skipped::before { background: #b9b7b1; }
.status-passed .step-index { color: var(--ok); }
.status-failed .step-index { color: var(--bad); }
.status-needs_ai .step-index { color: var(--warn); }
.status-skipped .step-index { color: #777570; }
.run-list { display: grid; gap: 8px; }
.run-row {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 12px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
}
.muted { color: var(--muted); }
.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}
label { display: grid; gap: 6px; color: var(--muted); font-size: 13px; }
label span { font-weight: 700; color: var(--text); }
label.wide { grid-column: 1 / -1; }
input, select, textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: #fff;
  color: var(--text);
  border-radius: 8px;
  padding: 10px 12px;
  font: inherit;
  transition: border-color .18s ease, box-shadow .18s ease, background-color .18s ease;
}
input:hover, select:hover, textarea:hover { border-color: #d7d6d2; }
input:focus, select:focus, textarea:focus {
  border-color: #cfcfcb;
  box-shadow: 0 0 0 4px rgba(31, 31, 29, .045);
  outline: none;
}
textarea { resize: vertical; }
.form-actions { margin-top: 18px; }
.error { color: var(--bad); }
.meta-list {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 10px 12px;
  margin: 0;
}
.meta-list dt { color: var(--muted); }
.meta-list dd { margin: 0; }
.artifact {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel-2);
  margin-bottom: 10px;
}
.artifact summary {
  cursor: pointer;
  padding: 12px 14px;
  font-weight: 700;
  display: flex;
  justify-content: space-between;
}
pre {
  white-space: pre-wrap;
  overflow-wrap: anywhere;
  margin: 0;
  padding: 14px;
  border-top: 1px solid var(--line);
  color: #333330;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 13px;
}
.file-list { margin: 0; padding-left: 18px; color: var(--muted); }
.step-result-form {
  display: grid;
  gap: 12px;
  padding: 14px;
  border-top: 1px solid var(--line);
}
.checkbox-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.checkbox-row input { width: auto; }
.tree { list-style: none; margin: 8px 0 0 16px; padding-left: 14px; border-left: 1px solid var(--line); }
.tree:first-child { margin-left: 0; }
.tree-node {
  padding: 8px 10px;
  border: 1px solid var(--line);
  background: var(--panel-2);
  border-radius: 8px;
  display: grid;
  gap: 2px;
}
.tree-node span { color: var(--muted); font-size: 12px; }
.chat-body {
  background: #fff;
  overflow: hidden;
}
.chat-layout {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px minmax(0, 1fr);
}
.chat-sidebar {
  height: 100vh;
  background: #f2f2f1;
  border-right: 1px solid #e3e2df;
  padding: 18px 8px 14px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.chat-sidebar-head {
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 8px 0 12px;
}
.chat-logo {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.chat-logo-image {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  object-fit: contain;
  background: transparent;
  flex: 0 0 auto;
}
.chat-logo .mozo-wordmark {
  color: #2f2f2c;
  font-size: 18px;
}
.chat-logo-name {
  font-family: Georgia, "Times New Roman", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  color: #2f2f2c;
  font-size: 18px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .92;
}
.chat-icon-link {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: grid;
  place-items: center;
  color: #444440;
  font-size: 22px;
  transition: background-color .18s ease, transform .18s ease;
}
.chat-icon-link:hover {
  background: #e7e7e5;
  transform: translateY(-1px);
}
.chat-side-nav {
  display: grid;
  gap: 5px;
  margin: 18px 0 28px;
}
.chat-side-form {
  margin: 0;
}
.chat-side-link {
  width: 100%;
  border: 0;
  height: 42px;
  border-radius: 12px;
  padding: 0 14px;
  display: flex;
  align-items: center;
  gap: 12px;
  background: transparent;
  color: #3d3d39;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: background-color .18s ease, transform .18s ease, color .18s ease;
}
.chat-side-link span {
  width: 20px;
  color: #333330;
  text-align: center;
}
.chat-side-link:hover,
.chat-side-link.active {
  background: #e6e6e4;
  color: #1f1f1d;
}
.chat-side-link.is-tapped,
.chat-session-item.is-tapped,
.chat-action.is-tapped,
.chat-upgrade.is-tapped,
.chat-followup.is-tapped,
.chat-tool.is-tapped {
  transform: translateY(1px) scale(.99);
}
.chat-side-section {
  flex: 1 1 auto;
  min-height: 0;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.chat-side-title {
  color: #8a8985;
  font-size: 13px;
  padding: 0 14px 8px;
}
.chat-session-list {
  min-width: 0;
  display: grid;
  gap: 4px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 12px;
}
.chat-session-row {
  position: relative;
  min-width: 0;
  border-radius: 12px;
  transition: background-color .18s ease;
}
.chat-session-row:hover,
.chat-session-row:focus-within,
.chat-session-row.active {
  background: #e6e6e4;
}
.chat-session-item {
  width: 100%;
  min-width: 0;
  height: 38px;
  border-radius: 12px;
  padding: 0 44px 0 14px;
  display: flex;
  align-items: center;
  gap: 10px;
  overflow: hidden;
  color: #3d3d39;
  font-size: 14px;
  transition: background-color .18s ease, transform .18s ease;
}
.chat-session-item:hover,
.chat-session-item.active {
  color: #1f1f1d;
}
.chat-session-title {
  min-width: 0;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.chat-session-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #9b9a96;
  flex: 0 0 auto;
}
.chat-session-item.active .chat-session-dot {
  background: #4f8df7;
}
.chat-session-delete-form {
  position: absolute;
  right: 6px;
  top: 50%;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transform: translateY(-50%);
  transition: opacity .14s ease;
}
.chat-session-row:hover .chat-session-delete-form,
.chat-session-row:focus-within .chat-session-delete-form {
  opacity: 1;
  pointer-events: auto;
}
.chat-session-delete {
  width: 26px;
  height: 26px;
  border: 0;
  border-radius: 8px;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: #777570;
  font: inherit;
  font-size: 18px;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.chat-session-delete:hover,
.chat-session-delete:focus-visible {
  background: #d9d9d6;
  color: #9a3f36;
  outline: none;
}
.chat-session-delete:active {
  transform: scale(.94);
}
.chat-main {
  min-width: 0;
  height: 100vh;
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  overflow: hidden;
}
.chat-header {
  height: 68px;
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 30px;
  background: rgba(255, 255, 255, .92);
  border-bottom: 1px solid transparent;
  z-index: 2;
}
.chat-model-name {
  height: 38px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #2f2f2c;
  font-size: 20px;
  font-weight: 500;
}
.chat-model-name .mozo-wordmark {
  font-size: 25px;
}
.chat-model-badge {
  border: 1px solid #deddda;
  border-radius: 8px;
  color: #8a8985;
  padding: 1px 7px 2px;
  font-size: 13px;
  font-weight: 400;
}
.chat-header-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}
.chat-upgrade,
.chat-action,
.chat-user-link {
  min-height: 34px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #4b4b47;
  padding: 0 12px;
  display: inline-grid;
  place-items: center;
  font: inherit;
  font-size: 14px;
  font-weight: 400;
  cursor: pointer;
  max-width: 180px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: background-color .18s ease, color .18s ease, transform .18s ease;
}
.chat-upgrade {
  color: #2f7df5;
  background: #eef5ff;
}
.chat-upgrade:hover,
.chat-action:hover,
.chat-user-link:hover {
  background: #f1f1ef;
  transform: translateY(-1px);
}
.chat-thread {
  flex: 1 1 auto;
  overflow-y: auto;
  overflow-anchor: none;
  overscroll-behavior: contain;
  padding: 86px clamp(16px, 3vw, 48px) 220px;
}
.chat-empty-title {
  display: none;
  margin: 0 0 52px;
  color: #242421;
  font-size: 42px;
  line-height: 1.16;
  font-weight: 500;
  letter-spacing: 0;
  text-align: center;
}
.chat-empty-title .mozo-wordmark {
  color: inherit;
  font-size: 1.06em;
}
.chat-main.is-empty-session .chat-thread {
  flex: 0 0 auto;
  height: 0;
  min-height: 0;
  padding: 0;
  overflow: hidden;
  opacity: 0;
}
.chat-main.is-empty-session .chat-composer-area {
  position: static;
  left: auto;
  right: auto;
  bottom: auto;
  flex: 1 1 auto;
  width: 100%;
  padding: 0 clamp(24px, 5vw, 78px);
  background: transparent;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: translateY(-5vh);
}
.chat-main.is-empty-session .chat-empty-title {
  display: block;
}
.chat-main.is-empty-session .chat-composer {
  width: min(100%, 760px);
  min-height: 118px;
  border-radius: 18px;
  padding: 14px 16px 12px;
  box-shadow: 0 18px 52px rgba(31, 31, 29, .07);
}
.chat-main.is-empty-session .chat-input {
  min-height: 54px;
  font-size: 16px;
}
.chat-message {
  width: min(100%, 1320px);
  margin: 0 auto 42px;
}
.chat-flow-card {
  width: min(100%, 1320px);
  margin: 0 auto 34px;
  border: 1px solid #e4e3df;
  border-radius: 16px;
  background: #fff;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: minmax(150px, 220px) minmax(0, 1fr) auto;
  align-items: center;
  gap: 18px;
  box-shadow: 0 14px 38px rgba(31, 31, 29, .05);
}
.chat-flow-card > div:first-child {
  display: grid;
  gap: 3px;
  text-align: left;
}
.chat-flow-card > div:first-child span,
.chat-flow-card > div:first-child small {
  color: #8a8985;
  font-size: 13px;
}
.chat-flow-card strong {
  color: #2f2f2c;
  font-size: 16px;
  font-weight: 500;
}
.chat-flow-steps {
  display: grid;
  grid-template-columns: repeat(7, minmax(76px, 1fr));
  align-items: stretch;
  gap: 10px;
  min-width: 0;
}
.flow-step-pill {
  position: relative;
  min-height: 48px;
  color: #6f6d68;
  padding: 3px 0 9px;
  display: grid;
  align-content: start;
  gap: 7px;
  font-size: 12px;
  line-height: 1.25;
  white-space: normal;
}
.flow-step-pill::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 2px;
  border-radius: 999px;
  background: #dfddd8;
  transition: background-color .18s ease, transform .18s ease;
}
.flow-step-number {
  color: #8b8983;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 17px;
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}
.flow-step-name {
  color: #4c4a45;
  font-size: 12px;
  line-height: 1.25;
  font-weight: 500;
}
.flow-step-pill.status-passed {
  color: #2f7b3d;
}
.flow-step-pill.status-passed::after {
  background: #6f946f;
}
.flow-step-pill.status-passed .flow-step-number,
.flow-step-pill.status-passed .flow-step-name {
  color: #2f7b3d;
}
.flow-step-pill.status-working,
.flow-step-pill.status-running,
.flow-step-pill.status-retrying,
.flow-step-pill.status-needs_ai {
  color: #9b5c32;
}
.flow-step-pill.status-working::after,
.flow-step-pill.status-running::after,
.flow-step-pill.status-retrying::after,
.flow-step-pill.status-needs_ai::after {
  background: #cf784f;
}
.flow-step-pill.status-working .flow-step-number,
.flow-step-pill.status-running .flow-step-number,
.flow-step-pill.status-retrying .flow-step-number,
.flow-step-pill.status-needs_ai .flow-step-number,
.flow-step-pill.status-working .flow-step-name,
.flow-step-pill.status-running .flow-step-name,
.flow-step-pill.status-retrying .flow-step-name,
.flow-step-pill.status-needs_ai .flow-step-name {
  color: #9b5c32;
}
.flow-step-pill.status-failed {
  color: #a7443d;
}
.flow-step-pill.status-failed::after {
  background: #c85048;
}
.flow-step-pill.status-failed .flow-step-number,
.flow-step-pill.status-failed .flow-step-name {
  color: #a7443d;
}
.flow-step-pill.status-skipped {
  color: #777570;
}
.flow-step-pill.status-skipped::after {
  background: #b9b7b1;
}
.flow-step-pill.status-skipped .flow-step-number,
.flow-step-pill.status-skipped .flow-step-name {
  color: #777570;
}
.chat-message-user {
  display: flex;
  justify-content: flex-end;
}
.chat-bubble {
  max-width: min(520px, 72%);
  border: 1px solid #e8e7e3;
  border-radius: 15px;
  background: #fff;
  color: #2f2f2c;
  padding: 14px 18px;
  font-size: 16px;
  line-height: 1.55;
  white-space: pre-wrap;
  box-shadow: 0 10px 26px rgba(31, 31, 29, .04);
}
.assistant-mark {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 12px;
}
.assistant-mark strong {
  font-size: 24px;
  line-height: 1;
}
.assistant-brand-name {
  font-family: Georgia, "Times New Roman", "Songti SC", "STSong", "Noto Serif CJK SC", serif;
  color: #333331;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0;
  line-height: .92;
}
.assistant-copy {
  color: #333330;
  font-size: 16px;
  line-height: 1.7;
  width: min(100%, 1320px);
  max-width: 100%;
  white-space: normal;
}
.assistant-rendered {
  display: grid;
  gap: 12px;
}
.workflow-step-stack {
  display: grid;
  gap: 18px;
}
.workflow-intro-card,
.workflow-step-card {
  width: 100%;
  max-width: 100%;
  border: 1px solid #e4e3df;
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 16px 42px rgba(31, 31, 29, .055);
}
.workflow-intro-card {
  padding: 18px 20px;
}
.workflow-step-card {
  position: relative;
  overflow: hidden;
  border-color: #e4e3df;
}
.workflow-step-card.is-auto-expanded {
  border-color: #d2c8bd;
  box-shadow: 0 18px 46px rgba(31, 31, 29, .075);
}
.workflow-step-card.is-auto-expanded::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 3px;
  background: linear-gradient(180deg, rgba(111, 90, 74, .24), rgba(111, 90, 74, .86), rgba(111, 90, 74, .24));
  transform-origin: top;
  animation: active-step-line 1.2s ease-in-out infinite;
}
.workflow-step-card.status-passed {
  border-color: #e4e3df;
}
.workflow-step-card.status-working {
  border-color: #e4e3df;
}
.workflow-step-card.status-failed {
  border-color: #e4e3df;
}
.workflow-step-card.status-skipped {
  border-color: #e4e3df;
}
.workflow-step-head {
  min-height: 74px;
  padding: 0;
  display: block;
  background: linear-gradient(180deg, #fbfaf8 0%, #f7f5f1 100%);
  border-bottom: 0;
}
.workflow-step-card.is-expanded .workflow-step-head {
  border-bottom: 1px solid #ebe9e5;
}
.workflow-step-toggle {
  box-sizing: border-box;
  appearance: none;
  width: 100%;
  min-height: 74px;
  padding: 16px 18px;
  display: grid;
  grid-template-columns: 74px minmax(0, 1fr) auto 60px;
  align-items: center;
  gap: 16px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: inherit;
  font: inherit;
  text-align: left;
  cursor: pointer;
}
.workflow-step-toggle:hover {
  background: rgba(111, 90, 74, .045);
}
.workflow-step-toggle:focus-visible {
  outline: 2px solid rgba(111, 90, 74, .38);
  outline-offset: -2px;
}
.workflow-step-marker {
  min-height: 42px;
  padding-right: 16px;
  display: grid;
  align-content: center;
  gap: 3px;
  border-right: 1px solid #dfddd8;
}
.workflow-step-marker span {
  color: #8a8985;
  font-size: 11px;
  line-height: 1;
  font-weight: 500;
}
.workflow-step-marker strong {
  color: #2f2f2c;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
  line-height: .92;
  font-weight: 500;
  letter-spacing: 0;
}
.workflow-step-title {
  min-width: 0;
  display: grid;
  gap: 2px;
}
.workflow-step-title small {
  color: #8a8985;
  font-size: 12px;
  line-height: 1.2;
  text-transform: uppercase;
  letter-spacing: 0;
}
.workflow-step-title strong {
  color: #2f2f2c;
  font-size: 18px;
  line-height: 1.28;
  font-weight: 600;
}
.workflow-step-chip {
  min-height: 0;
  border-radius: 0;
  padding: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  background: transparent;
  color: #8a8985;
  font-size: 13px;
  font-weight: 400;
  white-space: nowrap;
}
.workflow-step-chip.status-passed {
  color: #8a8985;
}
.workflow-step-chip.status-working {
  color: #8a8985;
}
.workflow-step-chip.status-failed {
  color: #8a8985;
}
.workflow-step-chip.status-skipped {
  color: #8a8985;
}
.workflow-step-expand {
  justify-self: end;
  min-width: 42px;
  color: #5d5b55;
  font-size: 13px;
  line-height: 1;
  font-weight: 500;
  text-align: right;
  white-space: nowrap;
}
.workflow-step-body {
  padding: 18px 20px 20px;
  display: grid;
  gap: 14px;
  min-width: 0;
}
.workflow-step-body[hidden] {
  display: none !important;
}
.workflow-step-6 .workflow-step-body,
.workflow-step-7 .workflow-step-body {
  padding: 16px;
  background: #fbfaf8;
}
.workflow-section-intro {
  padding: 14px 16px;
  border: 1px solid #e7e4df;
  border-radius: 12px;
  background: #fff;
}
.workflow-section-grid {
  display: grid;
  gap: 12px;
  min-width: 0;
}
.workflow-section-card {
  min-width: 0;
  border: 1px solid #e5e2dc;
  border-radius: 12px;
  background: #fff;
  overflow: hidden;
}
.workflow-section-title {
  margin: 0;
  padding: 12px 14px;
  border-bottom: 1px solid #ece9e3;
  background: #f7f5f1;
  color: #2f2f2c;
  font-size: 15px;
  line-height: 1.35;
  font-weight: 650;
  letter-spacing: 0;
}
.workflow-section-content {
  padding: 14px;
  display: grid;
  gap: 12px;
  min-width: 0;
}
.workflow-section-content > *:first-child {
  margin-top: 0;
}
.workflow-section-content > *:last-child {
  margin-bottom: 0;
}
.workflow-step-6 .workflow-section-title,
.workflow-step-7 .workflow-section-title {
  display: flex;
  align-items: center;
  gap: 10px;
}
.workflow-step-6 .workflow-section-title::before,
.workflow-step-7 .workflow-section-title::before {
  content: "";
  width: 18px;
  height: 2px;
  flex: 0 0 auto;
  background: #6f5a4a;
}
.workflow-step-6 .workflow-section-card:first-child .workflow-section-title,
.workflow-step-7 .workflow-section-card:first-child .workflow-section-title {
  font-size: 16px;
}
.workflow-step-body > *:first-child,
.assistant-rendered > *:first-child,
.workflow-intro-card > *:first-child {
  margin-top: 0;
}
.workflow-step-body > *:last-child,
.assistant-rendered > *:last-child,
.workflow-intro-card > *:last-child {
  margin-bottom: 0;
}
.md-heading {
  margin: 10px 0 2px;
  color: #2f2f2c;
  font-size: 18px;
  line-height: 1.35;
  font-weight: 600;
}
.workflow-step-body h5.md-heading,
.workflow-step-body h6.md-heading,
.assistant-rendered h5.md-heading,
.assistant-rendered h6.md-heading {
  font-size: 16px;
}
.md-paragraph {
  margin: 0;
  color: #3f3e3a;
  font-size: 15px;
  line-height: 1.74;
}
.md-list {
  margin: 0;
  padding-left: 20px;
  display: grid;
  gap: 8px;
  color: #3f3e3a;
  font-size: 15px;
  line-height: 1.68;
}
.md-list li::marker {
  color: #9a7c66;
}
.md-table-wrap {
  width: 100%;
  max-width: 100%;
  overflow-x: auto;
  border: 1px solid #e7e4df;
  border-radius: 12px;
  background: #fff;
}
.md-table {
  width: 100%;
  min-width: min(560px, 100%);
  border-collapse: collapse;
  font-size: 14px;
  line-height: 1.55;
}
.md-table th,
.md-table td {
  padding: 10px 12px;
  border-bottom: 1px solid #eceae6;
  border-right: 1px solid #eceae6;
  text-align: left;
  vertical-align: top;
}
.md-table th:last-child,
.md-table td:last-child {
  border-right: 0;
}
.md-table tbody tr:last-child td {
  border-bottom: 0;
}
.md-table th {
  background: #f7f5f1;
  color: #4b4a45;
  font-weight: 600;
}
.md-table td {
  color: #3f3e3a;
}
.md-code {
  margin: 0;
  border: 1px solid #e6e3dd;
  border-radius: 12px;
  background: #f8f6f2;
  color: #333330;
  padding: 14px;
  overflow-x: auto;
  white-space: pre;
  font-size: 13px;
  line-height: 1.6;
}
.assistant-copy code {
  border: 1px solid #e6e3dd;
  border-radius: 6px;
  background: #f8f6f2;
  padding: 1px 5px;
  font-size: .92em;
}
.chat-message-assistant.is-thinking .assistant-copy {
  color: #8a8985;
}
.chat-message-assistant.is-thinking .assistant-copy::after {
  content: "";
  animation: thinking-dots 1.1s steps(4, end) infinite;
}
.chat-message-assistant.is-streaming .assistant-copy::after {
  content: "";
  display: inline-block;
  width: 2px;
  height: 1em;
  margin-left: 3px;
  background: #8a8985;
  vertical-align: -0.12em;
  animation: stream-caret .9s ease infinite;
}
.chat-message-assistant.is-awaiting .assistant-copy::after {
  content: "";
  display: inline;
  width: auto;
  height: auto;
  margin-left: 4px;
  background: transparent;
  vertical-align: baseline;
  animation: thinking-dots 1.1s steps(4, end) infinite;
}
.chat-message-assistant.is-error .assistant-copy {
  color: var(--bad);
}
.task-complete {
  color: #46a04f;
  margin-top: 18px;
  font-size: 15px;
}
.chat-followups {
  width: min(100%, 1320px);
  margin: 8px auto 0;
  border-top: 1px solid #eeeeeb;
  color: #333330;
}
.chat-followups p {
  color: #8a8985;
  font-size: 14px;
  margin: 18px 0 4px;
}
.chat-followup {
  width: 100%;
  min-height: 44px;
  border: 0;
  border-bottom: 1px solid #eeeeeb;
  background: transparent;
  color: #444440;
  padding: 0 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font: inherit;
  font-size: 15px;
  font-weight: 400;
  text-align: left;
  cursor: pointer;
  transition: color .18s ease, transform .18s ease;
}
.chat-followup:hover {
  color: #1f1f1d;
  transform: translateX(2px);
}
.chat-followup span {
  color: #9b9a96;
}
.chat-followup small {
  margin-left: auto;
  color: #aaa9a5;
  font-size: 18px;
}
.chat-composer-area {
  position: fixed;
  left: 280px;
  right: 0;
  bottom: 0;
  padding: 28px clamp(24px, 5vw, 78px);
  background: linear-gradient(180deg, rgba(255,255,255,0), #fff 35%, #fff);
  z-index: 3;
}
.chat-composer {
  width: min(100%, 920px);
  margin: 0 auto;
  border: 1px solid #e5e4e0;
  border-radius: 24px;
  background: #fff;
  padding: 14px 16px 14px;
  box-shadow: 0 18px 56px rgba(31, 31, 29, .08);
  transition: border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.chat-composer:hover {
  border-color: #deddda;
  transform: translateY(-1px);
}
.chat-composer.is-focused {
  border-color: #d7d6d2;
  box-shadow: 0 24px 68px rgba(31, 31, 29, .12);
}
.chat-input {
  border: 0;
  background: transparent;
  min-height: 34px;
  max-height: 160px;
  padding: 0 0 4px;
  color: #2f2f2c;
  font-size: 16px;
  line-height: 1.5;
  resize: none;
  overflow: hidden;
  outline: none;
}
.chat-input::placeholder {
  color: #aaa9a5;
  font-weight: 400;
}
.chat-input:hover,
.chat-input:focus {
  border-color: transparent;
  box-shadow: none;
  outline: none;
}
.chat-tool-row {
  display: flex;
  align-items: center;
  gap: 8px;
}
.chat-tool,
.chat-send {
  width: 34px;
  height: 34px;
  border: 1px solid #eeeeeb;
  border-radius: 50%;
  background: #fff;
  color: #444440;
  display: grid;
  place-items: center;
  font: inherit;
  font-size: 20px;
  font-weight: 400;
  line-height: 1;
  cursor: pointer;
  transition: background-color .18s ease, color .18s ease, transform .18s ease, box-shadow .18s ease;
}
.chat-tool:hover {
  background: #f7f7f5;
  transform: translateY(-1px);
}
.chat-spacer {
  flex: 1;
}
.chat-send {
  border: 0;
  background: #eeeeec;
  color: #aaa9a5;
}
.chat-composer.has-content .chat-send {
  background: #1f1f1d;
  color: #fff;
  box-shadow: 0 12px 30px rgba(31, 31, 29, .16);
}
.chat-composer.has-content .chat-send:hover {
  transform: translateY(-1px);
}
.chat-send.is-pulsing {
  animation: send-pulse .34s ease both;
}
@keyframes topbar-in {
  from { opacity: 0; transform: translateY(-10px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes hero-title-in {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes composer-in {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes send-pulse {
  0% { transform: scale(1); }
  45% { transform: scale(.94); }
  100% { transform: scale(1); }
}
@keyframes thinking-dots {
  0%, 100% { content: "."; }
  33% { content: ".."; }
  66% { content: "..."; }
}
@keyframes stream-caret {
  0%, 100% { opacity: .2; }
  50% { opacity: 1; }
}
@keyframes active-step-line {
  0%, 100% { transform: scaleY(.72); opacity: .58; }
  50% { transform: scaleY(1); opacity: 1; }
}
@media (max-width: 1180px) {
  .commercial-hero h1 { font-size: 40px; margin-bottom: 28px; }
  .agent-composer { width: min(100%, 720px); }
  .chat-layout { grid-template-columns: 260px minmax(0, 1fr); }
  .chat-composer-area { left: 260px; }
  .copy-function-hero,
  .copy-function-scene,
  .copy-function-scene-reverse {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .copy-function-hero-visual {
    max-width: 980px;
  }
  .copy-function-scene-reverse figure,
  .copy-function-scene-reverse div {
    order: initial;
  }
  .store-story,
  .store-story-reverse {
    grid-template-columns: 1fr;
    gap: 26px;
  }
  .store-story-reverse .store-story-copy,
  .store-story-reverse figure {
    order: initial;
  }
  .results-hero { grid-template-columns: minmax(0, 1fr); gap: 30px; }
  .results-hero h1 { font-size: 42px; }
  .results-hero-visual,
  .results-hero-visual img { min-height: 440px; }
  .deliverables-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 900px) {
  .topbar { padding: 0 18px; min-height: 58px; height: 58px; gap: 14px; }
  .site-nav { display: none; }
  .brand-logo { width: 42px; height: 42px; }
  .topbrand-name { font-size: 21px; }
  .brand-wordmark { min-width: 82px; height: 40px; font-size: 24px; }
  .nav-register { display: none; }
  .nav-link { min-width: 58px; height: 32px; padding: 0 13px; font-size: 13px; border-radius: 8px; }
  .main { padding: 0 18px 24px; }
  .commercial-hero { min-height: calc(100vh - 58px); padding-bottom: 36px; }
  .commercial-hero h1 { font-size: 34px; line-height: 1.16; margin-bottom: 24px; }
  .agent-composer { border-radius: 16px; padding: 14px; min-height: 128px; width: 100%; }
  .agent-input { font-size: 16px; min-height: 54px; line-height: 1.5; }
  .send-button { width: 34px; height: 34px; font-size: 21px; }
  .prompt-tags { margin-top: 18px; gap: 8px; }
  .prompt-tag { min-height: 34px; padding: 0 14px; font-size: 13px; }
  .chat-body { overflow: auto; }
  .chat-layout { display: block; min-height: 100vh; }
  .chat-sidebar { display: none; }
  .chat-main { height: 100vh; }
  .chat-header { height: 58px; padding: 0 18px; }
  .chat-model-name { font-size: 18px; }
  .chat-action { display: none; }
  .chat-user-link { max-width: 112px; min-height: 32px; padding: 0 10px; }
  .chat-thread { padding: 56px 18px 190px; }
  .chat-empty-title { font-size: 34px; margin-bottom: 32px; }
  .chat-main.is-empty-session .chat-composer-area { padding: 0 18px; transform: translateY(-4vh); }
  .chat-main.is-empty-session .chat-composer { min-height: 116px; border-radius: 18px; }
  .chat-main.is-empty-session .chat-input { min-height: 52px; font-size: 16px; }
  .chat-message { margin-bottom: 32px; }
  .chat-flow-card {
    grid-template-columns: 1fr;
    align-items: stretch;
    gap: 12px;
    padding: 14px;
  }
  .chat-flow-steps {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .workflow-step-toggle {
    grid-template-columns: 62px minmax(0, 1fr) 44px;
    gap: 12px;
    padding: 14px;
  }
  .workflow-step-marker {
    padding-right: 12px;
  }
  .workflow-step-chip {
    grid-column: 2;
    justify-content: flex-start;
  }
  .workflow-step-expand {
    grid-column: 3;
    grid-row: 1 / span 2;
    align-self: center;
  }
  .flow-step-pill {
    white-space: normal;
  }
  .chat-bubble { max-width: 84%; font-size: 15px; }
  .assistant-copy { font-size: 15px; }
  .workflow-step-stack { gap: 14px; }
  .workflow-intro-card { padding: 15px 16px; }
  .workflow-step-head {
    min-height: auto;
    grid-template-columns: 1fr auto;
    padding: 14px 15px;
  }
  .workflow-step-marker {
    grid-column: 1 / -1;
    min-height: auto;
    padding: 0 0 10px;
    grid-template-columns: auto auto;
    justify-content: start;
    align-items: end;
    gap: 8px;
    border-right: 0;
    border-bottom: 1px solid #dfddd8;
  }
  .workflow-step-marker strong { font-size: 24px; }
  .workflow-step-title strong { font-size: 16px; }
  .workflow-step-chip {
    grid-column: 2;
    grid-row: 2;
    align-self: start;
    justify-self: end;
  }
  .workflow-step-body { padding: 15px 16px 17px; gap: 12px; }
  .md-heading { font-size: 16px; }
  .md-paragraph,
  .md-list { font-size: 14px; }
  .md-table { min-width: 520px; font-size: 13px; }
  .chat-composer-area { left: 0; padding: 22px 18px; }
  .chat-composer { border-radius: 22px; }
  .auth-page { min-height: calc(100vh - 58px); padding: 44px 18px; }
  .auth-panel h1 { font-size: 30px; }
  .copy-function-page { min-height: calc(100vh - 58px); padding: 46px 0 54px; }
  .copy-function-hero h1 { font-size: 39px; }
  .copy-function-hero-copy > p:not(.auth-kicker) { font-size: 15px; }
  .copy-function-hero-visual { gap: 10px; }
  .industry-tile { min-height: 190px; }
  .industry-tile figcaption {
    left: 12px;
    right: 12px;
    bottom: 11px;
    display: grid;
    gap: 2px;
    align-items: start;
    justify-content: start;
  }
  .industry-tile strong {
    font-size: 15px;
    text-align: left;
  }
  .copy-function-overview { padding: 58px 0 24px; }
  .copy-function-overview h2 { font-size: 29px; }
  .copy-function-row {
    grid-template-columns: 1fr;
    min-height: auto;
    gap: 8px;
    padding: 22px 0;
  }
  .copy-function-row h2 { font-size: 26px; }
  .copy-function-row p { font-size: 15px; }
  .copy-function-scenes { margin-top: 50px; }
  .copy-function-scene { padding: 38px 0; }
  .copy-function-scene h2 { font-size: 29px; }
  .store-solution-page { min-height: calc(100vh - 58px); padding: 48px 0 56px; }
  .store-solution-hero h1 { font-size: 40px; }
  .store-solution-hero > p:not(.auth-kicker) { font-size: 15px; }
  .store-solution-visual { margin-top: 32px; aspect-ratio: 4 / 3; }
  .store-solution-types { justify-content: flex-start; gap: 18px 28px; }
  .store-solution-intro { padding: 58px 0 28px; }
  .store-story { padding: 38px 0; }
  .store-story-copy h2 { font-size: 31px; }
  .store-solution-assets { padding-top: 56px; }
  .store-asset-line { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .store-asset-line span {
    min-height: 72px;
    border-bottom: 1px solid #e8e7e3;
  }
  .store-asset-line span:nth-child(2n) { border-right: 0; }
  .store-asset-line span:last-child { grid-column: 1 / -1; border-bottom: 0; }
  .features-page { min-height: calc(100vh - 58px); padding: 54px 0 44px; }
  .features-hero { grid-template-columns: 1fr; gap: 30px; margin-bottom: 34px; }
  .features-hero h1 { font-size: 36px; }
  .features-actions { max-width: none; }
  .feature-preview { max-width: 520px; width: 100%; margin: 0 auto; }
  .feature-strip, .feature-grid { grid-template-columns: 1fr; }
  .results-page { min-height: calc(100vh - 58px); padding: 44px 0 48px; }
  .results-hero { margin-bottom: 32px; }
  .results-hero h1 { font-size: 36px; }
  .results-hero-copy > p:not(.auth-kicker) { font-size: 15px; }
  .results-actions { max-width: none; }
  .results-points { grid-template-columns: 1fr; margin-top: 24px; }
  .results-points div { min-height: auto; }
  .results-hero-visual,
  .results-hero-visual img { min-height: 360px; }
  .results-hero-visual figcaption { align-items: flex-start; flex-direction: column; gap: 4px; }
  .results-hero-visual span { text-align: left; }
  .results-section-head { display: grid; gap: 4px; }
  .results-section-head h2 { font-size: 25px; }
  .deliverables-row,
  .result-showcase-grid,
  .result-card-wide,
  .result-card-handoff,
  .handoff-board { grid-template-columns: 1fr; }
  .deliverables-row article { min-height: auto; }
  .deliverables-row span { margin-bottom: 18px; }
  .result-card,
  .result-card-wide { min-height: auto; }
  .result-card-media,
  .result-card-media img { min-height: 280px; }
  .result-card h2 { font-size: 24px; }
  .result-card-body { padding: 22px; }
  .handoff-board { border-left: 0; border-top: 1px solid #e4e3df; }
  .pricing-page { min-height: calc(100vh - 58px); padding: 54px 0 44px; }
  .pricing-head { margin-bottom: 30px; }
  .pricing-head h1 { font-size: 34px; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-card { min-height: auto; }
  .grid.two, .form-grid { grid-template-columns: 1fr; }
  .page-head { display: grid; }
}
@media (max-width: 560px) {
  .topbar { padding: 0 14px; }
  .brand-logo { width: 40px; height: 40px; }
  .topbrand-name { font-size: 20px; }
  .brand-wordmark { min-width: 76px; height: 38px; font-size: 23px; }
  .nav-link { min-width: 54px; height: 30px; padding: 0 11px; font-size: 13px; }
  .commercial-hero h1 { font-size: 29px; margin-bottom: 22px; }
  .agent-composer { min-height: 120px; padding: 13px; border-radius: 15px; }
  .agent-input { font-size: 15px; min-height: 50px; }
  .send-button { width: 32px; height: 32px; font-size: 20px; }
  .prompt-tags { max-width: 330px; }
  .prompt-tag { padding: 0 12px; }
  .chat-header { padding: 0 14px; }
  .chat-model-name { font-size: 17px; }
  .chat-upgrade { min-height: 32px; padding: 0 10px; }
  .chat-user-link { max-width: 92px; }
  .chat-thread { padding: 48px 14px 178px; }
  .chat-empty-title { font-size: 28px; line-height: 1.22; margin-bottom: 26px; }
  .chat-main.is-empty-session .chat-composer-area { padding: 0 12px; }
  .assistant-mark strong { font-size: 21px; }
  .chat-followup { font-size: 14px; }
  .chat-composer-area { padding: 20px 12px; }
  .chat-composer { padding: 13px 13px; border-radius: 20px; }
  .auth-panel h1 { font-size: 28px; }
  .copy-function-page { padding: 38px 0 44px; }
  .copy-function-hero h1 { font-size: 31px; }
  .copy-function-hero-visual { grid-template-columns: 1fr; }
  .industry-tile,
  .copy-function-scene figure { aspect-ratio: 4 / 3; }
  .industry-tile { min-height: 220px; }
  .copy-function-overview h2,
  .copy-function-scene h2 { font-size: 27px; }
  .copy-function-row h2 { font-size: 23px; }
  .store-solution-page { padding: 40px 0 46px; }
  .store-solution-hero h1 { font-size: 32px; }
  .store-solution-visual { border-radius: 8px; }
  .store-solution-types { font-size: 14px; }
  .store-solution-intro h2,
  .store-solution-assets h2 { font-size: 28px; }
  .store-story-copy h2 { font-size: 27px; }
  .store-story figure { aspect-ratio: 4 / 3; }
  .features-hero h1 { font-size: 31px; }
  .features-actions { display: grid; }
  .feature-preview, .feature-strip, .feature-card { border-radius: 16px; }
  .preview-output { grid-template-columns: 1fr; }
  .results-hero h1 { font-size: 31px; }
  .results-actions { display: grid; }
  .results-hero-visual,
  .results-hero-visual img { min-height: 300px; }
  .result-band { padding: 28px 0; }
  .result-metrics { grid-template-columns: 1fr; }
  .result-card-media,
  .result-card-media img { min-height: 230px; }
  .handoff-board div { min-height: 104px; padding: 18px; }
  .pricing-head h1 { font-size: 30px; }
  .pricing-card { padding: 20px; border-radius: 16px; }
  .plan-price span { font-size: 40px; }
}
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: .001ms !important;
  }
}
