.other-knowledge-host {
  display: grid;
  gap: 24px;
}

.other-ask-hero {
  position: relative;
  display: grid;
  justify-items: center;
  overflow: hidden;
  padding: clamp(34px, 5vw, 68px) clamp(18px, 5vw, 70px) 32px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background:
    radial-gradient(circle at 50% 16%, rgba(255,255,255,.12), transparent 27%),
    linear-gradient(145deg, rgba(255,255,255,.055), rgba(255,255,255,.012));
}

.other-ask-hero::before,
.other-ask-hero::after {
  position: absolute;
  content: "";
  pointer-events: none;
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 50%;
  transform: rotate(-9deg);
}

.other-ask-hero::before {
  width: 680px;
  height: 180px;
  top: -54px;
  box-shadow: 0 0 70px rgba(255,255,255,.05);
}

.other-ask-hero::after {
  width: 420px;
  height: 110px;
  top: 4px;
}

.other-ask-brand {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 15px;
  color: var(--text);
  font-family: "Arial Black", Impact, sans-serif;
  font-size: clamp(28px, 4vw, 48px);
  letter-spacing: -.08em;
  line-height: 1;
}

.other-ask-brand i {
  width: 44px;
  height: 32px;
  border: 2px solid currentColor;
  border-radius: 5px;
  background:
    linear-gradient(currentColor,currentColor) 8px 8px / 23px 2px no-repeat,
    linear-gradient(currentColor,currentColor) 8px 14px / 17px 2px no-repeat,
    linear-gradient(currentColor,currentColor) 8px 20px / 26px 2px no-repeat;
  box-shadow: 7px 7px 0 rgba(255,255,255,.12);
  transform: skewY(-3deg);
}

.other-ask-brand strong {
  font: inherit;
}

.other-ask-kicker {
  position: relative;
  z-index: 1;
  margin: 0 0 8px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .22em;
}

.other-ask-hero h3 {
  position: relative;
  z-index: 1;
  margin: 0 0 26px;
  font-size: clamp(22px, 3.2vw, 40px);
  letter-spacing: -.035em;
  text-align: center;
}

.other-ask-composer {
  position: relative;
  z-index: 2;
  width: min(920px, 100%);
  padding: 19px 19px 13px;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 25px;
  background: rgba(5,5,6,.68);
  box-shadow: 0 24px 70px rgba(0,0,0,.26), inset 0 1px 0 rgba(255,255,255,.035);
  backdrop-filter: blur(18px);
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.other-ask-composer:focus-within {
  border-color: rgba(255,255,255,.34);
  transform: translateY(-2px);
  box-shadow: 0 29px 80px rgba(0,0,0,.34), inset 0 1px 0 rgba(255,255,255,.06);
}

.other-ask-composer textarea {
  display: block;
  width: 100%;
  min-height: 88px;
  resize: vertical;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--text);
  font: inherit;
  font-size: 17px;
  line-height: 1.7;
}

.other-ask-composer textarea::placeholder {
  color: #777;
}

.other-ask-toolbar {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 44px;
}


.other-model-switcher {
  position: relative;
  min-width: 164px;
  margin-left: auto;
}

.other-model-trigger {
  display: flex;
  align-items: center;
  gap: 8px;
  width: 100%;
  min-height: 36px;
  padding: 6px 8px;
  border: 1px solid transparent;
  border-radius: 10px;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease;
}

.other-model-trigger:hover,
.other-model-switcher.is-open .other-model-trigger {
  border-color: rgba(255,255,255,.13);
  background: rgba(255,255,255,.055);
  color: var(--text);
}

.other-model-trigger > * { pointer-events: none; }

.other-model-current {
  display: flex;
  flex: 1;
  align-items: baseline;
  gap: 5px;
}

.other-model-current strong {
  color: currentColor;
  font-size: 12px;
  font-weight: 650;
}

.other-model-current small {
  color: #747474;
  font-size: 10px;
}

.other-model-trigger > i {
  color: #777;
  font-size: 12px;
  font-style: normal;
  transition: transform .18s ease;
}

.other-model-switcher.is-open .other-model-trigger > i {
  transform: rotate(180deg);
}

.other-model-menu {
  position: absolute;
  right: 0;
  bottom: calc(100% + 9px);
  z-index: 8;
  display: none;
  width: 268px;
  padding: 7px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 14px;
  background: rgba(20,20,22,.98);
  box-shadow: 0 22px 70px rgba(0,0,0,.48);
  backdrop-filter: blur(18px);
}

.other-model-switcher.is-open .other-model-menu {
  display: grid;
}

.other-model-menu button {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 18px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease;
}

.other-model-menu button:hover,
.other-model-menu button[aria-selected="true"] {
  background: rgba(255,255,255,.075);
}

.other-model-menu button > span {
  display: flex;
  align-items: baseline;
  gap: 8px;
  min-width: 0;
}

.other-model-menu button strong {
  font-size: 12px;
}

.other-model-menu button small {
  color: #777;
  font-size: 10px;
}

.other-model-menu button > i {
  color: transparent;
  font-size: 12px;
  font-style: normal;
}

.other-model-menu button[aria-selected="true"] > i {
  color: var(--text);
}

.other-mode-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d7d7d2;
  box-shadow: 0 0 12px rgba(255,255,255,.5);
}

.other-ask-submit {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #ddddda;
  color: #202020;
  font-size: 23px;
  cursor: pointer;
  transition: transform .18s ease, background .18s ease;
}

.other-ask-submit:hover {
  transform: translateY(-2px) scale(1.04);
  background: #f1f1ee;
}


.other-ask-submit:disabled {
  cursor: wait;
  opacity: .72;
}

.other-ask-submit.is-loading span {
  animation: otherAskPulse .8s ease-in-out infinite alternate;
}

@keyframes otherAskPulse {
  from { opacity: .35; transform: scale(.82); }
  to { opacity: 1; transform: scale(1.08); }
}

.other-ask-live-status {
  position: relative;
  z-index: 1;
  min-height: 18px;
  margin: 10px 0 -4px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .02em;
  text-align: center;
}
.other-ask-chips {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
  margin-top: 18px;
}

.other-ask-chips button {
  padding: 8px 13px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255,255,255,.025);
  color: var(--muted);
  font: inherit;
  font-size: 12px;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, transform .18s ease;
}

.other-ask-chips .other-recommend-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 10px 16px;
  background: rgba(255,255,255,.045);
  color: #b9b9b9;
  letter-spacing: .01em;
}

.other-recommend-button span {
  color: #e2e2de;
  font-size: 11px;
}

.other-ask-chips button:hover {
  color: var(--text);
  border-color: rgba(255,255,255,.25);
  transform: translateY(-1px);
}

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

.other-question-lane {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255,255,255,.025);
}

.other-question-lane > header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  min-height: 142px;
  padding: 24px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(135deg, rgba(255,255,255,.075), transparent 72%);
}

.other-question-lane-hot > header {
  background:
    radial-gradient(circle at 86% 20%, rgba(255,255,255,.12), transparent 28%),
    linear-gradient(135deg, rgba(255,255,255,.045), transparent 72%);
}

.other-question-heading {
  min-width: 0;
}

.other-question-heading > span {
  color: var(--muted);
  font-size: 9px;
  letter-spacing: .2em;
}

.other-question-lane header h3 {
  margin: 9px 0 8px;
  font-size: clamp(20px, 2vw, 27px);
  line-height: 1.18;
  letter-spacing: -.035em;
}

.other-question-lane header p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
}

.other-lane-refresh {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 7px;
  min-width: 104px;
  height: 34px;
  padding: 0 11px;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  color: var(--muted);
  font-size: 11px;
}

.other-lane-refresh:hover {
  border-color: rgba(255,255,255,.28);
  color: var(--text);
}

.other-lane-refresh:disabled {
  cursor: wait;
}

.other-lane-refresh i {
  font-size: 16px;
  font-style: normal;
  line-height: 1;
}

.other-lane-refresh.is-loading i {
  animation: otherRefreshSpin .8s linear infinite;
}


.other-question-list {
  display: grid;
  padding: 8px;
}

.other-question-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 6px;
  padding: 12px 14px 15px;
  border-top: 1px solid rgba(255,255,255,.07);
}

.other-question-pagination button {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  min-width: 34px;
  height: 31px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 8px;
  background: rgba(255,255,255,.025);
  color: #777;
  font: 11px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.other-question-pagination button:hover {
  border-color: rgba(255,255,255,.24);
  color: var(--text);
  transform: translateY(-1px);
}

.other-question-pagination button[aria-current="page"] {
  border-color: #d2d2ce;
  background: #d2d2ce;
  color: #1c1c1e;
}

.other-pagination-ellipsis {
  display: grid;
  flex: 0 0 22px;
  place-items: center;
  height: 31px;
  color: #666;
  font: 13px/1 ui-monospace, SFMono-Regular, Menlo, monospace;
}

@keyframes otherRefreshSpin {
  to { transform: rotate(360deg); }
}

.other-question-card {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 22px;
  align-items: center;
  gap: 10px;
  width: 100%;
  padding: 15px 13px;
  border: 0;
  border-bottom: 1px solid rgba(255,255,255,.055);
  border-radius: 10px;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
  opacity: 0;
  animation: otherQuestionIn .45s ease forwards;
  animation-delay: var(--question-delay);
  transition: background .18s ease, transform .18s ease;
}

.other-question-card:last-child {
  border-bottom-color: transparent;
}

.other-question-card:hover {
  z-index: 1;
  background: rgba(255,255,255,.075);
  transform: translateX(4px);
}

.other-question-number {
  color: var(--muted);
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 10px;
}

.other-question-copy {
  display: grid;
  gap: 5px;
  min-width: 0;
}

.other-question-copy small {
  color: #818181;
  font-size: 9px;
  letter-spacing: .08em;
}

.other-question-copy strong {
  font-size: 13px;
  line-height: 1.45;
}

.other-question-lane-hot .other-question-copy strong {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.other-question-card > i {
  color: #777;
  font-size: 15px;
  font-style: normal;
  transition: color .18s ease, transform .18s ease;
}

.other-question-card:hover > i {
  color: var(--text);
  transform: translate(2px,-2px);
}

@keyframes otherQuestionIn {
  from { opacity: 0; transform: translateY(7px); }
  to { opacity: 1; transform: translateY(0); }
}

.other-knowledge-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .22s ease, visibility .22s ease;
}

.other-knowledge-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.other-knowledge-modal-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background: rgba(0,0,0,.78);
  backdrop-filter: blur(11px);
  cursor: default;
}

.other-knowledge-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(999px, calc(100vw - 48px));
  height: min(800px, calc(100vh - 48px));
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.16);
  border-radius: 20px;
  outline: 0;
  background: #0d0d0f;
  color: var(--text);
  box-shadow: 0 36px 110px rgba(0,0,0,.65);
  transform: translateY(16px) scale(.985);
  transition: transform .25s cubic-bezier(.22,.75,.26,1);
}

.other-knowledge-modal.is-open .other-knowledge-dialog {
  transform: translateY(0) scale(1);
}

.other-knowledge-dialog-header {
  position: sticky;
  top: 0;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 23px 25px 20px;
  border-bottom: 1px solid var(--line);
  background: rgba(13,13,15,.92);
  backdrop-filter: blur(18px);
}

.other-knowledge-dialog-header h2 {
  max-width: 720px;
  margin: 5px 0 7px;
  font-size: clamp(21px, 3vw, 32px);
  line-height: 1.2;
  letter-spacing: -.035em;
}

.other-knowledge-modal-meta {
  margin: 0;
  color: var(--muted);
  font-size: 11px;
}

.other-knowledge-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow-y: auto;
  padding: 28px;
  overscroll-behavior: contain;
}

.other-answer-lead {
  padding: clamp(24px, 4vw, 42px);
  border-radius: 16px;
  background:
    radial-gradient(circle at 88% 10%, rgba(255,255,255,.1), transparent 30%),
    #171719;
}

.other-answer-lead span,
.other-answer-takeaway > span {
  color: #8c8c8c;
  font-size: 9px;
  letter-spacing: .2em;
}

.other-answer-lead p {
  max-width: 760px;
  margin: 13px 0 0;
  font-size: clamp(18px, 2.4vw, 25px);
  line-height: 1.6;
  letter-spacing: -.02em;
}

.other-answer-sections {
  display: grid;
  gap: 0;
  margin: 22px 0;
}

.other-answer-section {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr);
  gap: 17px;
  padding: 24px 3px;
  border-bottom: 1px solid var(--line);
}

.other-answer-section > span {
  padding-top: 3px;
  color: #666;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  font-size: 11px;
}

.other-answer-section h3 {
  margin: 0 0 9px;
  font-size: 18px;
}

.other-answer-section p {
  margin: 0;
  color: #b8b8b8;
  font-size: 14px;
  line-height: 1.9;
}

.other-answer-takeaway {
  margin: 26px 0;
  padding: 26px;
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 15px;
  background: linear-gradient(135deg, rgba(255,255,255,.075), rgba(255,255,255,.02));
}

.other-answer-takeaway blockquote {
  margin: 12px 0 0;
  font-size: clamp(18px, 2.5vw, 26px);
  font-weight: 650;
  line-height: 1.55;
  letter-spacing: -.025em;
}

.other-answer-source {
  display: grid;
  gap: 6px;
  padding-top: 20px;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.7;
}

.other-answer-source strong {
  color: var(--text);
}

.other-answer-source p {
  margin: 0;
}

.other-answer-source time {
  color: #666;
}

.other-answer-source-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 8px 12px;
  margin-top: 4px;
}

.other-answer-source-actions a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 34px;
  padding: 0 13px;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 9px;
  background: rgba(255,255,255,.09);
  color: var(--text);
  font-weight: 650;
  text-decoration: none;
  transition: border-color .2s ease, background .2s ease, transform .2s ease;
}

.other-answer-source-actions a:hover {
  border-color: rgba(255,255,255,.48);
  background: rgba(255,255,255,.15);
  transform: translateY(-1px);
}

.other-answer-content.is-term .other-answer-sections {
  margin-top: 0;
}

.other-answer-content.is-term .other-answer-section {
  grid-template-columns: 38px minmax(0, 1fr);
  gap: 14px;
  padding: 21px 3px;
}

.other-answer-content.is-term .other-answer-section:first-child {
  padding-top: 4px;
}

.other-answer-content.is-term .other-answer-section h3 {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
}

.other-answer-content.is-term .other-answer-section h3 i {
  font-size: 15px;
  font-style: normal;
}

.other-answer-content.is-term .other-answer-section p {
  font-size: 13px;
  line-height: 1.85;
}

.other-answer-content.is-term .other-answer-takeaway {
  margin: 22px 0;
  padding: 22px;
}

.other-answer-content.is-term .other-answer-takeaway blockquote {
  font-size: clamp(16px, 2vw, 21px);
}

body[data-theme="light"] .other-ask-hero {
  background:
    radial-gradient(circle at 50% 16%, rgba(0,0,0,.075), transparent 27%),
    linear-gradient(145deg, rgba(0,0,0,.04), rgba(255,255,255,.8));
}

body[data-theme="light"] .other-ask-hero::before,
body[data-theme="light"] .other-ask-hero::after {
  border-color: rgba(0,0,0,.08);
}

body[data-theme="light"] .other-ask-brand i {
  box-shadow: 7px 7px 0 rgba(0,0,0,.11);
}

body[data-theme="light"] .other-ask-composer {
  border-color: rgba(0,0,0,.16);
  background: rgba(255,255,255,.86);
  box-shadow: 0 24px 70px rgba(0,0,0,.09), inset 0 1px 0 rgba(255,255,255,.7);
}

body[data-theme="light"] .other-ask-composer:focus-within {
  border-color: rgba(0,0,0,.3);
  box-shadow: 0 29px 80px rgba(0,0,0,.12);
}

body[data-theme="light"] .other-ask-composer textarea::placeholder,
body[data-theme="light"] .other-question-copy small {
  color: #777;
}

body[data-theme="light"] .other-mode-dot {
  background: #424242;
  box-shadow: none;
}

body[data-theme="light"] .other-model-trigger:hover,
body[data-theme="light"] .other-model-switcher.is-open .other-model-trigger {
  border-color: rgba(0,0,0,.13);
  background: rgba(0,0,0,.05);
}

body[data-theme="light"] .other-model-menu {
  border-color: rgba(0,0,0,.14);
  background: rgba(250,250,248,.98);
  box-shadow: 0 22px 70px rgba(0,0,0,.16);
}

body[data-theme="light"] .other-model-menu button:hover,
body[data-theme="light"] .other-model-menu button[aria-selected="true"] {
  background: rgba(0,0,0,.065);
}

body[data-theme="light"] .other-ask-submit {
  background: #292929;
  color: #f1f1ef;
}

body[data-theme="light"] .other-ask-submit:hover {
  background: #444;
}

body[data-theme="light"] .other-ask-chips button:hover {
  border-color: rgba(0,0,0,.25);
}

body[data-theme="light"] .other-ask-chips .other-recommend-button {
  background: rgba(0,0,0,.035);
  color: #555;
}

body[data-theme="light"] .other-recommend-button span {
  color: #222;
}

body[data-theme="light"] .other-question-lane {
  background: rgba(255,255,255,.66);
}

body[data-theme="light"] .other-question-lane > header {
  background: linear-gradient(135deg, rgba(0,0,0,.055), transparent 72%);
}

body[data-theme="light"] .other-lane-refresh {
  border-color: rgba(0,0,0,.12);
  background: rgba(0,0,0,.025);
}

body[data-theme="light"] .other-lane-refresh:hover {
  border-color: rgba(0,0,0,.25);
}


body[data-theme="light"] .other-question-card {
  border-bottom-color: rgba(0,0,0,.065);
}

body[data-theme="light"] .other-question-card:hover {
  background: rgba(0,0,0,.055);
}

body[data-theme="light"] .other-question-pagination {
  border-top-color: rgba(0,0,0,.08);
}

body[data-theme="light"] .other-question-pagination button {
  border-color: rgba(0,0,0,.1);
  background: rgba(0,0,0,.025);
  color: #777;
}

body[data-theme="light"] .other-question-pagination button:hover {
  border-color: rgba(0,0,0,.22);
  color: #222;
}

body[data-theme="light"] .other-question-pagination button[aria-current="page"] {
  border-color: #3e3e40;
  background: #3e3e40;
  color: #f1f1ee;
}

body[data-theme="light"] .other-knowledge-dialog {
  border-color: rgba(0,0,0,.15);
  background: #f7f7f5;
}

body[data-theme="light"] .other-knowledge-dialog-header {
  background: rgba(247,247,245,.92);
}

body[data-theme="light"] .other-answer-lead {
  background:
    radial-gradient(circle at 88% 10%, rgba(0,0,0,.08), transparent 30%),
    #eaeae7;
}

body[data-theme="light"] .other-answer-section p {
  color: #4c4c4c;
}

body[data-theme="light"] .other-answer-takeaway {
  border-color: rgba(0,0,0,.13);
  background: linear-gradient(135deg, rgba(0,0,0,.06), rgba(255,255,255,.3));
}

body[data-theme="light"] .other-answer-source-actions a {
  border-color: rgba(0,0,0,.2);
  background: rgba(0,0,0,.075);
}

body[data-theme="light"] .other-answer-source-actions a:hover {
  border-color: rgba(0,0,0,.42);
  background: rgba(0,0,0,.12);
}

@media (max-width: 900px) {
  .other-question-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 620px) {
  .other-knowledge-host {
    gap: 14px;
  }

  .other-ask-hero {
    padding: 30px 12px 22px;
    border-radius: 16px;
  }

  .other-ask-brand {
    font-size: 29px;
  }

  .other-ask-brand i {
    width: 34px;
    height: 25px;
    background:
      linear-gradient(currentColor,currentColor) 6px 6px / 18px 2px no-repeat,
      linear-gradient(currentColor,currentColor) 6px 11px / 14px 2px no-repeat,
      linear-gradient(currentColor,currentColor) 6px 16px / 20px 2px no-repeat;
  }

  .other-ask-hero h3 {
    font-size: 23px;
  }

  .other-ask-composer {
    padding: 15px 14px 10px;
    border-radius: 18px;
  }

  .other-ask-composer textarea {
    min-height: 76px;
    font-size: 15px;
  }

  .other-model-current small {
    display: none;
  }

  .other-model-menu {
    right: -48px;
    width: min(268px, calc(100vw - 52px));
  }

  .other-question-lane > header {
    min-height: 124px;
    padding: 19px;
  }

  .other-question-card {
    grid-template-columns: 27px minmax(0, 1fr) 16px;
    padding: 13px 9px;
  }

  .other-question-pagination {
    gap: 6px;
    padding: 11px 11px 14px;
  }

  .other-question-pagination button {
    flex: 0 0 32px;
    min-width: 32px;
  }

  .other-lane-refresh {
    min-width: 34px;
    width: 34px;
    padding: 0;
    justify-content: center;
  }

  .other-lane-refresh span {
    display: none;
  }

  .other-knowledge-modal {
    align-items: end;
    padding: 0;
  }

  .other-knowledge-dialog {
    width: 100%;
    height: 94vh;
    border-radius: 20px 20px 0 0;
  }

  .other-knowledge-dialog-header {
    padding: 18px 17px 15px;
  }

  .other-knowledge-dialog-header h2 {
    font-size: 20px;
  }

  .other-knowledge-modal-body {
    padding: 15px;
  }

  .other-answer-lead {
    padding: 22px 18px;
  }

  .other-answer-lead p {
    font-size: 17px;
  }

  .other-answer-section {
    grid-template-columns: 29px minmax(0, 1fr);
    gap: 9px;
    padding: 20px 0;
  }

  .other-answer-section p {
    font-size: 13px;
  }

  .other-answer-content.is-term .other-answer-section {
    grid-template-columns: 27px minmax(0, 1fr);
    gap: 8px;
    padding: 18px 0;
  }

  .other-answer-content.is-term .other-answer-section h3 {
    font-size: 15px;
  }

  .other-answer-content.is-term .other-answer-section p {
    font-size: 12.5px;
    line-height: 1.8;
  }

  .other-answer-takeaway {
    padding: 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .other-question-card {
    opacity: 1;
    animation: none;
  }

  .other-lane-refresh.is-loading i {
    animation: none;
  }
}

/* Account conversation history */
.other-chat-history-button {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 7px 10px;
  border: 1px solid rgba(255,255,255,.1);
  border-radius: 10px;
  background: rgba(255,255,255,.035);
  color: #8e8e92;
  font: inherit;
  font-size: 11px;
  cursor: pointer;
  transition: color .18s ease, border-color .18s ease, background .18s ease, transform .18s ease;
}

.other-chat-history-button:hover,
.other-chat-history-button:focus-visible,
.other-chat-history-button[aria-expanded="true"] {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.075);
  color: var(--text);
  transform: translateY(-1px);
}

.other-chat-history-button svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.other-chat-history-button b {
  display: grid;
  place-items: center;
  min-width: 18px;
  height: 18px;
  padding: 0 4px;
  border-radius: 999px;
  background: rgba(255,255,255,.09);
  color: #bdbdc1;
  font-size: 9px;
  font-weight: 650;
}

.other-chat-history-panel {
  position: relative;
  z-index: 4;
  width: 100%;
  margin-top: 10px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.12);
  border-radius: 17px;
  background: rgba(9,9,11,.94);
  box-shadow: 0 20px 55px rgba(0,0,0,.3);
  backdrop-filter: blur(18px);
  animation: aiHistoryIn .22s cubic-bezier(.22,.75,.26,1) both;
}
.other-lane-update {
  display: grid;
  min-width: 104px;
  justify-items: end;
  align-items: end;
  gap: 8px;
  flex: 0 0 auto;
}
.other-lane-update time {
  color: var(--muted);
  font-size: 10px;
  white-space: nowrap;
}

.other-chat-history-region {
  width: min(920px, 100%);
}

.other-chat-history-panel header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 13px 15px;
  border-bottom: 1px solid rgba(255,255,255,.075);
}

.other-chat-history-panel header div {
  display: flex;
  align-items: baseline;
  gap: 9px;
}

.other-chat-history-panel header strong { font-size: 12px; }
.other-chat-history-panel header small,
.other-chat-history-panel header > span { color: #717177; font-size: 10px; }

.other-chat-history-item {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 5px;
  align-items: center;
  border-radius: 10px;
}
.other-chat-history-list {
  display: grid;
  max-height: 250px;
  overflow-y: auto;
  padding: 5px;
}

.other-chat-history-open {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto;
  gap: 14px;
  align-items: center;
  width: 100%;
  padding: 11px 12px;
  border: 0;
  border-radius: 9px;
  background: transparent;
  color: var(--text);
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .16s ease, transform .16s ease;
}

.other-chat-history-open:hover,
.other-chat-history-open:focus-visible {
  outline: 0;
  background: rgba(255,255,255,.065);
  transform: translateX(2px);
}

.other-chat-history-open > span {
  overflow: hidden;
  font-size: 12px;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.other-chat-history-list time { color: #6f6f75; font-size: 9px; }
.other-chat-history-delete {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 5px;
  min-width: 62px;
  height: 32px;
  padding: 0 9px;
  border: 1px solid transparent;
  border-radius: 9px;
  background: transparent;
  color: #68686e;
  font: 500 10px/1 inherit;
  cursor: pointer;
  opacity: .25;
  transform: translateX(4px);
  transition: color .18s ease, background .18s ease, border-color .18s ease, opacity .18s ease, transform .18s ease;
}
.other-chat-history-delete svg {
  width: 14px;
  height: 14px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.other-chat-history-item:hover .other-chat-history-delete,
.other-chat-history-delete:focus-visible,
.other-chat-history-delete.is-confirming,
.other-chat-history-delete.is-deleting {
  opacity: 1;
  transform: translateX(0);
}
.other-chat-history-delete:hover,
.other-chat-history-delete:focus-visible {
  outline: 0;
  border-color: rgba(224,125,125,.2);
  background: rgba(224,125,125,.085);
  color: #cf8b8b;
}
.other-chat-history-delete.is-confirming {
  border-color: rgba(226,138,116,.28);
  background: rgba(226,138,116,.13);
  color: #e0a08f;
}
.other-chat-history-delete:disabled { cursor: wait; }
.other-chat-history-list > p { margin: 0; padding: 20px; color: #77777d; font-size: 11px; text-align: center; }
.other-chat-history-panel > footer { padding: 6px; border-top: 1px solid rgba(255,255,255,.075); }
.other-chat-history-panel > footer button {
  display: grid;
  grid-template-columns: minmax(0,1fr) auto 16px;
  gap: 10px;
  align-items: center;
  width: 100%;
  min-height: 40px;
  padding: 8px 12px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  color: #a9a9ad;
  font: inherit;
  text-align: left;
  cursor: pointer;
  transition: background .18s ease, color .18s ease, transform .18s ease;
}
.other-chat-history-panel > footer button:hover,
.other-chat-history-panel > footer button:focus-visible { outline: 0; background: rgba(255,255,255,.065); color: var(--text); transform: translateX(2px); }
.other-chat-history-panel > footer button span { font-size: 11px; font-weight: 650; }
.other-chat-history-panel > footer button small { color: #6f6f75; font-size: 9px; }
.other-chat-history-panel > footer button i { font-size: 12px; font-style: normal; text-align: right; }

.ai-conversation-history-modal {
  position: fixed;
  inset: 0;
  z-index: 146;
  display: grid;
  place-items: center;
  padding: 28px;
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transition: opacity .24s ease, visibility .24s ease;
}
.ai-conversation-history-modal.is-open { visibility: visible; opacity: 1; pointer-events: auto; }
.ai-conversation-history-backdrop { position: absolute; inset: 0; border: 0; background: rgba(0,0,0,.78); backdrop-filter: blur(18px); cursor: default; }
.ai-conversation-history-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-rows: auto minmax(0,1fr);
  width: min(820px, 94vw);
  max-height: min(780px, 88vh);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.13);
  border-radius: 22px;
  background: linear-gradient(145deg,#111113,#09090b 72%);
  box-shadow: 0 40px 120px rgba(0,0,0,.62);
  color: var(--text);
  transform: translateY(14px) scale(.985);
  transition: transform .3s cubic-bezier(.16,1,.3,1);
}
.ai-conversation-history-modal.is-open .ai-conversation-history-dialog { transform: translateY(0) scale(1); }
.ai-conversation-history-dialog > header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 22px 24px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(255,255,255,.025);
}
.ai-conversation-history-dialog > header > div { display: grid; grid-template-columns: auto auto; align-items: end; justify-content: start; gap: 5px 12px; }
.ai-conversation-history-dialog > header p { grid-column: 1 / -1; margin: 0; color: #68686e; font-size: 8px; letter-spacing: .18em; }
.ai-conversation-history-dialog > header h2 { margin: 0; font-size: 21px; letter-spacing: -.03em; }
.ai-conversation-history-dialog > header span { padding-bottom: 2px; color: #77777d; font-size: 10px; }
.ai-conversation-history-modal-body { min-height: 0; padding: 10px; overflow: hidden; }
.ai-conversation-history-full-list { max-height: min(650px, calc(88vh - 102px)); padding: 4px; }
.ai-conversation-history-full-list .other-chat-history-item { min-height: 54px; }
.ai-conversation-history-full-list .other-chat-history-open { padding: 13px 14px; }

@keyframes aiHistoryIn {
  from { opacity: 0; transform: translateY(-7px) scale(.99); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

/* Full-screen Kimi K3 conversation */
.ai-conversation-modal {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  place-items: center;
  padding: 24px;
  visibility: hidden;
  opacity: 0;
  transition: opacity .28s ease, visibility .28s ease;
}

.ai-conversation-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.ai-conversation-backdrop {
  position: absolute;
  inset: 0;
  border: 0;
  background:
    radial-gradient(circle at 28% 30%, rgba(255,255,255,.08), transparent 28%),
    rgba(0,0,0,.86);
  backdrop-filter: blur(18px) saturate(.75);
  cursor: default;
}

.ai-conversation-dialog {
  position: relative;
  width: min(1500px, 96vw);
  height: min(900px, 91vh);
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.17);
  border-radius: 26px;
  outline: 0;
  background: #09090b;
  color: #ededee;
  box-shadow: 0 45px 140px rgba(0,0,0,.76), inset 0 1px 0 rgba(255,255,255,.05);
  transform: translateY(22px) scale(.965);
  filter: blur(5px);
  transition: transform .42s cubic-bezier(.16,1,.3,1), filter .32s ease;
}

.ai-conversation-modal.is-open .ai-conversation-dialog {
  transform: translateY(0) scale(1);
  filter: blur(0);
}

.ai-conversation-dialog::before {
  position: absolute;
  z-index: 0;
  width: 520px;
  height: 520px;
  left: -280px;
  top: -250px;
  border-radius: 50%;
  background: rgba(255,255,255,.055);
  filter: blur(95px);
  content: "";
  pointer-events: none;
  animation: aiAmbientDrift 10s ease-in-out infinite alternate;
}

.ai-conversation-header {
  position: relative;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 82px;
  padding: 16px 21px 16px 24px;
  border-bottom: 1px solid rgba(255,255,255,.09);
  background: rgba(11,11,13,.78);
  backdrop-filter: blur(24px);
}

.ai-conversation-brand,
.ai-conversation-header-actions,
.ai-conversation-speaker {
  display: flex;
  align-items: center;
}

.ai-conversation-brand { gap: 13px; }
.ai-conversation-brand p { margin: 0 0 3px; color: #77777d; font-size: 9px; letter-spacing: .17em; }
.ai-conversation-brand h2 { margin: 0; font-size: 18px; letter-spacing: -.025em; }

.ai-conversation-orb {
  position: relative;
  width: 37px;
  height: 37px;
  border: 1px solid rgba(255,255,255,.24);
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #ececef 0 5%, #8c8c93 16%, #252529 48%, #0c0c0f 72%);
  box-shadow: 0 0 30px rgba(255,255,255,.1);
}

.ai-conversation-orb::after {
  position: absolute;
  inset: -5px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: inherit;
  content: "";
  animation: aiOrbPulse 2.8s ease-in-out infinite;
}

.ai-conversation-header-actions { gap: 12px; }
.ai-conversation-header-actions > span {
  padding: 6px 10px;
  border: 1px solid rgba(255,255,255,.09);
  border-radius: 999px;
  color: #8b8b90;
  font-size: 10px;
}

.ai-conversation-stage {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0,1.72fr) minmax(310px,.72fr);
  height: calc(100% - 82px);
}

.ai-conversation-ai,
.ai-conversation-user {
  min-height: 0;
  overflow-y: auto;
  scrollbar-width: thin;
  scrollbar-color: #55555b transparent;
}

.ai-conversation-ai {
  padding: clamp(30px,3.4vw,52px);
  background: linear-gradient(rgba(255,255,255,.018) 1px,transparent 1px) 0 0/100% 46px;
}

.ai-conversation-speaker { gap: 12px; margin-bottom: 25px; }
.ai-conversation-ai-mark {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border-radius: 10px;
  background: linear-gradient(145deg,#dedee0,#aaaab0);
  color: #151517;
  font-size: 12px;
  font-weight: 750;
  box-shadow: 0 10px 26px rgba(0,0,0,.22);
}
.ai-conversation-speaker div { display: grid; gap: 3px; }
.ai-conversation-speaker strong { font-size: 13px; }
.ai-conversation-speaker small { color: #74747a; font-size: 9px; letter-spacing: .08em; }

.ai-conversation-thinking {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(230px, 34%);
  gap: 20px;
  align-items: stretch;
  overflow: hidden;
  max-height: 240px;
  margin-left: 44px;
  padding: 15px 17px;
  border: 1px solid rgba(255,255,255,.08);
  border-radius: 13px;
  background: rgba(255,255,255,.035);
  color: #8a8a90;
  opacity: 1;
  transform: translateY(0);
  transition:
    max-height .48s cubic-bezier(.16,1,.3,1),
    margin .48s cubic-bezier(.16,1,.3,1),
    padding .48s cubic-bezier(.16,1,.3,1),
    border-color .3s ease,
    opacity .28s ease,
    transform .38s cubic-bezier(.16,1,.3,1);
}
.ai-conversation-thinking-copy {
  position: relative;
  z-index: 2;
  min-width: 0;
}
.ai-conversation-thinking::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg,transparent 24%,rgba(255,255,255,.055) 50%,transparent 76%);
  content: "";
  transform: translateX(-100%);
}
.ai-conversation-dialog.is-pending .ai-conversation-thinking::after { animation: aiThinkingSweep 1.8s linear infinite; }
.ai-conversation-thinking-copy > span { display: flex; align-items: center; gap: 7px; margin-bottom: 7px; font-size: 9px; letter-spacing: .15em; text-transform: uppercase; }
.ai-conversation-thinking-copy > span i { width: 5px; height: 5px; border-radius: 50%; background: #aaaab0; box-shadow: 0 0 12px rgba(255,255,255,.45); }
.ai-conversation-thinking p { margin: 0; font-size: 12px; line-height: 1.75; }
.ai-conversation-thinking-steps {
  display: grid;
  gap: 5px;
  margin: 11px 0 0;
  padding: 0;
  list-style: none;
}
.ai-conversation-thinking-steps li {
  display: grid;
  grid-template-columns: 24px minmax(0,1fr);
  gap: 9px;
  align-items: center;
  min-height: 23px;
  color: #5f5f65;
  font-size: 11px;
  opacity: .54;
  transform: translateX(0);
  transition: color .35s ease, opacity .35s ease, transform .35s ease;
}
.ai-conversation-thinking-steps li span {
  color: #65656b;
  font: 500 9px/1 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing: .05em;
}
.ai-conversation-thinking-steps li b { font-weight: 480; }
.ai-conversation-thinking-steps li.is-active {
  color: #b0b0b5;
  opacity: 1;
  transform: translateX(3px);
}
.ai-conversation-thinking-steps li.is-active span { color: #d0d0d3; }
.ai-conversation-thinking-steps li.is-done { color: #85858b; opacity: .78; }
.ai-conversation-thinking.is-resolving { border-color: rgba(255,255,255,.13); }
.ai-thinking-slideshow {
  position: relative;
  z-index: 1;
  min-height: 136px;
  overflow: hidden;
  border-left: 1px solid rgba(255,255,255,.07);
  border-radius: 9px;
  background: #090b12;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.035), inset 0 -28px 46px rgba(2,4,9,.28);
}
.ai-thinking-slideshow::before {
  position: absolute;
  z-index: 2;
  inset: 0;
  background: linear-gradient(90deg,rgba(7,9,14,.42),transparent 18%,transparent 78%,rgba(7,9,14,.28)),linear-gradient(180deg,rgba(4,6,11,.06),transparent 60%,rgba(3,5,10,.3));
  content: "";
  pointer-events: none;
}
.ai-thinking-slideshow-track,
.ai-thinking-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}
.ai-thinking-slideshow-track { z-index: 1; }
.ai-thinking-slide {
  display: block;
  object-fit: cover;
  object-position: center;
  opacity: 0;
  transform: scale(1.018);
  transition: opacity .82s cubic-bezier(.22,1,.36,1), transform 3s linear;
  image-rendering: pixelated;
}
.ai-thinking-slide.is-active {
  opacity: 1;
  transform: scale(1);
}
.ai-thinking-slideshow-status {
  position: absolute;
  z-index: 3;
  right: 9px;
  bottom: 8px;
  padding: 4px 6px;
  border: 1px solid rgba(163,199,255,.16);
  border-radius: 999px;
  background: rgba(5,8,14,.48);
  color: rgba(210,224,246,.62);
  font: 500 6px/1 ui-monospace,SFMono-Regular,Consolas,monospace;
  letter-spacing: .13em;
  backdrop-filter: blur(4px);
}
.ai-conversation-thinking.is-collapsed {
  max-height: 0;
  margin-top: 0;
  margin-bottom: 0;
  padding-top: 0;
  padding-bottom: 0;
  border-color: transparent;
  opacity: 0;
  transform: translateY(-10px);
  pointer-events: none;
}

.ai-conversation-answer {
  position: relative;
  margin: 28px 0 0 44px;
  padding-bottom: 42px;
  color: #d8d8dc;
  font-size: 15px;
  line-height: 1.9;
  white-space: pre-wrap;
  overflow-wrap: anywhere;
}
.ai-conversation-dialog.is-typing .ai-conversation-answer::after {
  display: inline-block;
  width: 7px;
  height: 1.1em;
  margin-left: 4px;
  vertical-align: -.15em;
  background: #c9c9cd;
  content: "";
  animation: aiCaretBlink .8s steps(1) infinite;
}
.ai-conversation-dialog.has-error .ai-conversation-thinking { border-color: rgba(255,138,138,.19); }
.ai-conversation-dialog.has-error .ai-conversation-answer { color: #c98f8f; }

.ai-conversation-user {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: clamp(30px,3.4vw,52px);
  border-left: 1px solid rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 92% 8%,rgba(255,255,255,.1),transparent 28%),
    linear-gradient(160deg,#18181b,#0f0f12 62%);
}
.ai-conversation-question-copy > p { margin: 0 0 24px; color: #77777d; font-size: 9px; letter-spacing: .22em; }
.ai-conversation-user blockquote {
  position: relative;
  margin: 0;
  color: #f0f0f1;
  font-size: clamp(18px,2vw,29px);
  font-weight: 620;
  line-height: 1.48;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}
.ai-conversation-user blockquote::before { display: block; margin-bottom: 13px; color: #616168; font: 500 42px/1 Georgia,serif; content: "“"; }

.ai-conversation-conclusion {
  display: grid;
  grid-template-columns: 30px minmax(0,1fr);
  gap: 15px;
  align-items: stretch;
  margin-top: 28px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(-14px);
}
.ai-conversation-conclusion.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
  animation: aiConclusionReveal .78s cubic-bezier(.16,1,.3,1) both;
}
.ai-conversation-conclusion-arrow {
  display: grid;
  place-items: center;
  align-self: start;
  width: 30px;
  height: 66.666%;
  min-height: 126px;
  padding: 2px 0 6px;
  color: #a7a7ad;
  filter: drop-shadow(0 8px 12px rgba(255,255,255,.1));
}
.ai-conversation-conclusion-arrow svg { width: 20px; height: 100%; min-height: 126px; overflow: visible; }
.ai-conversation-conclusion-arrow path { fill: none; stroke: currentColor; stroke-width: 1.35; stroke-linecap: round; stroke-linejoin: round; vector-effect: non-scaling-stroke; }
.ai-conversation-conclusion.is-visible:not(.is-static) .ai-conversation-conclusion-arrow { animation: aiConclusionArrow 1.7s cubic-bezier(.16,1,.3,1) .08s both; }
.ai-conversation-conclusion-content { display: grid; gap: 20px; min-width: 0; }
.ai-conversation-conclusion-card {
  position: relative;
  overflow: hidden;
  padding: 16px 17px 17px;
  border: 1px solid rgba(255,255,255,.11);
  border-radius: 14px;
  background: linear-gradient(145deg,rgba(255,255,255,.075),rgba(255,255,255,.018));
  box-shadow: 0 18px 42px rgba(0,0,0,.16), inset 0 1px rgba(255,255,255,.035);
}
.ai-conversation-conclusion-card::before {
  position: absolute;
  inset: 0;
  background: linear-gradient(112deg,transparent 22%,rgba(255,255,255,.1) 50%,transparent 72%);
  content: "";
  transform: translateX(-115%);
}
.ai-conversation-conclusion.is-visible:not(.is-static) .ai-conversation-conclusion-card::before { animation: aiConclusionSheen 1.15s ease-out .3s both; }
.ai-conversation-conclusion-card small,
.ai-conversation-one-line small { display: block; margin-bottom: 8px; color: #77777d; font-size: 8px; letter-spacing: .18em; }
.ai-conversation-conclusion-card p { margin: 0; color: #d8d8dc; font-size: 13px; font-weight: 520; line-height: 1.72; letter-spacing: -.01em; }
.ai-conversation-one-line { padding: 0 2px 2px; }
.ai-conversation-one-line strong {
  display: block;
  color: #f0f0f1;
  font-size: clamp(16px,1.72vw,25px);
  font-weight: 620;
  line-height: 1.48;
  letter-spacing: -.03em;
  overflow-wrap: anywhere;
}

.ai-conversation-waiting-note {
  display: none;
  max-width: 330px;
  margin: auto 0 0 auto;
  padding-top: 18px;
  border-top: 1px solid rgba(255,255,255,.09);
  color: #85858b;
  font-size: 11px;
  line-height: 1.7;
  text-align: right;
}
.ai-conversation-dialog.is-pending .ai-conversation-waiting-note { display: block; }
@keyframes aiAmbientDrift { to { transform: translate(180px,120px) scale(1.18); } }
@keyframes aiOrbPulse { 50% { transform: scale(1.16); opacity: .3; } }
@keyframes aiThinkingSweep { to { transform: translateX(100%); } }
@keyframes aiCaretBlink { 50% { opacity: 0; } }
@keyframes aiConclusionReveal { from { opacity: 0; transform: translateY(-14px); } to { opacity: 1; transform: translateY(0); } }
@keyframes aiConclusionArrow { 0% { opacity: 0; transform: translateY(-12px); } 45% { opacity: 1; } 72% { transform: translateY(4px); } 100% { opacity: 1; transform: translateY(0); } }
@keyframes aiConclusionSheen { to { transform: translateX(115%); } }

body[data-theme="light"] .other-chat-history-button {
  border-color: rgba(15,15,18,.12);
  background: rgba(15,15,18,.035);
  color: #67676d;
}
body[data-theme="light"] .other-chat-history-panel {
  border-color: rgba(15,15,18,.12);
  background: rgba(249,249,248,.96);
  box-shadow: 0 20px 55px rgba(30,30,35,.12);
}
body[data-theme="light"] .other-chat-history-panel > footer { border-color: rgba(15,15,18,.08); }
body[data-theme="light"] .other-chat-history-panel > footer button:hover,
body[data-theme="light"] .other-chat-history-panel > footer button:focus-visible { background: rgba(15,15,18,.055); }
body[data-theme="light"] .ai-conversation-history-backdrop { background: rgba(232,232,229,.8); }
body[data-theme="light"] .ai-conversation-history-dialog { border-color: rgba(20,20,24,.14); background: linear-gradient(145deg,#fafaf8,#eeeeeb 78%); box-shadow: 0 40px 120px rgba(30,30,35,.2); }
body[data-theme="light"] .ai-conversation-history-dialog > header { border-color: rgba(20,20,24,.09); background: rgba(255,255,255,.35); }
body[data-theme="light"] .other-chat-history-open:hover { background: rgba(15,15,18,.055); }
body[data-theme="light"] .other-chat-history-delete { color: #8a8a90; }
body[data-theme="light"] .other-chat-history-delete:hover,
body[data-theme="light"] .other-chat-history-delete:focus-visible,
body[data-theme="light"] .other-chat-history-delete.is-confirming {
  border-color: rgba(160,72,62,.18);
  background: rgba(160,72,62,.07);
  color: #a76058;
}
body[data-theme="light"] .ai-conversation-backdrop { background: rgba(236,236,233,.82); }
body[data-theme="light"] .ai-conversation-dialog { border-color: rgba(20,20,24,.15); background: #f7f7f5; color: #242427; box-shadow: 0 45px 120px rgba(30,30,35,.2); }
body[data-theme="light"] .ai-conversation-header { border-color: rgba(20,20,24,.1); background: rgba(249,249,247,.86); }
body[data-theme="light"] .ai-conversation-ai { background: linear-gradient(rgba(20,20,24,.025) 1px,transparent 1px) 0 0/100% 46px; }
body[data-theme="light"] .ai-conversation-thinking { border-color: rgba(20,20,24,.1); background: rgba(20,20,24,.035); color: #74747a; }
body[data-theme="light"] .ai-thinking-slideshow { border-left-color: rgba(20,20,24,.08); background-color: #d9dfe7; box-shadow: inset 0 0 0 1px rgba(20,20,24,.08), inset 0 -24px 42px rgba(250,250,248,.18); }
body[data-theme="light"] .ai-thinking-slide { filter: brightness(1.11) contrast(.94) saturate(.88); }
body[data-theme="light"] .ai-thinking-slideshow::before { background: linear-gradient(90deg,rgba(238,241,246,.18),transparent 24%,transparent 76%,rgba(238,241,246,.12)),linear-gradient(180deg,rgba(255,255,255,.08),transparent 68%,rgba(248,249,250,.12)); }
body[data-theme="light"] .ai-thinking-slideshow-status { border-color: rgba(35,49,68,.2); background: rgba(241,244,248,.68); color: rgba(29,42,59,.74); }
body[data-theme="light"] .ai-conversation-thinking-steps li { color: #8a8a90; }
body[data-theme="light"] .ai-conversation-thinking-steps li.is-active { color: #4f4f55; }
body[data-theme="light"] .ai-conversation-thinking-steps li.is-done { color: #68686e; }
body[data-theme="light"] .ai-conversation-answer { color: #2c2c30; }
body[data-theme="light"] .ai-conversation-user { border-color: rgba(20,20,24,.1); background: radial-gradient(circle at 92% 8%,rgba(255,255,255,.8),transparent 28%),linear-gradient(160deg,#e8e8e5,#dededa 62%); }
body[data-theme="light"] .ai-conversation-user blockquote { color: #1e1e21; }
body[data-theme="light"] .ai-conversation-conclusion-arrow { color: #7a7a80; filter: drop-shadow(0 8px 12px rgba(20,20,24,.08)); }
body[data-theme="light"] .ai-conversation-conclusion-card { border-color: rgba(20,20,24,.1); background: linear-gradient(145deg,rgba(255,255,255,.58),rgba(255,255,255,.18)); box-shadow: 0 18px 42px rgba(30,30,35,.08), inset 0 1px rgba(255,255,255,.65); }
body[data-theme="light"] .ai-conversation-conclusion-card small { color: #77777d; }
body[data-theme="light"] .ai-conversation-conclusion-card p { color: #343438; }
body[data-theme="light"] .ai-conversation-one-line strong { color: #1e1e21; }
body[data-theme="light"] .ai-conversation-waiting-note { border-color: rgba(20,20,24,.1); color: #707076; }

@media (max-width: 900px) {
  .ai-conversation-modal { align-items: end; padding: 0; }
  .ai-conversation-dialog { width: 100%; height: 95vh; border-radius: 22px 22px 0 0; }
  .ai-conversation-stage { grid-template-columns: 1fr; grid-template-rows: auto minmax(0,1fr); }
  .ai-conversation-user { grid-row: 1; max-height: 34vh; padding: 24px; border-top: 1px solid rgba(255,255,255,.1); border-left: 0; }
  .ai-conversation-ai { grid-row: 2; }
  .ai-conversation-user blockquote { font-size: 17px; }
  .ai-conversation-user blockquote::before { display: none; }
  .ai-conversation-conclusion { grid-template-columns: 22px minmax(0,1fr); gap: 10px; margin-top: 18px; }
  .ai-conversation-conclusion-arrow,
  .ai-conversation-conclusion-arrow svg { min-height: 85px; }
  .ai-conversation-conclusion-content { gap: 12px; }
  .ai-conversation-conclusion-card { padding: 12px 14px; }
  .ai-conversation-one-line strong { font-size: 15px; }
  .ai-conversation-waiting-note { margin-top: 18px; padding-top: 12px; }
  .ai-conversation-ai { padding: 24px; }
  .ai-conversation-thinking,
  .ai-conversation-answer { margin-left: 0; }
  .ai-conversation-thinking { grid-template-columns: minmax(0,1fr) minmax(190px,32%); }
}

@media (max-width: 560px) {
  .other-model-switcher { min-width: 116px; }
  .other-chat-history-panel header div small { display: none; }
  .other-chat-history-open { grid-template-columns: minmax(0,1fr); gap: 3px; }
  .ai-conversation-history-modal { align-items: end; padding: 0; }
  .ai-conversation-history-dialog { width: 100%; max-height: 88vh; border-radius: 22px 22px 0 0; }
  .ai-conversation-history-dialog > header { padding: 18px 17px; }
  .ai-conversation-history-dialog > header h2 { font-size: 18px; }
  .ai-conversation-history-modal-body { padding: 7px; }
  .ai-conversation-history-full-list { max-height: calc(88vh - 90px); }
  .ai-conversation-history-full-list .other-chat-history-item { grid-template-columns: minmax(0,1fr) 48px; }
  .ai-conversation-history-full-list .other-chat-history-delete { min-width: 44px; padding: 0 6px; }
  .ai-conversation-history-full-list .other-chat-history-delete span { display: none; }
  .ai-conversation-header { min-height: 70px; padding: 13px 14px; }
  .ai-conversation-header-actions > span { display: none; }
  .ai-conversation-stage { height: calc(100% - 70px); }
  .ai-conversation-brand h2 { font-size: 15px; }
  .ai-conversation-user { max-height: 30vh; }
  .ai-conversation-ai { padding: 20px 17px 28px; }
  .ai-conversation-thinking { padding: 14px; }
  .ai-conversation-thinking { grid-template-columns: 1fr; }
  .ai-thinking-slideshow { min-height: 92px; border-top: 1px solid rgba(255,255,255,.07); border-left: 0; }
  .ai-conversation-answer { font-size: 14px; line-height: 1.85; }
}

@media (prefers-reduced-motion: reduce) {
  .ai-conversation-dialog,
  .other-chat-history-panel { transition: none; animation: none; }
  .ai-conversation-dialog::before,
  .ai-conversation-orb::after,
  .ai-conversation-thinking::after,
  .ai-conversation-dialog.is-typing .ai-conversation-answer::after,
  .ai-conversation-conclusion.is-visible,
  .ai-conversation-conclusion-arrow,
  .ai-conversation-conclusion-card::before { animation: none; }
  .ai-thinking-slide { transition: none; transform: none; }
}
.other-model-menu [data-other-model].is-member-model small{color:var(--muted)}
.other-model-menu [data-other-model].is-member-model i{opacity:.65}
/* 2026-07-23: deepen light-mode gradients without changing dark mode. */
body[data-theme="light"] .other-ask-hero {
  border-color: rgba(15, 16, 20, 0.16);
  background: radial-gradient(circle at 18% 8%, rgba(255, 255, 255, 0.72), transparent 28%), radial-gradient(circle at 78% 18%, rgba(79, 83, 90, 0.16), transparent 34%), linear-gradient(145deg, #dfe0e2 0%, #cdd0d3 52%, #e4e5e7 100%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.62), 0 22px 52px rgba(32, 36, 42, 0.1);
}

body[data-theme="light"] .other-ask-composer {
  border-color: rgba(17, 19, 24, 0.2);
  background: linear-gradient(145deg, rgba(241, 242, 243, 0.95), rgba(209, 212, 215, 0.92));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.68), 0 18px 42px rgba(32, 36, 42, 0.09);
}

body[data-theme="light"] .other-ask-chips .other-recommend-button,
body[data-theme="light"] .other-chat-history-panel {
  border-color: rgba(17, 19, 24, 0.14);
  background: rgba(200, 203, 207, 0.72);
}

body[data-theme="light"] .other-question-lane {
  border-color: rgba(17, 19, 24, 0.15);
  background: linear-gradient(155deg, rgba(224, 226, 228, 0.98), rgba(202, 205, 209, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.55), 0 12px 30px rgba(32, 36, 42, 0.065);
}

body[data-theme="light"] .other-question-lane > header {
  background: linear-gradient(135deg, rgba(50, 53, 59, 0.13), rgba(255, 255, 255, 0.08) 76%);
}

body[data-theme="light"] .other-question-card { border-bottom-color: rgba(17, 19, 24, 0.11); }
body[data-theme="light"] .other-question-card:hover { background: rgba(40, 43, 49, 0.1); }

/* 2026-08-11: AI Q&A interaction and readability refinements. */
.other-ask-chips { width: min(100%, 980px); }

.other-ask-chips .other-recommend-button,
.other-ask-chips .other-browse-button {
  display: inline-flex;
  align-items: center;
  flex: 1 1 280px;
  justify-content: center;
  min-height: 42px;
}

.other-ask-chips .other-browse-button {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.045);
  color: var(--text);
}

.other-ask-chips .other-browse-button:hover {
  border-color: rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.085);
}

.other-browse-button span { opacity: 0.65; }

.ai-conversation-title-row {
  display: flex;
  align-items: baseline;
  flex-wrap: wrap;
  gap: 8px 12px;
}

.ai-conversation-title-row > span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.02em;
}

.ai-conversation-answer { white-space: normal; }

.ai-conversation-answer p {
  margin: 0 0 1.05em;
  white-space: pre-line;
}

.ai-conversation-answer p:last-child { margin-bottom: 0; }

.ai-conversation-answer strong {
  color: var(--text);
  font-weight: 720;
}

.ai-conversation-answer mark {
  padding: 0.08em 0.24em;
  border-radius: 4px;
  background: rgba(167, 187, 215, 0.14);
  color: inherit;
}

.ai-answer-citation {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: baseline;
  margin: 0 .08em;
  color: #5aa7ff;
  font-size: .78em;
  font-weight: 760;
  line-height: 1;
  text-decoration: none;
  vertical-align: .28em;
  cursor: pointer;
}

.ai-answer-citation:hover,
.ai-answer-citation:focus-visible { color: #88c2ff; outline: none; }
.ai-answer-citation.is-unlinked { cursor: default; opacity: .82; }

.ai-answer-citation-tooltip {
  position: absolute;
  z-index: 12;
  left: 50%;
  bottom: calc(100% + 10px);
  display: grid;
  gap: 6px;
  width: min(340px, 74vw);
  padding: 13px 14px;
  visibility: hidden;
  border: 1px solid rgba(116,180,255,.3);
  border-radius: 11px;
  background: rgba(15,19,27,.98);
  color: #dfe7f1;
  box-shadow: 0 18px 54px rgba(0,0,0,.48);
  font-size: 12px;
  font-weight: 450;
  line-height: 1.55;
  letter-spacing: 0;
  opacity: 0;
  transform: translate(-50%,6px);
  transition: opacity .16s ease, transform .16s ease, visibility .16s ease;
  pointer-events: none;
}

.ai-answer-citation-tooltip::after {
  position: absolute;
  left: 50%;
  bottom: -6px;
  width: 10px;
  height: 10px;
  border-right: 1px solid rgba(116,180,255,.3);
  border-bottom: 1px solid rgba(116,180,255,.3);
  background: #0f131b;
  content: "";
  transform: translateX(-50%) rotate(45deg);
}

.ai-answer-citation:hover .ai-answer-citation-tooltip,
.ai-answer-citation:focus-visible .ai-answer-citation-tooltip {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%,0);
}

.ai-answer-citation-tooltip strong { color: #f3f7fc; font-size: 13px; line-height: 1.45; }
.ai-answer-citation-meta { color: #8491a2; font-size: 10px; }
.ai-answer-citation-summary { color: #bac5d2; }
.ai-answer-citation-link { display: grid; gap: 2px; color: #69adff; font-size: 10px; letter-spacing: .03em; }
.ai-answer-citation-link span { overflow: hidden; color: #849db8; text-overflow: ellipsis; white-space: nowrap; }
.ai-answer-citation-link b { font-weight: 680; }

.ai-conversation-sources {
  display: grid;
  gap: 7px;
  margin-top: 24px;
  padding-top: 16px;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
}

.ai-conversation-sources small {
  color: var(--muted);
  letter-spacing: 0.12em;
}

.ai-conversation-sources a {
  color: var(--text);
  text-decoration: none;
  opacity: 0.76;
}

.ai-conversation-sources a:hover { opacity: 1; text-decoration: underline; }
.ai-conversation-sources a span { margin-right: 5px; color: var(--muted); }

.other-chat-history-delete {
  opacity: 0.78;
  transform: none;
  pointer-events: auto;
}

.other-knowledge-modal-body { padding-bottom: max(48px, calc(28px + env(safe-area-inset-bottom))); }
.other-answer-section p { white-space: pre-line; }
.other-answer-source { margin-bottom: max(8px, env(safe-area-inset-bottom)); }

body[data-theme="light"] .other-ask-chips .other-browse-button {
  border-color: rgba(17, 19, 24, 0.16);
  background: rgba(200, 203, 207, 0.55);
}

body[data-theme="light"] .ai-conversation-answer mark {
  background: rgba(69, 93, 126, 0.11);
}

body[data-theme="light"] .ai-answer-citation { color: #086dd2; }
body[data-theme="light"] .ai-answer-citation:hover,
body[data-theme="light"] .ai-answer-citation:focus-visible { color: #004f9f; }
body[data-theme="light"] .ai-answer-citation-tooltip {
  border-color: rgba(8,109,210,.24);
  background: rgba(255,255,255,.99);
  color: #303640;
  box-shadow: 0 18px 48px rgba(28,43,62,.2);
}
body[data-theme="light"] .ai-answer-citation-tooltip::after { border-color: rgba(8,109,210,.24); background: #fff; }
body[data-theme="light"] .ai-answer-citation-tooltip strong { color: #18202a; }
body[data-theme="light"] .ai-answer-citation-meta { color: #687381; }
body[data-theme="light"] .ai-answer-citation-summary { color: #46515e; }
body[data-theme="light"] .ai-answer-citation-link { color: #086dd2; }

body[data-theme="light"] .ai-conversation-sources {
  border-top-color: rgba(17, 19, 24, 0.12);
}

@media (max-width: 560px) {
  .other-ask-chips .other-recommend-button,
  .other-ask-chips .other-browse-button { flex-basis: 100%; }
  .ai-conversation-title-row { align-items: flex-start; flex-direction: column; gap: 2px; }
  .ai-conversation-title-row > span { font-size: 10px; }
}
.ai-daily-limit-body {
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-top: 26px;
  text-align: center;
}

.ai-daily-limit-body > span {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.045);
  font: 760 0.78rem/1 ui-monospace, SFMono-Regular, Consolas, monospace;
  letter-spacing: 0.12em;
}

.ai-daily-limit-body p {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.75;
}

.ai-daily-limit-body p strong {
  color: var(--ink);
}

.ai-daily-limit-body .primary-button {
  width: min(260px, 100%);
}
