:root {
  color-scheme: dark;
  --bg: #020607;
  --panel: rgba(7, 17, 19, 0.92);
  --panel-strong: rgba(10, 24, 26, 0.96);
  --line: rgba(246, 234, 208, 0.1);
  --line-strong: rgba(176, 138, 58, 0.34);
  --text: #f4efe4;
  --muted: #989b93;
  --gold: #c9a85c;
  --gold-soft: #f2dc9a;
  --gold-lite: #f2dc9a;
  --danger: #ffb4b4;
  --success: #90d7b8;
  --shadow: 0 18px 56px rgba(0, 0, 0, 0.3);
}

* {
  box-sizing: border-box;
}

html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  background:
    linear-gradient(90deg, rgba(246, 234, 208, 0.018) 1px, transparent 1px),
    linear-gradient(180deg, rgba(246, 234, 208, 0.014) 1px, transparent 1px),
    linear-gradient(180deg, #081518 0%, #03080a 54%, #010304 100%);
  background-size: 32px 32px, 32px 32px, auto;
  color: var(--text);
  font-family: "PingFang SC", "HarmonyOS Sans SC", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  -webkit-font-smoothing: antialiased;
  text-rendering: geometricPrecision;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  -webkit-tap-highlight-color: transparent;
}

#app {
  min-height: 100vh;
}

.app-shell {
  min-height: 100vh;
  padding: 16px 14px calc(82px + env(safe-area-inset-bottom));
  overflow-x: hidden;
}

.app-shell.no-tab {
  padding-bottom: calc(24px + env(safe-area-inset-bottom));
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 16px;
}

.brand-lockup {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.brand-symbol {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.36);
}

.brand-symbol img,
.avatar,
.cover,
.portrait {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand-title {
  color: #fff6de;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.2;
}

.brand-slogan {
  margin-top: 2px;
  color: #c9bb8e;
  font-size: 11px;
  letter-spacing: 0;
}

.top-action {
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: rgba(7, 17, 19, 0.78);
  color: var(--gold-soft);
  padding: 9px 12px;
}

.hero {
  position: relative;
  min-height: 320px;
  margin: -16px -14px 16px;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(10, 26, 20, 0.02) 0%, rgba(4, 10, 8, 0.30) 58%, rgba(2, 6, 4, 0.94) 88%, rgba(2, 6, 4, 0.99) 100%),
    url("./assets/images/home-hero-stripes.jpg");
  background-size: cover;
  background-position: center 50%;
}

.hero-content {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 22px;
}

.hero-logo {
  width: min(200px, 68vw);
  height: 48px;
  margin-bottom: 16px;
  opacity: 0.92;
}

.hero-logo img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: left center;
}

.h1 {
  margin: 0;
  color: #ece3d0;
  font-size: 27px;
  line-height: 1.22;
  font-weight: 600;
  letter-spacing: 0.03em;
}

.h2 {
  margin: 0;
  color: #fff6de;
  font-size: 21px;
  line-height: 1.28;
  font-weight: 700;
}

.h3 {
  margin: 0;
  color: #fff6de;
  font-size: 17px;
  line-height: 1.35;
  font-weight: 650;
}

.eyebrow {
  color: #c9bb8e;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.muted {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.62;
}

.hero-copy {
  max-width: 520px;
  margin-top: 10px;
  color: rgba(212, 202, 176, 0.78);
  font-size: 14px;
  line-height: 1.7;
}

.hero-actions,
.actions,
.inline-actions {
  display: flex;
  gap: 10px;
  margin-top: 16px;
  justify-content: center;
}
.inline-actions {
  flex-wrap: wrap;
  gap: 10px;
}
.inline-actions .btn {
  flex: 1 1 auto;
  min-width: 0;
  text-align: center;
  padding: 0 12px;
}

.actions.sticky {
  position: sticky;
  bottom: calc(12px + env(safe-area-inset-bottom));
  z-index: 10;
  padding: 10px 14px;
  background: linear-gradient(180deg, transparent 0%, rgba(2,5,6,0.92) 30%, rgba(2,5,6,0.98) 100%);
  margin: 14px -14px 0;
  justify-content: center;
  gap: 12px;
}
.actions.sticky .btn.ghost {
  flex: 0 0 auto;
}
.actions.sticky .btn.block {
  flex: 1 1 auto;
  max-width: 320px;
}

.btn {
  min-height: 44px;
  border: 0;
  border-radius: 8px;
  padding: 0 15px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
}

.btn.gold {
  background: linear-gradient(135deg, #a77f30, #f2dc9a);
  color: #07100f;
}

.btn.ghost {
  border: 1px solid rgba(176, 138, 58, 0.44);
  background: rgba(7, 17, 19, 0.34);
  color: #ead7a2;
}

.btn.danger {
  border: 1px solid rgba(255, 180, 180, 0.4);
  background: rgba(120, 36, 36, 0.18);
  color: var(--danger);
}

.btn.block {
  width: 100%;
}

.btn:disabled {
  opacity: 0.48;
}

.section {
  margin-top: 22px;
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.link {
  border: 0;
  background: transparent;
  color: var(--gold-soft);
  font-size: 14px;
  padding: 0;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
  padding: 16px;
}

.card + .card {
  margin-top: 12px;
}

.scroll-row {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(210px, 72%);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 4px;
  scroll-snap-type: x proximity;
}

.scroll-row::-webkit-scrollbar {
  display: none;
}

.scene-card,
.package-card,
.order-card,
.assistant-card {
  cursor: pointer;
}

/* Scene cards in the scrollable grid: horizontal layout */
.grid .scene-card-h {
  display: flex;
  align-items: stretch;
  gap: 14px;
  padding: 14px;
  overflow: hidden;
}
.grid .scene-card-h .scene-cover-h {
  width: 55%;
  flex: 0 0 55%;
  flex-shrink: 0;
  align-self: stretch;
  min-height: 100%;
  border-radius: 7px;
  object-fit: cover;
  object-position: center;
  display: block;
}
.grid .scene-card-h .scene-body {
  min-width: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.grid .scene-card-h .scene-body-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.grid .scene-card-h .scene-body-desc {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.grid .scene-card-h .scene-body-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
}
.grid .scene-card-h .scene-body-scope {
  color: #b8b39a;
  font-size: 12px;
  line-height: 1.6;
}
.grid .scene-card-h .scene-body-actions {
  margin-top: auto;
  display: flex;
  gap: 8px;
}
.grid .scene-card-h .scene-body-actions .btn {
  min-height: 34px;
  padding: 0 10px;
  font-size: 13px;
  flex: 1 1 auto;
  text-align: center;
}

.scene-mini {
  min-height: 218px;
  scroll-snap-align: start;
}

.cover {
  height: 128px;
  border-radius: 7px;
  margin-bottom: 12px;
}

.title-row,
.row,
.info-line,
.summary-row,
.panel-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.summary-row,
.info-line {
  padding: 9px 0;
  border-bottom: 1px solid var(--line);
  color: #d8cfb6;
  font-size: 14px;
}

.summary-row:last-child,
.info-line:last-child {
  border-bottom: 0;
}

.summary-row span:last-child,
.info-line span:last-child {
  max-width: 62%;
  color: #fff6de;
  text-align: right;
}

.summary-block {
  margin-top: 12px;
}

.block-title {
  margin-bottom: 6px;
  color: #d8cfb6;
  font-size: 13px;
}

.status-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 24px;
  border-radius: 999px;
  background: rgba(176, 138, 58, 0.16);
  color: #ead7a2;
  padding: 3px 9px;
  font-size: 12px;
  white-space: nowrap;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 10px;
}

.tag {
  border: 1px solid rgba(176, 138, 58, 0.16);
  border-radius: 999px;
  background: rgba(176, 138, 58, 0.13);
  color: #ead7a2;
  padding: 5px 9px;
  font-size: 12px;
}

.tag.warning {
  border-color: rgba(255, 180, 180, 0.3);
  background: rgba(120, 36, 36, 0.18);
  color: var(--danger);
}

.tag.selectable {
  cursor: pointer;
}

.tag.active {
  background: linear-gradient(135deg, #a77f30, #f2dc9a);
  color: #07100f;
}

.tag.gold {
  border-color: rgba(216, 183, 106, 0.42);
  background: rgba(216, 183, 106, 0.2);
  color: #fff1bd;
}

.service-matrix,
.home-assurance,
.category-intro {
  overflow: hidden;
}

.matrix-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding-bottom: 6px;
}

.matrix-item {
  position: relative;
  min-height: 136px;
  border-radius: 8px;
  overflow: hidden;
  cursor: pointer;
  background: #071113;
}

.matrix-item.primary,
.matrix-item.wide {
  grid-column: 1 / -1;
}

.matrix-item.primary {
  min-height: 178px;
}

.matrix-bg,
.scene-hero-image {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.matrix-bg {
  position: absolute;
  inset: 0;
}

.matrix-shade,
.scene-mask {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(2, 5, 6, 0.06), rgba(2, 5, 6, 0.88));
}

.matrix-content {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 1;
}

.matrix-title {
  color: #fff6de;
  font-size: 18px;
  line-height: 1.25;
  font-weight: 750;
}

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

.assurance-item {
  min-height: 116px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(3, 9, 10, 0.46);
  padding: 12px;
}

.assurance-no {
  color: var(--gold-soft);
  font-size: 12px;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: rgba(201, 168, 92, 0.08);
  border: 1px solid rgba(201, 168, 92, 0.15);
}

.assurance-title {
  margin-top: 6px;
  color: #fff6de;
  font-size: 15px;
  font-weight: 700;
}

.scene-hero {
  position: relative;
  min-height: 330px;
  padding: 0;
  overflow: hidden;
}

.scene-hero-image {
  position: absolute;
  inset: 0;
}

.scene-copy {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 18px;
  z-index: 1;
}

.scope-grid {
  display: grid;
  gap: 10px;
  margin-top: 12px;
}

.scope-item,
.process-item,
.package-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.scope-item {
  color: #d8cfb6;
  font-size: 14px;
}

.scope-dot {
  width: 8px;
  height: 8px;
  flex: 0 0 auto;
  border-radius: 50%;
  margin-top: 7px;
  background: var(--gold);
}

.process-item {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

.process-item:last-child {
  border-bottom: 0;
}

.process-no {
  width: 34px;
  flex: 0 0 auto;
  color: var(--gold-soft);
  font-weight: 800;
}

.process-title {
  color: #fff6de;
  font-weight: 700;
}

.package-row {
  justify-content: space-between;
}

.grid {
  display: grid;
  gap: 12px;
}

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

.assistant-card {
  display: flex;
  gap: 13px;
}

.avatar {
  width: 72px;
  height: 88px;
  flex: 0 0 auto;
  border-radius: 8px;
}

.assistant-card .content,
.assistant-card .assistant-info {
  min-width: 0;
  flex: 1;
}

.assistant-profile-hero {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  margin-bottom: 12px;
}

.portrait {
  width: 124px;
  height: 158px;
  flex: 0 0 124px;
  border-radius: 8px;
  object-position: center 18%;
  margin: 0;
}

.assistant-profile-copy {
  min-width: 0;
  flex: 1;
}

.assistant-profile-copy .h1 {
  margin-top: 8px;
  font-size: 34px;
  line-height: 1.08;
}

.assistant-profile-copy .tag-row {
  margin-top: 14px;
}

.skill-row {
  display: flex;
  flex-wrap: wrap;
  gap: 6px 12px;
  margin-top: 10px;
  color: #d8cfb6;
  font-size: 13px;
}

.filters {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
}

.field {
  margin-top: 14px;
}

.label {
  margin-bottom: 7px;
  color: #d8cfb6;
  font-size: 13px;
}

.input,
.select,
.textarea {
  width: 100%;
  min-height: 44px;
  border: 1px solid rgba(246, 234, 208, 0.1);
  border-radius: 8px;
  background: rgba(3, 9, 10, 0.72);
  color: #fff6de;
  padding: 10px 12px;
  outline: none;
}

.textarea {
  min-height: 108px;
  resize: vertical;
}

.field-hint {
  margin-top: 6px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.5;
}

.stepper {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.step-dot {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(7, 17, 19, 0.72);
  color: var(--muted);
  padding: 10px;
  font-size: 13px;
}

.step-dot.active {
  border-color: rgba(176, 138, 58, 0.48);
  color: var(--gold-soft);
}

.metrics,
.price-panel,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 14px;
}

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

.metric-value,
.price {
  color: var(--gold-soft);
  font-size: 21px;
  font-weight: 800;
}

.metric-label {
  margin-top: 3px;
  color: var(--muted);
  font-size: 12px;
}

.divider {
  height: 1px;
  margin: 14px 0;
  background: var(--line);
}

.checkbox-line {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 12px;
  color: #d8cfb6;
  font-size: 14px;
  line-height: 1.5;
}

.checkbox-line input {
  margin-top: 3px;
  accent-color: var(--gold);
}

.timeline {
  margin-top: 12px;
}

.timeline-step {
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  gap: 10px;
  padding-bottom: 16px;
  position: relative;
}

.timeline-step::before {
  content: "";
  position: absolute;
  left: 8px;
  top: 20px;
  bottom: 0;
  width: 1px;
  background: rgba(246, 234, 208, 0.12);
}

.timeline-step:last-child::before {
  display: none;
}

.dot {
  width: 17px;
  height: 17px;
  border: 2px solid rgba(176, 138, 58, 0.34);
  border-radius: 50%;
  margin-top: 3px;
  background: #03080a;
}

.timeline-step.done .dot {
  background: var(--gold);
  border-color: var(--gold);
}

.result-card {
  min-height: calc(100vh - 40px);
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-align: center;
}

.result-icon {
  width: 76px;
  height: 76px;
  margin: 28px auto 14px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(176, 138, 58, 0.16);
  color: var(--gold-soft);
  font-size: 38px;
  font-weight: 800;
}

.stars {
  display: inline-flex;
  gap: 4px;
}

.star {
  border: 0;
  background: transparent;
  color: rgba(246, 234, 208, 0.26);
  font-size: 26px;
  line-height: 1;
  padding: 1px;
}

.star.active {
  color: var(--gold-soft);
}

.rating-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
}

.rating-row:last-child {
  border-bottom: 0;
}

.assistant-review {
  padding: 13px 0;
  border-bottom: 1px solid var(--line);
}

.assistant-review:last-child {
  border-bottom: 0;
}

.assistant-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.assistant-head .avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.menu-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 48px;
  border-bottom: 1px solid var(--line);
  color: #fff6de;
}

.menu-item:last-child {
  border-bottom: 0;
}

.bottom-nav {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 30;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  min-height: calc(62px + env(safe-area-inset-bottom));
  padding-bottom: env(safe-area-inset-bottom);
  border-top: 1px solid var(--line);
  background: rgba(3, 8, 10, 0.96);
  backdrop-filter: blur(14px);
}

.nav-item {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
}

.nav-item.active {
  color: var(--gold-soft);
}

.empty {
  padding: 34px 16px;
  text-align: center;
}

.gold-text {
  color: var(--gold-soft) !important;
}

.success-text {
  color: var(--success);
}

.danger-text {
  color: var(--danger);
}

#toast {
  position: fixed;
  left: 50%;
  bottom: calc(88px + env(safe-area-inset-bottom));
  z-index: 50;
  max-width: min(340px, calc(100vw - 40px));
  transform: translateX(-50%) translateY(20px);
  opacity: 0;
  pointer-events: none;
  border: 1px solid rgba(246, 234, 208, 0.12);
  border-radius: 8px;
  background: rgba(3, 8, 10, 0.94);
  box-shadow: var(--shadow);
  color: #fff6de;
  padding: 10px 13px;
  font-size: 14px;
  line-height: 1.5;
  transition: opacity 0.18s ease, transform 0.18s ease;
}

#toast.show {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

/* ───────── SVG Icons ───────── */
.nav-icon {
  display: block;
  width: 22px;
  height: 22px;
  margin: 0 auto 3px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.nav-item.active .nav-icon {
  stroke-width: 2;
}

/* ───────── Route Transition ───────── */
#app {
  animation: routeFadeIn 0.28s ease;
}

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

/* ───────── Card Interactions ───────── */
.card,
.matrix-item,
.scene-mini,
.assistant-card {
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  cursor: pointer;
}

.card:hover,
.matrix-item:hover,
.scene-mini:hover,
.assistant-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 168, 92, 0.18);
}

.card:active,
.matrix-item:active,
.scene-mini:active,
.assistant-card:active {
  transform: translateY(0) scale(0.985);
  transition: transform 0.08s ease;
}

.btn {
  transition: transform 0.12s ease, opacity 0.18s ease, box-shadow 0.18s ease;
}

.btn:active {
  transform: scale(0.96);
}

.btn.gold:hover {
  box-shadow: 0 4px 18px rgba(201, 168, 92, 0.25);
}

.btn.ghost:hover {
  border-color: rgba(242, 220, 154, 0.25);
  background: rgba(242, 220, 154, 0.05);
}

.link:hover {
  opacity: 0.75;
}

/* ───────── Scene Image Object-Position ───────── */
.matrix-bg {
  object-fit: cover;
  object-position: center 30%;
}

.matrix-item.primary .matrix-bg {
  object-position: center 25%;
}

.matrix-item.wide .matrix-bg {
  object-position: center 40%;
}

.scene-mini .cover {
  object-fit: cover;
  object-position: center 30%;
}

.scene-hero-image {
  object-fit: cover;
  object-position: center 20%;
}

/* ───────── Skeleton Loading ───────── */
.skeleton {
  background: linear-gradient(110deg, rgba(242, 220, 154, 0.04) 25%, rgba(242, 220, 154, 0.09) 50%, rgba(242, 220, 154, 0.04) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.4s ease-in-out infinite;
  border-radius: 6px;
}

@keyframes shimmer {
  0%   { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

.skeleton-card {
  display: flex;
  gap: 12px;
  padding: 14px;
  background: rgba(7, 17, 19, 0.5);
  border-radius: 10px;
  margin-bottom: 12px;
}

.skeleton-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  flex-shrink: 0;
}

.skeleton-lines {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 4px;
}

.skeleton-line {
  height: 13px;
  border-radius: 4px;
}

.skeleton-line.short  { width: 55%; }
.skeleton-line.medium { width: 75%; }
.skeleton-line.long   { width: 92%; }

.skeleton-cover {
  width: 100%;
  height: 180px;
  border-radius: 8px;
  margin-bottom: 12px;
}

/* ───────── Assistant Category Scroll ───────── */
.assistant-category {
  margin-bottom: 24px;
}

.assistant-category-head {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.assistant-category-title {
  font-size: 17px;
  font-weight: 650;
  color: var(--gold-lite);
  letter-spacing: 0.02em;
}

.assistant-category-count {
  font-size: 13px;
  font-weight: 450;
  color: rgba(244, 239, 228, 0.5);
}

.assistant-scroll-row {
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  -webkit-overflow-scrolling: touch;
  padding-bottom: 6px;
  scrollbar-width: none;
}

.assistant-scroll-row::-webkit-scrollbar {
  display: none;
}

.assistant-scroll-row .assistant-card {
  min-width: 290px;
  max-width: 290px;
  flex-shrink: 0;
  scroll-snap-align: start;
  min-height: 126px;
  align-self: stretch;
}
.assistant-scroll-row .assistant-card .content {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-assistants .assistant-scroll-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  overflow: visible;
  padding-bottom: 0;
  scroll-snap-type: none;
}

.featured-assistants .assistant-scroll-row .assistant-card {
  min-width: 0;
  max-width: none;
  width: 100%;
  margin-top: 0;
  min-height: 0;
  height: 214px;
  padding: 12px;
  flex-direction: column;
  gap: 10px;
  scroll-snap-align: none;
}

.featured-assistants .assistant-scroll-row .assistant-card:nth-child(n+3) {
  display: none;
}

.featured-assistants .assistant-scroll-row .assistant-card .avatar {
  width: 100%;
  height: 86px;
  border-radius: 7px;
  object-fit: cover;
  object-position: center 18%;
}

.featured-assistants .assistant-scroll-row .assistant-card .content {
  justify-content: flex-start;
  min-height: 0;
}

.featured-assistants .assistant-scroll-row .assistant-card .title-row {
  gap: 6px;
}

.featured-assistants .assistant-scroll-row .assistant-card .title-row .h3 {
  font-size: 16px;
  line-height: 1.18;
}

.featured-assistants .assistant-scroll-row .assistant-card .title-row .status-pill {
  display: none;
}

.featured-assistants .assistant-scroll-row .assistant-card .muted {
  display: -webkit-box;
  margin-top: 4px;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  font-size: 12px;
  line-height: 1.45;
}

.featured-assistants .assistant-scroll-row .assistant-card .tag-row {
  gap: 5px;
  margin-top: 8px;
}

.featured-assistants .assistant-scroll-row .assistant-card .tag {
  padding: 4px 7px;
  font-size: 11px;
}

.featured-assistants .assistant-scroll-row .assistant-card .tag-row .tag:nth-child(n+3),
.featured-assistants .assistant-scroll-row .assistant-card .skill-row {
  display: none;
}

/* ───────── Notification Dot ───────── */
@media (min-width: 720px) {
  .app-shell {
    width: min(560px, 100%);
    margin: 0 auto;
    border-left: 1px solid rgba(246, 234, 208, 0.06);
    border-right: 1px solid rgba(246, 234, 208, 0.06);
  }

  .bottom-nav {
    left: 50%;
    width: min(560px, 100%);
    transform: translateX(-50%);
  }
}
