/* Haecceity product system
   One calm social inbox, one personal Page, five intentional themes. */

:root {
  color-scheme: dark;
  --system-blue: var(--accent);
  --system-mint: var(--success);
  --system-orange: var(--warning);
  --system-pink: var(--secondary);
  --separator: color-mix(in srgb, var(--border) 72%, transparent);
  --separator-soft: color-mix(in srgb, var(--border) 45%, transparent);
  --fill-primary: color-mix(in srgb, var(--text) 7%, transparent);
  --fill-secondary: color-mix(in srgb, var(--text) 4%, transparent);
  --accent-fill: color-mix(in srgb, var(--accent) 12%, transparent);
  --mint-fill: color-mix(in srgb, var(--success) 12%, transparent);
  --orange-fill: color-mix(in srgb, var(--warning) 12%, transparent);
  --pink-fill: color-mix(in srgb, var(--secondary) 12%, transparent);
  --radius-control: 12px;
  --radius-media: 10px;
  --font-system: -apple-system, BlinkMacSystemFont, "SF Pro Text", "SF Pro Display", "Segoe UI", system-ui, sans-serif;
}

html[data-tone="light"] { color-scheme: light; }
html[data-tone="dark"] { color-scheme: dark; }

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

.product-body,
.profile-public-body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.47;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

.product-body *,
.profile-public-body * { box-sizing: border-box; }

.product-body button,
.product-body input,
.product-body select,
.product-body textarea,
.profile-public-body button,
.profile-public-body input,
.profile-public-body select,
.profile-public-body textarea {
  font: inherit;
  letter-spacing: inherit;
}

.product-body :focus-visible,
.profile-public-body :focus-visible {
  outline: 3px solid color-mix(in srgb, var(--accent) 62%, transparent);
  outline-offset: 2px;
}

.product-body .sr-only,
.profile-public-body .sr-only {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  padding: 0 !important;
  margin: -1px !important;
  overflow: hidden !important;
  clip: rect(0, 0, 0, 0) !important;
  white-space: nowrap !important;
  border: 0 !important;
}

/* App shell */
.product-body {
  height: 100dvh;
  overflow: hidden;
}

.product-body .app-frame {
  display: grid;
  grid-template-columns: 196px minmax(0, 1fr);
  width: 100%;
  height: 100dvh;
  min-height: 0;
  background: var(--bg);
}

.product-body .app-rail {
  display: flex;
  flex-direction: column;
  min-height: 0;
  padding: 28px 14px 18px;
  background: var(--sidebar);
  border-right: 1px solid var(--separator);
}

.product-body .app-rail-brand {
  display: inline-flex;
  width: 52px;
  height: 66px;
  margin: 0 12px 38px;
  color: var(--text);
  text-decoration: none;
}

.product-body .brand-mark { width: 100%; height: 100%; }

.product-body .app-rail-nav {
  display: grid;
  gap: 6px;
}

.product-body .app-rail-link {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 46px;
  padding: 0 12px;
  border-radius: var(--radius-control);
  color: var(--muted);
  font-size: 16px;
  font-weight: 500;
  text-decoration: none;
}

.product-body .app-rail-link svg,
.product-body .mobile-app-nav svg,
.product-body .inbox-actions svg {
  width: 21px;
  height: 21px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-body .app-rail-link:hover { background: var(--fill-secondary); color: var(--text); }
.product-body .app-rail-link.is-active,
.product-body .app-rail-link.nav-tab-active {
  background: var(--accent-fill);
  color: var(--accent);
  font-weight: 600;
}

.product-body .app-rail-end {
  display: grid;
  gap: 14px;
  margin-top: auto;
}

.product-body .app-rail-join {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 0 12px;
  border-top: 1px solid var(--separator);
  border-bottom: 1px solid var(--separator) !important;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.product-body .app-rail-join:hover { color: var(--text); }

.product-body .theme-picker {
  display: grid;
  gap: 8px;
  padding: 0 4px;
}

.product-body .theme-picker label { display: grid; gap: 2px; }
.product-body .theme-picker label span,
.product-body .theme-picker label strong {
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
}
.product-body .theme-picker label strong { color: var(--text); font-size: 13px; }

.product-body .theme-picker select,
.product-body .place-theme-select {
  width: 100%;
  min-height: 40px;
  padding: 0 34px 0 11px;
  border: 1px solid var(--separator);
  border-radius: 10px;
  background: var(--fill-primary);
  color: var(--text);
  font-size: 13px;
  text-overflow: ellipsis;
}

.product-body .app-rail-account {
  display: flex;
  flex-wrap: wrap;
  gap: 7px 12px;
  padding: 0 4px;
}

.product-body .app-rail-account span { width: 100%; color: var(--muted); font-size: 12px; }
.product-body .app-rail-account a,
.product-body .app-rail-account button {
  appearance: none;
  padding: 0;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 12px;
  text-decoration: none;
  cursor: pointer;
}
.product-body .app-rail-account a:hover,
.product-body .app-rail-account button:hover { color: var(--text); }

.product-body .app-stage,
.product-body .app-workspace {
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.product-body .app-stage { display: flex; flex-direction: column; }
.product-body .app-workspace { flex: 1; overflow: hidden; background: var(--bg); }

.product-body .app-alert {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  align-items: center;
  gap: 12px;
  min-height: 48px;
  padding: 7px 16px;
  border-bottom: 1px solid color-mix(in srgb, var(--warning) 40%, var(--separator));
  background: var(--orange-fill);
}
.product-body .app-alert span { color: var(--warning); font-weight: 600; }
.product-body .app-alert p { margin: 0; }
.product-body .app-alert a,
.product-body .app-alert button {
  appearance: none;
  border: 0;
  background: none;
  color: var(--text);
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
}

.product-body .mobile-app-nav { display: none; }

/* Ping layout */
.product-body .feed-layout,
.product-body .now-shell {
  display: grid !important;
  grid-template-columns: minmax(34rem, 1fr) minmax(22rem, 31rem) !important;
  width: 100%;
  height: 100%;
  min-height: 0;
  background: var(--bg);
}

.product-body .feed-main,
.product-body .feed-canvas,
.product-body .thread-panel {
  min-width: 0;
  min-height: 0;
  height: 100%;
}

.product-body .feed-canvas,
.product-body .thread-panel { display: flex; flex-direction: column; }
.product-body .thread-panel { border-left: 1px solid var(--separator); background: color-mix(in srgb, var(--sidebar) 68%, var(--bg)); }

.product-body .feed-toolbar {
  flex: none;
  padding: 27px 28px 0;
  border-bottom: 1px solid var(--separator) !important;
  background: var(--bg);
}

.product-body .feed-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
}

.product-body .feed-heading h1,
.product-body .now-title {
  margin: 0;
  color: var(--text);
  font-size: 34px;
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.035em;
}

.product-body .feed-heading p { margin: 5px 0 0; color: var(--muted); font-size: 15px; }

.product-body .feed-search input {
  width: 11rem;
  min-height: 38px;
  padding: 0 12px;
  border: 0;
  border-radius: 10px;
  background: var(--fill-primary);
  color: var(--text);
  font-size: 14px;
}

.product-body .feed-composer-trigger {
  appearance: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  min-height: 54px;
  margin: 20px 0 14px;
  padding: 7px 8px 7px 16px;
  border: 1px solid var(--separator);
  border-radius: var(--radius-control);
  background: color-mix(in srgb, var(--sidebar) 46%, var(--bg));
  color: var(--muted);
  text-align: left;
  cursor: text;
}

.product-body .feed-composer-trigger b {
  display: inline-flex;
  min-height: 40px;
  align-items: center;
  padding: 0 16px;
  border-radius: 9px;
  background: var(--accent);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
}

.product-body .feed-source-tabs {
  display: inline-grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
  margin-bottom: 13px;
  padding: 3px;
  border-radius: 10px;
  background: var(--fill-primary);
}

.product-body .feed-source-tabs a {
  display: flex;
  min-width: 94px;
  min-height: 34px;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid transparent;
  border-radius: 8px;
  color: var(--muted);
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
}

.product-body .feed-source-tabs a.is-active {
  border-color: var(--separator-soft);
  background: var(--card);
  color: var(--accent);
  font-weight: 600;
}

.product-body #feed-stream,
.product-body .now-scroll {
  min-height: 0;
  overflow-y: auto;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: color-mix(in srgb, var(--muted) 28%, transparent) transparent;
}

.product-body .feed-main #feed-stream { height: calc(100% - 196px); }
.product-body .feed-stream-inner { padding: 0 28px 48px; }
.product-body .now-section { margin: 0; }
.product-body .now-section:not(:has(.inbox-row)) { display: none; }
.product-body .now-section > h2 {
  margin: 0;
  padding: 22px 0 10px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.015em;
  text-transform: uppercase;
}
.product-body .now-section-earlier > h2 { padding-top: 30px; }
.product-body .now-rows { display: grid; }

/* Open-by-default inbox posts */
.product-body .inbox-row {
  position: relative;
  display: grid !important;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  grid-template-areas: "ident copy meta";
  gap: 14px;
  width: 100%;
  min-width: 0;
  padding: 15px 0;
  border: 0 !important;
  border-top: 1px solid var(--separator) !important;
  border-radius: 0 !important;
  background: transparent !important;
  box-shadow: none !important;
  color: var(--text);
}

.product-body .inbox-row:first-child { border-top: 0 !important; }
.product-body .inbox-row:hover { background: var(--fill-secondary) !important; }
.product-body .inbox-row-active,
.product-body .inbox-row.post-selected {
  margin-inline: -12px;
  width: calc(100% + 24px);
  padding-inline: 12px;
  background: var(--accent-fill) !important;
}
.product-body .inbox-row-read { opacity: .7; }
.product-body .inbox-row-read:hover { opacity: 1; }

.product-body .inbox-row.now-post-full {
  grid-template-columns: 48px minmax(0, 1fr);
  grid-template-areas: "ident copy" "actions actions";
  padding-block: 18px;
}

.product-body .inbox-ident { grid-area: ident; position: relative; }
.product-body .inbox-copy { grid-area: copy; min-width: 0; }
.product-body .inbox-meta { grid-area: meta; }
.product-body .now-post-full .inbox-meta { display: none; }

.product-body .inbox-post-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.product-body .inbox-post-head > span { display: flex; flex-wrap: wrap; align-items: baseline; gap: 6px; min-width: 0; }
.product-body .inbox-post-head b { font-size: 16px; font-weight: 650; }
.product-body .inbox-post-head small,
.product-body .inbox-meta time { color: var(--muted); font-size: 12px; white-space: nowrap; }
.product-body .inbox-post-head small { display: inline-flex; align-items: baseline; gap: 6px; }
.product-body .inbox-post-head small i { color: color-mix(in srgb, var(--muted) 60%, transparent); font-style: normal; }
.product-body .post-context { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 6px; }
.product-body .post-context em {
  display: inline-flex;
  min-height: 25px;
  align-items: center;
  padding: 0 8px;
  border: 1px solid currentColor;
  border-radius: 7px;
  font-size: 11px;
  font-style: normal;
  font-weight: 600;
  white-space: nowrap;
}
.product-body .context-trust { color: var(--success); background: var(--mint-fill); }
.product-body .context-source { color: var(--accent); background: var(--accent-fill); }
.product-body .context-time { color: var(--warning); background: var(--orange-fill); }
.product-body .inbox-category {
  display: block;
  margin: 6px 0 2px;
  color: var(--secondary);
  font-size: 12px;
  font-weight: 650;
  text-transform: capitalize;
}
.product-body .inbox-open-copy {
  appearance: none;
  display: block;
  width: 100%;
  padding: 0;
  border: 0;
  background: none;
  color: inherit;
  text-align: left;
  cursor: pointer;
}
.product-body .inbox-snippet {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 15px !important;
  line-height: 1.45;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-body .now-post-full .inbox-snippet {
  color: var(--text);
  font-size: 17px;
  line-height: 1.5;
  white-space: normal;
}
.product-body .inbox-live-dot {
  position: absolute;
  right: -2px;
  bottom: 0;
  width: 9px;
  height: 9px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--warning);
}

.product-body .inbox-actions {
  grid-area: actions;
  display: flex;
  align-items: center;
  gap: 4px;
  padding-top: 12px;
  border-top: 1px solid var(--separator-soft);
}
.product-body .inbox-actions form { display: flex; margin: 0; }
.product-body .inbox-actions button {
  appearance: none;
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  gap: 7px;
  padding: 0 10px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 12px;
  font-weight: 500;
  white-space: nowrap;
  cursor: pointer;
}
.product-body .inbox-row-active .inbox-actions button {
  gap: 5px;
  padding-inline: 7px;
  font-size: 11px;
}
.product-body .inbox-actions button:hover { background: var(--fill-primary); color: var(--text); }
.product-body .inbox-actions .is-saved { color: var(--secondary); }
.product-body .inbox-actions .is-saved svg { fill: color-mix(in srgb, var(--secondary) 24%, transparent); }
.product-body .inbox-actions .open-room-action { margin-left: auto; color: var(--accent); font-weight: 600; }

/* Link media stays useful, not dominant */
.product-body .inbox-row .link-preview,
.product-body .thread-body .link-preview {
  display: grid;
  grid-template-columns: 118px minmax(0, 1fr);
  min-height: 86px;
  margin-top: 14px;
  overflow: hidden;
  border: 1px solid var(--separator);
  border-radius: var(--radius-media);
  background: var(--fill-secondary);
  color: var(--text);
  text-decoration: none;
  box-shadow: none;
}
.product-body .link-preview-image { min-height: 86px; }
.product-body .link-preview-image img { width: 100%; height: 100%; object-fit: cover; }
.product-body .link-preview-copy { display: grid; align-content: center; gap: 2px; padding: 10px 12px; min-width: 0; }
.product-body .link-preview-copy small,
.product-body .link-preview-copy span,
.product-body .link-preview-copy em { color: var(--muted); font-size: 12px; font-style: normal; }
.product-body .link-preview-copy b { overflow: hidden; font-size: 14px; text-overflow: ellipsis; white-space: nowrap; }
.product-body .link-preview-copy em { color: var(--accent); }

/* Lanyard identity */
.product-body .ident-badge,
.thread-page-preview .ident-badge {
  --badge-band: #0a84ff;
  position: relative;
  display: grid !important;
  place-items: center;
  width: 43px !important;
  height: 56px !important;
  padding: 8px 5px 10px !important;
  overflow: visible !important;
  border: 1px solid color-mix(in srgb, var(--text) 42%, var(--border)) !important;
  border-radius: 7px !important;
  background: var(--card) !important;
  color: var(--text) !important;
  box-shadow: none !important;
}
.product-body .ident-md,
.thread-page-preview .ident-md { width: 49px !important; height: 63px !important; }
.product-body .ident-badge::before,
.thread-page-preview .ident-badge::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  width: 8px;
  height: 11px;
  transform: translateX(-50%);
  border-radius: 2px 2px 0 0;
  background: var(--text);
}
.product-body .ident-badge::after,
.thread-page-preview .ident-badge::after {
  content: "";
  position: absolute;
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 9px;
  border-radius: 0 0 7px 7px;
  background: var(--badge-band);
}
.product-body .ident-member,
.thread-page-preview .ident-member { --badge-band: #0a84ff; }
.product-body .ident-source,
.thread-page-preview .ident-source { --badge-band: #30d158; }
.product-body .ident-live,
.thread-page-preview .ident-live { --badge-band: #ff9f0a; }
.product-body .ident-you,
.thread-page-preview .ident-you { --badge-band: #bf5af2; }
.product-body .ident-muted,
.thread-page-preview .ident-muted { --badge-band: #8e8e93; }
.product-body .ident-chrome,
.thread-page-preview .ident-chrome { display: none !important; }
.product-body .ident-photo,
.product-body .ident-initials,
.thread-page-preview .ident-photo,
.thread-page-preview .ident-initials {
  display: grid !important;
  width: 100% !important;
  height: 100% !important;
  place-items: center;
  border-radius: 4px !important;
  object-fit: cover;
  background: var(--fill-secondary) !important;
  color: var(--text) !important;
  font-size: 13px !important;
  font-weight: 650;
}

/* Room */
.product-body .thread-sheet { display: flex; flex-direction: column; height: 100%; min-height: 0; }
.product-body .thread-panel-head {
  display: flex;
  min-height: 76px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 15px 20px;
  border-bottom: 1px solid var(--separator);
  background: var(--bg);
}
.product-body .thread-panel-head > div { display: flex; align-items: baseline; gap: 12px; }
.product-body .thread-panel-head h2 { margin: 0; font-size: 22px; font-weight: 700; letter-spacing: -0.025em; }
.product-body .room-status { display: inline-flex; align-items: center; gap: 6px; color: var(--warning); font-size: 12px; font-weight: 600; }
.product-body .room-status i { width: 7px; height: 7px; border-radius: 50%; background: currentColor; }
.product-body .thread-minimize {
  appearance: none;
  min-height: 40px;
  padding: 0 8px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 13px;
  cursor: pointer;
}
.product-body .thread-minimize:hover { color: var(--accent); }
.product-body .thread-body { flex: 1; padding: 18px 20px 28px; }
.product-body .thread-msg { display: flex; align-items: flex-start; gap: 10px; margin: 0 0 14px; }
.product-body .thread-msg-own { flex-direction: row-reverse; }
.product-body .thread-stack { display: grid; gap: 5px; max-width: 82%; min-width: 0; }
.product-body .thread-who { padding: 0 8px; color: var(--muted); font-size: 12px; font-weight: 500; }
.product-body .thread-bubble {
  display: grid;
  gap: 7px;
  padding: 12px 14px 9px;
  border: 0 !important;
  border-radius: 13px !important;
  background: var(--fill-primary) !important;
  color: var(--text);
  box-shadow: none !important;
}
.product-body .thread-msg-own .thread-bubble { background: var(--accent-fill) !important; border: 1px solid color-mix(in srgb, var(--accent) 22%, transparent) !important; }
.product-body .thread-bubble p { margin: 0; font-size: 15px; line-height: 1.45; }
.product-body .thread-when { color: var(--muted); font-size: 11px; font-variant-numeric: tabular-nums; }
.product-body .thread-origin {
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr);
  gap: 13px;
  align-items: start;
  margin: 0;
  padding: 0 0 20px;
  border: 0;
  border-bottom: 1px solid var(--separator);
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.product-body .thread-origin-content { min-width: 0; }
.product-body .thread-origin-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 8px; }
.product-body .thread-origin-head b { color: var(--text); font-size: 12px; font-weight: 680; letter-spacing: .055em; text-transform: uppercase; }
.product-body .thread-origin-copy {
  margin: 7px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  color: var(--text);
  font-size: 15px;
  line-height: 1.5;
  box-shadow: none !important;
}
.product-body .thread-reply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 8px;
  padding: 11px 16px calc(11px + env(safe-area-inset-bottom, 0px));
  border-top: 1px solid var(--separator);
  background: var(--bg);
}
.product-body .thread-reply .control {
  width: 100%;
  min-height: 42px;
  padding: 0 14px;
  border: 1px solid var(--separator);
  border-radius: 12px;
  background: var(--fill-primary);
  color: var(--text);
  box-shadow: none;
}
.product-body .button-primary,
.product-body .thread-reply .button-primary {
  appearance: none;
  min-height: 42px;
  padding: 0 16px;
  border: 0;
  border-radius: 10px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  box-shadow: none;
  cursor: pointer;
}
.product-body .thread-empty {
  display: grid;
  height: 100%;
  place-content: center;
  justify-items: center;
  gap: 8px;
  padding: 28px;
  text-align: center;
}
.product-body .thread-empty b { margin-top: 12px; font-size: 20px; }
.product-body .thread-empty p { max-width: 18rem; margin: 0; color: var(--muted); }

/* The Page behind each Ping */
.product-body .thread-page-preview {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--separator);
}
.product-body .thread-page-preview > header {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
}
.product-body .thread-page-preview header small,
.product-body .preview-module-label { color: var(--muted); font-size: 12px; font-weight: 500; }
.product-body .thread-page-preview h3 { margin: 1px 0; font-size: 18px; letter-spacing: -0.02em; }
.product-body .thread-page-preview header p { margin: 0; color: var(--muted); font-size: 12px; }
.product-body .thread-page-preview header a { color: var(--accent); font-size: 12px; font-weight: 600; text-decoration: none; }
.product-body .thread-page-bio { margin: 14px 0 18px; color: var(--muted); font-size: 13px; line-height: 1.45; }
.product-body .thread-page-modules { display: grid; grid-template-columns: 1fr 1fr; border-top: 1px solid var(--separator); border-left: 1px solid var(--separator); }
.product-body .thread-page-modules article { min-width: 0; padding: 11px; border-right: 1px solid var(--separator); border-bottom: 1px solid var(--separator); }
.product-body .thread-page-modules article > div { display: flex; align-items: center; gap: 9px; margin-top: 7px; min-width: 0; }
.product-body .thread-page-modules img,
.product-body .preview-art { width: 42px; height: 42px; flex: none; border-radius: 7px; object-fit: cover; }
.product-body .preview-art { display: grid; place-items: center; background: var(--fill-primary); color: var(--accent); font-style: normal; }
.product-body .thread-page-modules p { display: grid; min-width: 0; margin: 0; }
.product-body .thread-page-modules b,
.product-body .thread-page-modules small { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.product-body .thread-page-modules small { color: var(--muted); }
.product-body .preview-camera,
.product-body .preview-offering { grid-column: 1 / -1; }
.product-body .preview-camera > div { display: grid !important; grid-template-columns: repeat(3, 1fr); }
.product-body .preview-camera img { width: 100%; height: 64px; }

/* Live timeline inside a Room */
.product-body .timeline-shell { margin: 18px 0; padding: 0; border: 0; background: transparent; }
.product-body .timeline-header,
.product-body .timeline-title-row,
.product-body .timeline-scale-bar,
.product-body .timeline-footer,
.product-body .timeline-id-badge { display: none !important; }
.product-body .timeline-list { display: grid; gap: 0; margin: 0; padding: 0 0 0 11px; border-left: 1px solid var(--separator); list-style: none; }
.product-body .timeline-list li { position: relative; display: grid; grid-template-columns: minmax(0, 1fr); grid-template-areas: none; gap: 5px; width: 100%; margin: 0; padding: 11px 8px 12px 15px; border: 0; border-bottom: 1px solid var(--separator-soft); background: transparent; }
.product-body .timeline-list li::before { content: ""; position: absolute; top: 18px; left: -15px; width: 7px; height: 7px; border: 2px solid var(--bg); border-radius: 50%; background: var(--warning); }
.product-body .timeline-list p { grid-column: 1; width: auto; margin: 0; font-size: 14px; line-height: 1.42; }
.product-body .timeline-list time { grid-column: 1; width: max-content; padding: 0; border: 0; background: transparent; color: var(--muted); font-family: var(--font-system); font-size: 11px; font-variant-numeric: tabular-nums; letter-spacing: 0; }
.product-body .timeline-composer { display: grid; grid-template-columns: 1fr auto auto; gap: 8px; margin-bottom: 12px; }
.product-body .timeline-composer .control { min-width: 0; min-height: 42px; padding: 0 12px; border: 1px solid var(--separator); border-radius: 10px; background: var(--fill-primary); color: var(--text); }

/* Composer sheet */
.product-body .post-composer-modal {
  width: min(580px, calc(100vw - 28px));
  max-width: none;
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  border: 1px solid var(--separator);
  border-radius: 18px;
  background: var(--card);
  color: var(--text);
  box-shadow: none;
}
.product-body .post-composer-modal::backdrop { background: color-mix(in srgb, #000 42%, transparent); backdrop-filter: blur(8px); }
.product-body .post-composer-shell { max-height: calc(100dvh - 48px); overflow-y: auto; background: var(--card); }
.product-body .post-composer-header { display: grid; grid-template-columns: 80px minmax(0, 1fr) 80px; min-height: 62px; align-items: center; padding: 0 12px; border-bottom: 1px solid var(--separator); }
.product-body .post-composer-header h2 { margin: 0 !important; color: var(--text); text-align: center; font-size: 17px !important; font-weight: 680; line-height: 1.2 !important; letter-spacing: -.015em; }
.product-body .post-composer-header button {
  appearance: none;
  display: inline-flex;
  width: auto;
  height: auto;
  min-height: 38px;
  align-items: center;
  padding: 0 8px;
  border: 0;
  border-radius: 9px;
  background: none;
  color: var(--accent);
  font-size: 14px !important;
  cursor: pointer;
}
.product-body .post-composer-header [data-close-composer] { color: var(--muted); text-align: left; }
.product-body .composer-header-post { justify-self: end; justify-content: center; min-width: 58px; background: var(--accent) !important; color: #fff !important; font-weight: 650; }
.product-body .composer-identity { display: flex; align-items: center; gap: 12px; padding: 19px 22px 13px; }
.product-body .composer-identity > span:last-child { display: grid; gap: 1px; }
.product-body .composer-identity b { font-size: 13px !important; font-weight: 680; }
.product-body .composer-identity small { color: var(--muted); font-size: 12px !important; }
.product-body .feed-composer { padding: 0 22px 22px; }
.product-body .feed-composer-head { display: none; }
.product-body .composer-textarea { width: 100%; min-height: 164px; resize: vertical; padding: 14px 0 18px; border: 0 !important; border-bottom: 1px solid var(--separator) !important; border-radius: 0 !important; outline: 0; background: transparent !important; color: var(--text); font-size: 18px !important; line-height: 1.5; box-shadow: none !important; }
.product-body .composer-textarea::placeholder { color: color-mix(in srgb, var(--muted) 80%, transparent); }
.product-body .composer-textarea:focus { border-bottom-color: color-mix(in srgb, var(--accent) 45%, var(--separator)) !important; }
.product-body .composer-controls { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 16px; }
.product-body .composer-field { display: grid; gap: 7px; color: var(--muted); font-size: 12px !important; }
.product-body .composer-field > span { padding-left: 2px; font-size: 11px !important; font-weight: 650; letter-spacing: .055em; text-transform: uppercase; }
.product-body .composer-field .control { min-height: 46px; padding: 0 34px 0 12px; border: 1px solid var(--separator); border-radius: 10px; background: var(--fill-primary); color: var(--text); font-size: 14px !important; box-shadow: none; }
.product-body .composer-tip { display: flex; grid-column: 1 / -1; align-items: flex-start; gap: 8px; margin: 4px 2px 0; color: var(--muted); font-size: 12px !important; line-height: 1.45; }
.product-body .composer-tip svg { width: 17px; height: 17px; flex: none; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.product-body .composer-submit { display: none; }

/* Welcome and empty states */
.product-body .member-welcome { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: center; margin-top: 18px; padding: 16px; border: 1px solid color-mix(in srgb, var(--success) 35%, var(--separator)); border-radius: 12px; background: var(--mint-fill); }
.product-body .member-welcome h2 { margin: 2px 0; font-size: 19px; }
.product-body .member-welcome p { margin: 0; }
.product-body .member-welcome-action { color: var(--accent); font-weight: 600; text-decoration: none; }
.product-body .member-welcome-index { display: none; }
.product-body .empty-state { display: grid; place-content: center; min-height: 280px; gap: 6px; text-align: center; color: var(--muted); }
.product-body .empty-state b { color: var(--text); font-size: 20px; }

/* Personal Page: editorial modules using the same semantic system */
.product-body .profile-workspace,
.profile-public-body .profile-workspace {
  height: 100%;
  overflow-y: auto;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-system);
}
.product-body .profile-canvas,
.profile-public-body .profile-canvas { padding: 26px; background: var(--bg); }
.product-body .profile-canvas-inner,
.profile-public-body .profile-canvas-inner { width: min(1180px, 100%); margin: 0 auto; }
.product-body .profile-preview-bar,
.profile-public-body .profile-preview-bar { display: flex; align-items: center; justify-content: space-between; margin: 0 0 18px; padding: 0 0 14px; border-bottom: 1px solid var(--separator); color: var(--muted); }
.product-body .profile-preview-bar > span:first-child,
.profile-public-body .profile-preview-bar > span:first-child { color: var(--text); font-size: 28px !important; font-weight: 700; letter-spacing: -0.03em; text-transform: none; }
.product-body .profile-preview-grid,
.profile-public-body .profile-preview-grid { display: grid; grid-template-columns: 168px minmax(0, 1fr) 280px; gap: 18px; width: 100%; max-width: none; padding: 0; border: 0; background: transparent; box-shadow: none; }
.product-body .place-hardware-rail,
.profile-public-body .place-hardware-rail { position: sticky; top: 0; align-self: start; display: grid; gap: 14px; }
.product-body .place-hardware-nav,
.profile-public-body .place-hardware-nav { overflow: hidden; border: 1px solid var(--separator); border-radius: 12px; background: var(--sidebar); box-shadow: none; }
.product-body .place-hardware-nav a,
.profile-public-body .place-hardware-nav a { display: flex; min-height: 44px; align-items: center; padding: 0 12px; border-bottom: 1px solid var(--separator); color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1.25; text-decoration: none; }
.product-body .place-hardware-nav a:last-child,
.profile-public-body .place-hardware-nav a:last-child { border-bottom: 0; }
.product-body .place-hardware-nav a:hover,
.profile-public-body .place-hardware-nav a:hover { background: var(--fill-secondary); color: var(--text); }
.product-body .place-hardware-nav a i,
.product-body .place-hardware-nav a b,
.profile-public-body .place-hardware-nav a i,
.profile-public-body .place-hardware-nav a b { display: none; }
.product-body .place-atmosphere-module,
.profile-public-body .place-atmosphere-module { display: grid; gap: 6px; padding: 12px; border: 1px solid var(--separator); border-radius: 12px; background: var(--sidebar); box-shadow: none; }
.product-body .place-atmosphere-module > span,
.profile-public-body .place-atmosphere-module > span { color: var(--muted); font-size: 12px; }
.product-body .place-atmosphere-module output,
.profile-public-body .place-atmosphere-module output { color: var(--text); font-size: 13px; font-weight: 600; }
.product-body .place-atmosphere-form,
.profile-public-body .place-atmosphere-form { margin: 0; }
.product-body .place-theme-select,
.profile-public-body .place-theme-select { width: 100%; min-height: 40px; padding: 0 10px; border: 1px solid var(--separator); border-radius: 9px; background: var(--fill-primary); color: var(--text); font-size: 12px; }
.product-body .place-speaker-grille,
.profile-public-body .place-speaker-grille { display: none; }

.product-body .profile-place.phone-shell,
.profile-public-body .profile-place.phone-shell { width: 100%; height: auto; min-height: 0; max-width: none; overflow: hidden; padding: 0; border: 1px solid var(--separator); border-radius: 14px; background: var(--bg); color: var(--text); box-shadow: none; }
.product-body .profile-place.phone-shell::before,
.product-body .profile-place.phone-shell::after,
.profile-public-body .profile-place.phone-shell::before,
.profile-public-body .profile-place.phone-shell::after { display: none; }
.product-body .place-content.phone-content,
.profile-public-body .place-content.phone-content { display: flex; flex-direction: column; gap: 0; padding: 0; background: var(--bg); background-image: none; }
.product-body .place-cover,
.profile-public-body .place-cover { height: 210px; overflow: hidden; border-bottom: 1px solid var(--separator); }
.product-body .place-cover img,
.profile-public-body .place-cover img { width: 100%; height: 100%; object-fit: cover; }
.product-body .place-identity,
.profile-public-body .place-identity { display: grid; grid-template-columns: 110px minmax(0, 1fr); gap: 24px; margin: 0; padding: 26px; border: 0; border-bottom: 1px solid var(--separator); border-radius: 0; background: transparent; box-shadow: none; }
.product-body .place-id-badge,
.profile-public-body .place-id-badge { min-height: 0; padding: 14px; border: 1px solid var(--separator); border-radius: 10px; background: var(--sidebar); box-shadow: none; }
.product-body .place-id-badge > .ident-badge,
.profile-public-body .place-id-badge > .ident-badge { margin: 6px auto 16px; }
.product-body .place-id-badge > strong,
.product-body .place-id-badge > .place-badge-handle,
.product-body .place-id-badge > .place-badge-role,
.profile-public-body .place-id-badge > strong,
.profile-public-body .place-id-badge > .place-badge-handle,
.profile-public-body .place-id-badge > .place-badge-role { display: block; overflow: hidden; margin-top: 3px; font-size: 12px; text-align: center; text-overflow: ellipsis; white-space: nowrap; }
.product-body .place-id-badge > .place-badge-handle,
.product-body .place-id-badge > .place-badge-role,
.profile-public-body .place-id-badge > .place-badge-handle,
.profile-public-body .place-id-badge > .place-badge-role { color: var(--muted); }
.product-body .place-intro,
.profile-public-body .place-intro { min-width: 0; padding: 0; }
.product-body .place-intro h1,
.profile-public-body .place-intro h1 { margin: 0; font-size: clamp(34px, 5vw, 52px) !important; font-weight: 700; line-height: 1.05; letter-spacing: -0.04em; text-shadow: none; }
.product-body .place-role,
.profile-public-body .place-role { margin: 6px 0 0; color: var(--secondary); font-size: 16px; font-weight: 500; }
.product-body .profile-status,
.profile-public-body .profile-status { display: flex; align-items: center; gap: 8px; margin: 16px 0 0; padding: 9px 11px; border: 1px solid color-mix(in srgb, var(--success) 35%, var(--separator)); border-radius: 9px; background: var(--mint-fill); box-shadow: none; }
.product-body .profile-status i,
.profile-public-body .profile-status i { width: 8px; height: 8px; border-radius: 50%; background: var(--muted); }
.product-body .profile-status i.is-online,
.profile-public-body .profile-status i.is-online { background: var(--success); }
.product-body .profile-bio,
.profile-public-body .profile-bio { max-width: 48rem; margin: 15px 0 0; color: var(--text); font-size: 16px; line-height: 1.6; }
.product-body .profile-stats,
.profile-public-body .profile-stats { display: none; }

.product-body .phone-module,
.profile-public-body .phone-module { margin: 0; padding: 22px 26px; border: 0; border-bottom: 1px solid var(--separator); border-radius: 0; background: transparent; box-shadow: none; }
.product-body .module-heading,
.profile-public-body .module-heading { display: flex; align-items: baseline; justify-content: space-between; gap: 12px; min-height: 0; margin: 0 0 16px; padding: 0; border: 0; color: var(--text); font-size: 20px; font-weight: 650; letter-spacing: -0.025em; text-transform: none; }
.product-body .module-heading::before,
.profile-public-body .module-heading::before { display: none; }
.product-body .module-heading small,
.profile-public-body .module-heading small { color: var(--muted); font-size: 12px; font-weight: 400; }
.product-body .moment-card,
.product-body .place-links-grid > a,
.product-body .watch-card,
.product-body .music-card,
.product-body .place-card,
.product-body .story-note,
.product-body .journal-timeline article,
.product-body .edition-piece,
.profile-public-body .moment-card,
.profile-public-body .place-links-grid > a,
.profile-public-body .watch-card,
.profile-public-body .music-card,
.profile-public-body .place-card,
.profile-public-body .story-note,
.profile-public-body .journal-timeline article,
.profile-public-body .edition-piece { border: 1px solid var(--separator); border-radius: 12px; background: var(--sidebar); box-shadow: none; }
.product-body .moments-bento,
.profile-public-body .moments-bento { display: grid !important; grid-template-columns: repeat(3, minmax(0, 1fr)) !important; grid-auto-rows: 178px !important; gap: 10px !important; overflow: visible !important; }
.product-body .moment-card,
.profile-public-body .moment-card { grid-area: auto !important; min-width: 0 !important; min-height: 0 !important; }
.product-body .moment-card button,
.profile-public-body .moment-card button { height: 100%; }
.product-body .moment-card img,
.profile-public-body .moment-card img { width: 100%; height: 100%; object-fit: cover; }
.product-body .moment-card figcaption,
.profile-public-body .moment-card figcaption { padding: 10px; background: color-mix(in srgb, var(--bg) 88%, transparent); }
.product-body .moment-card figcaption span,
.product-body .moment-card figcaption p,
.profile-public-body .moment-card figcaption span,
.profile-public-body .moment-card figcaption p { display: none; }
.product-body .place-links-grid,
.profile-public-body .place-links-grid,
.product-body .watching-grid,
.profile-public-body .watching-grid,
.product-body .curated-grid,
.profile-public-body .curated-grid,
.product-body .story-note-grid,
.profile-public-body .story-note-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.product-body .place-links-grid > a,
.profile-public-body .place-links-grid > a { min-height: 78px; padding: 10px; text-decoration: none; }
.product-body .watch-card,
.profile-public-body .watch-card,
.product-body .music-card,
.profile-public-body .music-card { overflow: hidden; }
.product-body .watch-screen,
.profile-public-body .watch-screen { height: 160px; border-radius: 10px 10px 0 0; }
.product-body .watch-screen img,
.profile-public-body .watch-screen img,
.product-body .music-art img,
.profile-public-body .music-art img { width: 100%; height: 100%; object-fit: cover; }
.product-body .music-card,
.profile-public-body .music-card { display: grid; grid-template-columns: 118px minmax(0, 1fr); }
.product-body .music-art,
.profile-public-body .music-art { min-height: 118px; }
.product-body .music-copy,
.profile-public-body .music-copy,
.product-body .watch-card,
.profile-public-body .watch-card,
.product-body .place-card-copy,
.profile-public-body .place-card-copy,
.product-body .story-note-copy,
.profile-public-body .story-note-copy { padding: 14px; }

.product-body .profile-launchpad,
.product-body .profile-conversion-aside,
.profile-public-body .profile-launchpad,
.profile-public-body .profile-conversion-aside { position: sticky; top: 0; align-self: start; display: grid; gap: 14px; padding: 16px; border: 1px solid var(--separator); border-radius: 12px; background: var(--sidebar); box-shadow: none; }
.product-body .profile-launchpad h2,
.product-body .profile-cta-card h2,
.profile-public-body .profile-launchpad h2,
.profile-public-body .profile-cta-card h2 { margin: 0; font-size: 22px !important; letter-spacing: -0.025em; }
.product-body .profile-launchpad p,
.product-body .profile-cta-card p,
.profile-public-body .profile-launchpad p,
.profile-public-body .profile-cta-card p { color: var(--muted); }
.product-body .profile-launch-stats,
.profile-public-body .profile-launch-stats { display: none; }
.product-body .profile-share-actions,
.profile-public-body .profile-share-actions { display: grid; grid-template-columns: minmax(0, 1fr) !important; gap: 8px; }
.product-body .profile-share-actions button,
.product-body .profile-share-actions a,
.profile-public-body .profile-share-actions button,
.profile-public-body .profile-share-actions a { display: flex; min-height: 42px; align-items: center; justify-content: center; border: 0; border-radius: 10px; background: var(--accent); color: #fff; font-weight: 600; text-decoration: none; box-shadow: none; }
.product-body .profile-share-actions button,
.product-body .profile-share-actions a,
.profile-public-body .profile-share-actions button,
.profile-public-body .profile-share-actions a { padding: 0 12px; font-size: 12px; line-height: 1.2; text-transform: none; }
.product-body .profile-launchpad label,
.profile-public-body .profile-launchpad label { display: grid; gap: 7px; color: var(--muted); font-size: 11px; font-weight: 550; }
.product-body .profile-launchpad input,
.profile-public-body .profile-launchpad input { width: 100%; min-height: 42px; padding: 0 10px; border: 1px solid var(--separator); border-radius: 9px; background: var(--fill-primary); color: var(--text); }
.product-body .launchpad-index,
.product-body .launchpad-note,
.profile-public-body .launchpad-index,
.profile-public-body .launchpad-note { display: none !important; }
.product-body .profile-launchpad::before,
.product-body .profile-launchpad::after,
.profile-public-body .profile-launchpad::before,
.profile-public-body .profile-launchpad::after { display: none !important; content: none !important; }

.product-body .profile-editor,
.profile-public-body .profile-editor { margin-top: 24px; border: 1px solid var(--separator); border-radius: 14px; background: var(--bg); box-shadow: none; }
.product-body .profile-editor-bar,
.profile-public-body .profile-editor-bar { background: var(--sidebar); border-bottom: 1px solid var(--separator); }
.product-body .studio-grid .editor-module,
.profile-public-body .studio-grid .editor-module,
.product-body .enrichment-note,
.product-body .media-cover-picker,
.product-body .media-cover-preview,
.product-body .module-order-row { border-color: var(--separator); border-radius: 10px; background: var(--sidebar); box-shadow: none; }

/* Shared settings/directory pages inherit a calm canvas */
.product-body .settings-layout,
.product-body .directory-layout,
.product-body .people-shell,
.product-body .store-shell,
.product-body .analytics-shell,
.product-body .admin-shell { height: 100%; overflow-y: auto; background: var(--bg); color: var(--text); }

/* Responsive */
@media (max-width: 1180px) {
  .product-body .app-frame { grid-template-columns: 174px minmax(0, 1fr); }
  .product-body .feed-layout,
  .product-body .now-shell { grid-template-columns: minmax(31rem, 1fr) minmax(20rem, 26rem) !important; }
  .product-body .profile-preview-grid,
  .profile-public-body .profile-preview-grid { grid-template-columns: 150px minmax(0, 1fr); }
  .product-body .profile-launchpad,
  .product-body .profile-conversion-aside,
  .profile-public-body .profile-launchpad,
  .profile-public-body .profile-conversion-aside { position: static; grid-column: 2; }
}

@media (max-width: 900px) {
  .product-body .app-frame { grid-template-columns: 1fr; }
  .product-body .app-rail { display: none; }
  .product-body .app-stage { padding-bottom: calc(64px + env(safe-area-inset-bottom, 0px)); }
  .product-body .mobile-app-nav {
    position: fixed;
    z-index: 80;
    right: 0;
    bottom: 0;
    left: 0;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    min-height: calc(62px + env(safe-area-inset-bottom, 0px));
    padding: 5px 8px calc(5px + env(safe-area-inset-bottom, 0px));
    border-top: 1px solid var(--separator);
    background: color-mix(in srgb, var(--sidebar) 94%, transparent);
  }
  .product-body .mobile-app-nav a { display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 2px; min-height: 48px; color: var(--muted); font-size: 11px; text-decoration: none; }
  .product-body .mobile-app-nav svg { width: 22px; height: 22px; }
  .product-body .mobile-app-nav a.is-active,
  .product-body .mobile-app-nav a.nav-tab-active { color: var(--accent); }
  .product-body .feed-layout,
  .product-body .now-shell { grid-template-columns: 1fr !important; }
  .product-body .thread-panel { display: none; border-left: 0; }
  .product-body .thread-panel.mobile-thread-open,
  .product-body .thread-panel:has([data-thread-content]) { display: flex; }
  .product-body .now-shell:has(#thread-panel [data-thread-content]) .feed-main,
  body.mobile-thread-visible .feed-main { display: none; }
  .product-body .profile-preview-grid,
  .profile-public-body .profile-preview-grid { grid-template-columns: 1fr; }
  .product-body .place-hardware-rail,
  .profile-public-body .place-hardware-rail { display: none; }
  .product-body .profile-launchpad,
  .product-body .profile-conversion-aside,
  .profile-public-body .profile-launchpad,
  .profile-public-body .profile-conversion-aside { grid-column: 1; }
}

@media (max-width: 640px) {
  .product-body .feed-toolbar { padding: 20px 16px 0; }
  .product-body .feed-heading h1,
  .product-body .now-title { font-size: 31px; }
  .product-body .feed-search { display: none; }
  .product-body .feed-source-tabs { display: grid; width: 100%; }
  .product-body .feed-source-tabs a { min-width: 0; }
  .product-body .feed-stream-inner { padding: 0 16px 36px; }
  .product-body .inbox-post-head { display: grid; }
  .product-body .post-context { justify-content: flex-start; }
  .product-body .inbox-actions { flex-wrap: wrap; }
  .product-body .inbox-actions .open-room-action { margin-left: 0; }
  .product-body .action-star-label { display: none; }
  .product-body .post-composer-modal { width: 100%; max-height: 92dvh; margin: auto 0 0; border-right: 0; border-bottom: 0; border-left: 0; border-radius: 16px 16px 0 0; }
  .product-body .composer-controls { grid-template-columns: 1fr; }
  .product-body .profile-canvas,
  .profile-public-body .profile-canvas { padding: 12px; }
  .product-body .place-identity,
  .profile-public-body .place-identity { grid-template-columns: 1fr; padding: 20px; }
  .product-body .place-id-badge,
  .profile-public-body .place-id-badge { display: none; }
  .product-body .phone-module,
  .profile-public-body .phone-module { padding: 20px; }
  .product-body .moments-bento,
  .profile-public-body .moments-bento { grid-template-columns: 1fr 1fr !important; grid-auto-rows: 150px !important; }
  .product-body .place-links-grid,
  .profile-public-body .place-links-grid,
  .product-body .watching-grid,
  .profile-public-body .watching-grid,
  .product-body .curated-grid,
  .profile-public-body .curated-grid,
  .product-body .story-note-grid,
  .profile-public-body .story-note-grid { grid-template-columns: 1fr; }
  .product-body .music-card,
  .profile-public-body .music-card { grid-template-columns: 92px minmax(0, 1fr); }
  .product-body .thread-page-modules { grid-template-columns: 1fr; }
  .product-body .thread-page-modules article { grid-column: 1; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* Ping fidelity pass -------------------------------------------------------
   The app is one composed object at wide widths. The earlier fluid shell let
   the feed canvas drift away from both the rail and the Room on large screens. */
.product-body {
  --ping-shell-max: 1760px;
  background: color-mix(in srgb, var(--sidebar) 58%, var(--bg));
}

.product-body .app-frame {
  grid-template-columns: 220px minmax(0, 1fr);
  width: min(100%, var(--ping-shell-max));
  margin-inline: auto;
  border-inline: 1px solid var(--separator);
  background: var(--bg);
}

.product-body .app-rail {
  padding: 32px 22px 22px;
}

.product-body .app-rail-brand {
  width: 58px;
  height: 72px;
  margin: 0 18px 48px;
}

.product-body .app-rail-nav { gap: 8px; }
.product-body .app-rail-link {
  gap: 14px;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 12px;
  font-size: 15px;
}
.product-body .app-rail-link svg { width: 22px; height: 22px; }
.product-body .app-rail-link.is-active,
.product-body .app-rail-link.nav-tab-active {
  background: color-mix(in srgb, var(--accent) 13%, var(--sidebar));
  border-left: 0 !important;
  box-shadow: none;
}

.product-body .app-rail-end { gap: 12px; }
.product-body .app-rail-join {
  gap: 12px;
  min-height: 56px;
  padding: 12px 10px 0;
  border-top: 1px solid var(--separator);
  border-bottom: 0;
  color: var(--text);
  font-size: 14px !important;
}
.product-body .app-rail-join svg,
.product-body .rail-theme-choice svg {
  width: 22px;
  height: 22px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.product-body .theme-picker {
  display: grid;
  gap: 7px;
  padding: 11px 8px;
  border: 1px solid var(--separator);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card) 45%, transparent);
}
.product-body .theme-picker-label {
  padding: 0 5px 2px;
  color: var(--muted);
  font-size: 10px !important;
  font-weight: 650;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.product-body .rail-theme-list { display: grid; gap: 2px; }
.product-body .rail-theme-list form { margin: 0; }
.product-body .rail-theme-list form:has(input[value="light"]) { order: 1; }
.product-body .rail-theme-list form:has(input[value="dark"]) { order: 2; }
.product-body .rail-theme-list form:has(input[value="san-francisco"]) { order: 3; }
.product-body .rail-theme-list form:has(input[value="santa-monica"]) { order: 4; }
.product-body .rail-theme-list form:has(input[value="tokyo-night"]) { order: 5; }
.product-body .rail-theme-choice {
  appearance: none;
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) 23px;
  gap: 9px;
  width: 100%;
  min-height: 38px;
  align-items: center;
  padding: 0 7px;
  border: 0;
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  text-align: left;
  cursor: pointer;
}
.product-body .rail-theme-choice:hover { background: var(--fill-primary); color: var(--text); }
.product-body .rail-theme-choice.hero-skin-dot-active {
  background: var(--accent-fill);
  color: var(--text);
  font-weight: 600;
}
.product-body .rail-theme-choice > span {
  position: static;
  display: block;
  min-width: 0;
  transform: none;
  color: inherit;
  font-size: 13px !important;
  overflow-wrap: normal;
}
.product-body .rail-theme-choice > i {
  position: relative;
  display: block;
  width: 23px;
  height: 17px;
  overflow: hidden;
  border: 1px solid color-mix(in srgb, var(--theme-choice-accent) 50%, var(--separator));
  border-radius: 5px;
  background: linear-gradient(135deg, var(--theme-choice-bg) 0 54%, var(--theme-choice-secondary) 54% 74%, var(--theme-choice-accent) 74%);
}
.product-body .rail-theme-choice.hero-skin-dot-active > i::after {
  content: "";
  position: absolute;
  right: 4px;
  bottom: 4px;
  width: 6px;
  height: 3px;
  transform: rotate(-45deg);
  border-bottom: 1.5px solid #fff;
  border-left: 1.5px solid #fff;
}
.product-body .app-rail-account {
  display: grid;
  gap: 7px;
  padding: 12px 0 0;
  border-top: 1px solid var(--separator);
}
.product-body .app-rail-account .app-rail-user {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) 15px;
  gap: 9px;
  min-height: 56px;
  align-items: center;
  padding: 7px 8px;
  border: 1px solid var(--separator);
  border-radius: 10px;
  background: color-mix(in srgb, var(--card) 46%, transparent);
  color: var(--text);
  text-decoration: none;
}
.product-body .app-rail-account .app-rail-user:hover { border-color: color-mix(in srgb, var(--accent) 45%, var(--separator)); background: var(--fill-primary); }
.product-body .app-rail-user-copy { display: grid; min-width: 0; gap: 1px; }
.product-body .app-rail-user-copy b,
.product-body .app-rail-user-copy small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-body .app-rail-user-copy b { font-size: 12px !important; font-weight: 680; }
.product-body .app-rail-user-copy small { color: var(--muted); font-size: 10px !important; }
.product-body .app-rail-user > svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: var(--muted);
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-body .app-rail-account-actions { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.product-body .app-rail-account-actions form { margin: 0; }
.product-body .app-rail-account-actions a,
.product-body .app-rail-account-actions button {
  appearance: none;
  display: inline-flex;
  width: 100%;
  min-height: 35px;
  align-items: center;
  justify-content: center;
  gap: 6px;
  padding: 0 7px;
  border: 1px solid var(--separator);
  border-radius: 8px;
  background: transparent;
  color: var(--muted);
  font-size: 10px !important;
  text-decoration: none;
  cursor: pointer;
}
.product-body .app-rail-account-actions a:hover,
.product-body .app-rail-account-actions button:hover { border-color: var(--accent); color: var(--text); background: var(--fill-primary); }
.product-body .app-rail-account-actions svg {
  width: 15px;
  height: 15px;
  flex: none;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.55;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-body .app-rail-account .app-rail-admin { justify-self: center; color: var(--muted); font-size: 10px !important; text-decoration: none; }

.product-body .feed-layout,
.product-body .now-shell {
  grid-template-columns: minmax(0, 3fr) minmax(440px, 2fr) !important;
}
.product-body .feed-main { background: var(--bg); }
.product-body .feed-canvas {
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
  background: var(--bg);
}
.product-body .thread-panel {
  border-left: 1px solid var(--separator);
  background: color-mix(in srgb, var(--sidebar) 76%, var(--bg));
}
.product-body .feed-toolbar {
  padding: 34px 38px 0;
  background: var(--bg);
}
.product-body .feed-heading h1,
.product-body .now-title {
  font-size: 38px !important;
  font-weight: 730;
  letter-spacing: -.045em;
}
.product-body .feed-heading p { margin-top: 4px; font-size: 14px !important; }
.product-body .feed-search { display: none; }
.product-body .feed-composer-trigger {
  min-height: 56px;
  margin: 24px 0 18px;
  padding: 7px 8px 7px 17px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--sidebar) 54%, var(--bg));
}
.product-body .feed-composer-trigger b {
  min-height: 40px;
  padding-inline: 17px;
  border-radius: 8px;
  font-size: 14px !important;
}
.product-body .feed-composer-trigger > span { font-size: 14px !important; }
.product-body .feed-source-tabs {
  gap: 2px;
  margin-bottom: 16px;
  padding: 3px;
  border-radius: 9px;
}
.product-body .feed-source-tabs a {
  min-width: 96px;
  min-height: 35px;
  border-radius: 7px;
  font-size: 13px !important;
}
.product-body #feed-stream,
.product-body .now-scroll { flex: 1; }
.product-body .feed-main #feed-stream { height: auto; }
.product-body .feed-stream-inner { padding: 0 38px 56px; }
.product-body .now-section > h2 {
  padding: 22px 2px 11px;
  color: var(--text);
  font-size: 14px !important;
  font-weight: 700;
  letter-spacing: .08em;
}
.product-body .now-section-earlier > h2 { padding-top: 34px; }
.product-body .now-rows { gap: 10px; }

.product-body .inbox-row,
.product-body .inbox-row:first-child {
  grid-template-columns: 50px minmax(0, 1fr) auto;
  gap: 16px;
  padding: 17px 18px;
  border: 1px solid var(--separator) !important;
  border-radius: 12px !important;
  background: color-mix(in srgb, var(--card) 82%, var(--bg)) !important;
  transition: border-color .15s ease, background-color .15s ease;
}
.product-body .inbox-row:hover {
  border-color: color-mix(in srgb, var(--text) 20%, var(--separator)) !important;
  background: color-mix(in srgb, var(--card) 92%, var(--bg)) !important;
}
.product-body .inbox-row-active,
.product-body .inbox-row.post-selected {
  width: 100%;
  margin-inline: 0;
  padding-inline: 18px;
  border: 1px solid var(--separator) !important;
  background: color-mix(in srgb, var(--accent) 5%, var(--card)) !important;
}
.product-body .inbox-row-read { opacity: .72; }
.product-body .inbox-row-read:hover { opacity: 1; }
.product-body .inbox-row.now-post-full {
  grid-template-columns: 50px minmax(0, 1fr);
  padding-block: 20px 14px;
}
.product-body .inbox-post-head { align-items: center; }
.product-body .inbox-post-head b {
  font-size: 13px !important;
  font-weight: 720;
  letter-spacing: .065em;
  text-transform: uppercase;
}
.product-body .inbox-post-head small,
.product-body .inbox-meta time { font-size: 11px !important; font-variant-numeric: tabular-nums; }
.product-body .inbox-post-head small { display: inline-flex; align-items: baseline; gap: 6px; }
.product-body .inbox-post-head small i { color: color-mix(in srgb, var(--muted) 55%, transparent); font-style: normal; }
.product-body .post-context { gap: 7px; }
.product-body .post-context em {
  min-height: 24px;
  padding-inline: 8px;
  border-radius: 6px;
  font-size: 10px !important;
  font-weight: 650;
}
.product-body .inbox-category {
  margin: 8px 0 3px;
  color: var(--accent);
  font-size: 11px !important;
  font-weight: 680;
  letter-spacing: .02em;
}
.product-body .inbox-headline {
  display: block;
  margin: 3px 0 2px;
  overflow: hidden;
  color: var(--text);
  font-size: 15px !important;
  font-weight: 690;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-body .now-post-full .inbox-headline {
  margin: 5px 0 6px;
  font-size: 22px !important;
  line-height: 1.2;
  letter-spacing: -.03em;
  white-space: normal;
}
.product-body .inbox-snippet { font-size: 14px !important; line-height: 1.5; }
.product-body .now-post-full .inbox-snippet {
  color: color-mix(in srgb, var(--text) 88%, var(--muted));
  font-size: 15px !important;
  line-height: 1.58;
}
.product-body .now-post-full .inbox-open-copy:not(:has(.inbox-headline)) .inbox-snippet {
  max-width: 48rem;
  margin-top: 9px;
  color: var(--text);
  font-size: 17px !important;
  line-height: 1.52;
  letter-spacing: -.012em;
}
.product-body .inbox-actions {
  gap: 2px;
  margin-top: 4px;
  padding-top: 12px;
}
.product-body .inbox-actions button,
.product-body .inbox-row-active .inbox-actions button {
  min-height: 36px;
  gap: 7px;
  padding-inline: 9px;
  font-size: 11px !important;
}
.product-body .inbox-actions svg { width: 19px; height: 19px; }
.product-body .inbox-actions .open-room-action { padding-right: 0; }

.product-body .inbox-row .link-preview {
  grid-template-columns: 190px minmax(0, 1fr);
  min-height: 112px;
  margin-top: 17px;
  border-radius: 10px;
  background: color-mix(in srgb, var(--sidebar) 74%, var(--bg));
}
.product-body .inbox-row .link-preview-image { min-height: 112px; }
.product-body .inbox-row .link-preview-copy { padding: 12px 14px; }
.product-body .inbox-row-active .link-preview,
.product-body .inbox-row.post-selected .link-preview {
  grid-template-columns: 1fr;
}
.product-body .inbox-row-active .link-preview-image,
.product-body .inbox-row.post-selected .link-preview-image {
  height: clamp(150px, 18vw, 210px);
}

.product-body .ident-badge,
.thread-page-preview .ident-badge {
  width: 46px !important;
  height: 60px !important;
  padding: 4px 4px 11px !important;
  border-radius: 6px !important;
  background: var(--card) !important;
}
.product-body .ident-md,
.thread-page-preview .ident-md { width: 48px !important; height: 62px !important; }
.product-body .ident-badge::before,
.thread-page-preview .ident-badge::before {
  top: -7px;
  width: 7px;
  height: 10px;
}
.product-body .ident-badge::after,
.thread-page-preview .ident-badge::after {
  right: -1px;
  bottom: -1px;
  left: -1px;
  height: 9px;
  border-radius: 0 0 6px 6px;
}
.product-body .ident-xs {
  width: 34px !important;
  height: 45px !important;
  padding: 3px 3px 8px !important;
  border-radius: 5px !important;
}
.product-body .ident-xs::before { top: -5px; width: 6px; height: 8px; }
.product-body .ident-xs::after { height: 7px; border-radius: 0 0 5px 5px; }
.product-body .ident-photo,
.thread-page-preview .ident-photo {
  width: 100% !important;
  height: 100% !important;
  border: 0 !important;
  border-radius: 3px !important;
  object-fit: cover;
  object-position: center 24%;
}
.product-body .ident-initials,
.thread-page-preview .ident-initials { font-size: 15px !important; }

.product-body .thread-panel-head {
  min-height: 78px;
  padding: 16px 32px;
}
.product-body .thread-panel-head > div { gap: 16px; }
.product-body .thread-panel-head h2 { font-size: 25px !important; }
.product-body .room-status { color: var(--warning); font-size: 12px !important; }
.product-body .room-status::before,
.product-body .room-status i { display: none; }
.product-body .room-status svg {
  width: 17px;
  height: 17px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-body .thread-minimize { font-size: 11px !important; }
.product-body .thread-body { padding: 20px 32px 30px; }
.product-body .thread-msg { gap: 13px; margin-bottom: 17px; }
.product-body .thread-stack { max-width: 86%; gap: 6px; }
.product-body .thread-who {
  padding-inline: 4px;
  color: var(--text);
  font-size: 11px !important;
  font-weight: 680;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.product-body .thread-bubble {
  padding: 13px 15px 10px;
  border-radius: 11px !important;
  background: color-mix(in srgb, var(--card) 72%, var(--bg)) !important;
}
.product-body .thread-msg-own .thread-bubble { background: color-mix(in srgb, var(--accent) 10%, var(--card)) !important; }
.product-body .thread-bubble-head { display: flex; flex-wrap: wrap; align-items: baseline; justify-content: space-between; gap: 7px; margin-bottom: 5px; }
.product-body .thread-bubble-head b { color: var(--text); font-size: 11px !important; font-weight: 680; letter-spacing: .045em; text-transform: uppercase; }
.product-body .thread-bubble p { font-size: 14px !important; line-height: 1.5; }
.product-body .thread-when { font-size: 11px !important; }
.product-body .thread-origin {
  display: grid;
  grid-template-columns: 49px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  margin: 0 0 18px;
  padding: 0;
  border: 0 !important;
  border-bottom: 0 !important;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}
.product-body .thread-origin-content {
  min-width: 0;
  padding: 13px 15px;
  border: 0;
  border-radius: 11px;
  background: color-mix(in srgb, var(--accent) 8%, var(--card));
  box-shadow: none;
}
.product-body .thread-origin-head { display: flex; flex-wrap: wrap; align-items: baseline; gap: 9px; }
.product-body .thread-origin-head b { color: var(--text); font-size: 11px !important; font-weight: 680; letter-spacing: .055em; text-transform: uppercase; }
.product-body .thread-origin-copy {
  margin: 7px 0 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  background-image: none !important;
  color: var(--text);
  font-size: 15px !important;
  line-height: 1.52 !important;
  box-shadow: none !important;
}
.product-body .thread-page-preview { margin-top: 28px; padding-top: 24px; }
.product-body .thread-page-preview h3 { font-size: 20px !important; }
.product-body .thread-page-preview header small,
.product-body .thread-page-preview header p,
.product-body .thread-page-preview header a,
.product-body .preview-module-label,
.product-body .thread-page-modules b,
.product-body .thread-page-modules small { font-size: 12px !important; }
.product-body .thread-page-bio { margin: 15px 0 20px; font-size: 13px !important; line-height: 1.5; }
.product-body .thread-page-modules { border-radius: 9px; overflow: hidden; }
.product-body .thread-page-modules article { padding: 12px; }
.product-body .timeline-list p { font-size: 14px !important; line-height: 1.45; }
.product-body .timeline-list time { font-size: 11px !important; }
.product-body .thread-reply { padding: 12px 22px calc(12px + env(safe-area-inset-bottom, 0px)); }
.product-body .thread-reply .button-primary {
  width: 44px;
  padding: 0;
  border-radius: 10px;
}
.product-body .thread-reply .button-primary svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: #fff;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* Settings — the same calm product language as Ping */
.product-body .app-rail-account-actions a.nav-tab-active {
  border-color: color-mix(in srgb, var(--accent) 40%, var(--separator));
  background: var(--accent-fill);
  color: var(--accent);
}
.product-body .settings-page {
  height: 100%;
  min-height: 0;
  overflow-y: auto;
  padding: 34px 38px 72px;
  background: var(--bg) !important;
  background-image: none !important;
  color: var(--text);
}
.product-body .settings-shell { width: min(1080px, 100%); margin: 0 auto; }
.product-body .settings-hero {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: end;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0 0 24px;
  border-bottom: 1px solid var(--separator);
}
.product-body .settings-hero .eyebrow {
  margin: 0 0 4px;
  color: var(--accent);
  font-size: 10px !important;
  font-weight: 680;
  letter-spacing: .085em;
  text-transform: uppercase;
}
.product-body .settings-hero h1 {
  margin: 0;
  color: var(--text);
  font-size: 36px !important;
  font-weight: 730;
  line-height: 1.08 !important;
  letter-spacing: -.04em;
}
.product-body .settings-hero > div > p:not(.eyebrow) { max-width: 38rem; margin: 7px 0 0; color: var(--muted); font-size: 14px !important; line-height: 1.45; }
.product-body .settings-ident {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto auto;
  gap: 11px;
  align-items: center;
  min-width: 284px;
  padding: 10px 11px;
  border: 1px solid var(--separator);
  border-radius: 11px;
  background: color-mix(in srgb, var(--card) 72%, var(--bg));
  color: var(--text);
  text-decoration: none;
  box-shadow: none;
}
.product-body .settings-ident:hover { border-color: color-mix(in srgb, var(--accent) 42%, var(--separator)); background: var(--fill-secondary); }
.product-body .settings-ident span { display: grid; min-width: 0; gap: 1px; }
.product-body .settings-ident b,
.product-body .settings-ident small { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.product-body .settings-ident b { font-size: 13px !important; font-weight: 680; }
.product-body .settings-ident small { color: var(--muted); font-size: 11px !important; }
.product-body .settings-ident i { margin: 0; color: var(--accent); font-size: 11px !important; font-style: normal; font-weight: 650; letter-spacing: 0; text-transform: none; }
.product-body .settings-ident svg { width: 16px; height: 16px; fill: none; stroke: var(--muted); stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; }
.product-body .settings-notice,
.product-body .settings-error {
  width: 100%;
  max-width: none;
  margin: 16px 0 0;
  padding: 11px 13px;
  border: 1px solid var(--separator);
  border-radius: 10px;
  background: var(--fill-secondary);
  font-size: 13px !important;
}
.product-body .settings-notice { border-color: color-mix(in srgb, var(--success) 38%, var(--separator)); color: var(--success); }
.product-body .settings-error { border-color: color-mix(in srgb, #ff453a 46%, var(--separator)); color: #ff6961; }
.product-body .settings-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 340px;
  gap: 18px;
  align-items: start;
  width: 100%;
  max-width: none;
  margin: 18px 0 0;
}
.product-body .settings-profile-column,
.product-body .settings-stack { display: grid; min-width: 0; gap: 14px; }
.product-body .settings-stack { position: sticky; top: 18px; align-content: start; }
.product-body .settings-card {
  min-width: 0;
  margin: 0;
  padding: 20px;
  border: 1px solid var(--separator);
  border-radius: 12px;
  background: color-mix(in srgb, var(--card) 76%, var(--bg)) !important;
  background-image: none !important;
  color: var(--text);
  box-shadow: none !important;
}
.product-body .settings-card-head,
.product-body .danger-card > summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  margin: 0;
  padding: 0 0 14px;
  border: 0;
  border-bottom: 1px solid var(--separator);
  list-style: none;
}
.product-body .settings-card-head > span,
.product-body .danger-card > summary > span {
  display: inline-flex;
  width: auto;
  height: 24px;
  min-width: 0;
  align-items: center;
  justify-content: center;
  padding: 0 8px;
  border: 0;
  border-radius: 6px;
  background: var(--accent-fill);
  color: var(--accent);
  font-size: 9px !important;
  font-weight: 700;
  letter-spacing: .055em;
  text-transform: uppercase;
}
.product-body .settings-card-head div,
.product-body .danger-card > summary div { min-width: 0; }
.product-body .settings-card-head p,
.product-body .danger-card > summary p { margin: 0; color: var(--muted); font-size: 9px !important; font-weight: 650; letter-spacing: .07em; line-height: 1.3; text-transform: uppercase; }
.product-body .settings-card-head h2,
.product-body .danger-card > summary h2 { margin: 2px 0 0; overflow: visible; color: var(--text); font-size: 18px !important; font-weight: 680; line-height: 1.25 !important; letter-spacing: -.02em; text-overflow: clip; white-space: normal; }
.product-body .settings-card-head > i,
.product-body .danger-card > summary > i { color: var(--muted); font-size: 9px !important; font-style: normal; font-weight: 650; letter-spacing: .055em; text-transform: uppercase; }
.product-body .settings-card-head > .settings-safe { color: var(--success); }
.product-body .avatar-upload-current {
  display: flex;
  align-items: center;
  gap: 15px;
  margin: 16px 0 0;
  padding: 13px;
  border: 0;
  border-radius: 10px;
  background: var(--fill-secondary);
  box-shadow: none;
}
.product-body .avatar-upload-current > span:last-child { display: grid; gap: 2px; min-width: 0; }
.product-body .avatar-upload-current b { font-size: 13px !important; font-weight: 680; }
.product-body .avatar-upload-current small { max-width: 32rem; color: var(--muted); font-size: 12px !important; line-height: 1.4; }
.product-body .badge-color-key { display: flex; flex-wrap: wrap; gap: 8px 16px; margin: 12px 0 0; color: var(--muted); font-size: 10px !important; font-weight: 600; }
.product-body .badge-color-key span { display: inline-flex; align-items: center; gap: 6px; }
.product-body .badge-color-key i { width: 14px; height: 5px; border-radius: 999px; background: #0a84ff; }
.product-body .badge-color-key .badge-key-source { background: #30d158; }
.product-body .badge-color-key .badge-key-live { background: #ff9f0a; }
.product-body .badge-color-key .badge-key-you { background: #bf5af2; }
.product-body .settings-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0 0; }
.product-body .settings-fields label,
.product-body .danger-form label,
.product-body .settings-handle-field { display: grid; min-width: 0; gap: 6px; color: var(--muted); font-size: 10px !important; font-weight: 650; letter-spacing: .055em; line-height: 1.3; text-transform: uppercase; }
.product-body .settings-fields input,
.product-body .settings-fields textarea,
.product-body .settings-fields select,
.product-body .danger-form input,
.product-body .settings-handle-field > span {
  width: 100%;
  min-width: 0;
  margin: 0;
  padding: 0 12px;
  border: 1px solid var(--separator);
  border-radius: 10px;
  background: var(--fill-primary);
  color: var(--text);
  font-size: 14px !important;
  font-weight: 450;
  letter-spacing: normal;
  line-height: 1.4;
  text-transform: none;
  box-shadow: none;
  outline: 0;
}
.product-body .settings-fields input,
.product-body .settings-fields select,
.product-body .danger-form input { min-height: 46px; }
.product-body .settings-fields textarea { min-height: 108px; padding-block: 11px; resize: vertical; }
.product-body .settings-fields input:focus,
.product-body .settings-fields textarea:focus,
.product-body .settings-fields select:focus,
.product-body .danger-form input:focus,
.product-body .settings-handle-field > span:focus-within { border-color: color-mix(in srgb, var(--accent) 58%, var(--separator)); }
.product-body .settings-field-wide { grid-column: 1 / -1; }
.product-body .settings-readonly {
  display: grid;
  align-content: center;
  gap: 2px;
  min-height: 76px;
  padding: 11px 12px;
  border: 1px solid var(--separator-soft);
  border-radius: 10px;
  background: transparent;
}
.product-body .settings-readonly span,
.product-body .settings-email-row span { color: var(--muted); font-size: 9px !important; font-weight: 650; letter-spacing: .06em; text-transform: uppercase; }
.product-body .settings-readonly b,
.product-body .settings-email-row b { margin: 1px 0 0; color: var(--text); font-size: 13px !important; font-weight: 680; }
.product-body .settings-readonly small,
.product-body .settings-email-row small { margin: 0; color: var(--muted); font-size: 11px !important; line-height: 1.4; }
.product-body .settings-submit,
.product-body .settings-secondary-action {
  width: auto !important;
  min-height: 40px;
  margin: 16px 0 0;
  padding: 0 14px;
  border-radius: 9px;
  font-size: 12px !important;
  font-weight: 650;
}
.product-body .settings-secondary-action { border: 1px solid var(--separator); background: transparent; color: var(--text); }
.product-body .settings-secondary-action:hover { border-color: var(--accent); background: var(--fill-secondary); }
.product-body .settings-fineprint { margin: 14px 0 0; color: var(--muted); font-size: 12px !important; line-height: 1.5; }
.product-body .settings-handle-field { margin: 14px 0 0; }
.product-body .settings-handle-field > span { display: flex; min-height: 46px; align-items: center; gap: 3px; }
.product-body .settings-handle-field b { color: var(--accent); font-size: 14px !important; }
.product-body .settings-handle-field input { width: 100%; min-width: 0; min-height: 42px; padding: 0; border: 0; background: transparent; color: var(--text); font-size: 14px !important; outline: 0; }
.product-body .settings-lock-note { margin: 14px 0 0; padding: 10px 12px; border: 1px solid var(--separator); border-radius: 9px; color: var(--muted); font-size: 12px !important; }
.product-body .settings-email-row { display: grid; gap: 2px; margin: 16px 0 0; padding: 13px; border: 0; border-radius: 10px; background: var(--fill-secondary); }
.product-body .danger-card { border-color: var(--separator); }
.product-body .danger-card > summary { grid-template-columns: minmax(0, 1fr) auto; padding: 0; border-bottom: 0; cursor: pointer; }
.product-body .danger-card > summary::-webkit-details-marker { display: none; }
.product-body .danger-card > summary h2 { white-space: nowrap; }
.product-body .danger-card > summary > i { color: #ff6961; }
.product-body .danger-card[open] { border-color: color-mix(in srgb, #ff453a 46%, var(--separator)); }
.product-body .danger-card[open] > summary { padding-bottom: 14px; border-bottom: 1px solid var(--separator); }
.product-body .danger-content { margin: 14px 0 0; padding: 0; border: 0; }
.product-body .danger-content > p { margin: 0; color: var(--muted); font-size: 12px !important; line-height: 1.5; }
.product-body .danger-form { display: grid; gap: 12px; margin: 14px 0 0; }
.product-body .danger-form button { min-height: 42px; border: 0; border-radius: 9px; background: #ff453a; color: #fff; font-size: 12px !important; font-weight: 680; cursor: pointer; }

@media (max-width: 1450px) {
  .product-body .app-frame { grid-template-columns: 200px minmax(0, 1fr); }
  .product-body .app-rail { padding-inline: 16px; }
  .product-body .feed-layout,
  .product-body .now-shell { grid-template-columns: minmax(0, 3fr) minmax(390px, 2fr) !important; }
  .product-body .feed-toolbar { padding-inline: 28px; }
  .product-body .feed-stream-inner { padding-inline: 28px; }
  .product-body .thread-panel-head,
  .product-body .thread-body { padding-inline: 24px; }
}

@media (max-width: 1180px) {
  .product-body .app-frame { grid-template-columns: 174px minmax(0, 1fr); }
  .product-body .app-rail { padding-inline: 12px; }
  .product-body .app-rail-brand { margin-left: 12px; }
  .product-body .rail-theme-choice { grid-template-columns: 22px 1fr; }
  .product-body .rail-theme-choice > i { display: none; }
  .product-body .feed-layout,
  .product-body .now-shell { grid-template-columns: minmax(0, 1.45fr) minmax(350px, 1fr) !important; }
}

@media (max-width: 900px) {
  .product-body .app-frame { grid-template-columns: 1fr; width: 100%; border-inline: 0; }
  .product-body .feed-layout,
  .product-body .now-shell { grid-template-columns: 1fr !important; }
  .product-body .feed-canvas { width: 100%; }
  .product-body .settings-page { padding-inline: 24px; }
  .product-body .settings-grid { grid-template-columns: 1fr; }
  .product-body .settings-stack { position: static; }
}

@media (max-width: 640px) {
  .product-body .feed-toolbar { padding: 18px 16px 0; }
  .product-body .feed-heading h1,
  .product-body .now-title { font-size: 34px !important; }
  .product-body .feed-composer-trigger { margin-block: 17px 12px; }
  .product-body .feed-source-tabs { display: grid; margin-bottom: 12px; }
  .product-body .feed-stream-inner { padding: 0 12px 34px; }
  .product-body .now-section > h2 { padding-inline: 4px; }
  .product-body .inbox-row,
  .product-body .inbox-row:first-child,
  .product-body .inbox-row.now-post-full {
    grid-template-columns: 42px minmax(0, 1fr);
    gap: 11px;
    padding: 14px 12px;
  }
  .product-body .inbox-post-head { display: grid; }
  .product-body .post-context { margin-top: 5px; }
  .product-body .now-post-full .inbox-headline { font-size: 18px !important; }
  .product-body .inbox-actions { flex-wrap: wrap; }
  .product-body .inbox-actions .open-room-action { margin-left: 0; }
  .product-body .inbox-row .link-preview { grid-template-columns: 1fr; }
  .product-body .inbox-row .link-preview-image { max-height: 160px; }
  .product-body .ident-badge,
  .thread-page-preview .ident-badge { width: 40px !important; height: 53px !important; }
  .product-body .settings-page { padding: 22px 14px 88px; }
  .product-body .settings-hero { grid-template-columns: 1fr; gap: 17px; }
  .product-body .settings-hero h1 { font-size: 32px !important; }
  .product-body .settings-ident { width: 100%; min-width: 0; }
  .product-body .settings-card { padding: 16px; }
  .product-body .settings-card-head > i,
  .product-body .danger-card > summary > i { display: none; }
  .product-body .settings-fields { grid-template-columns: 1fr; }
  .product-body .settings-field-wide { grid-column: auto; }
  .product-body .settings-submit,
  .product-body .settings-secondary-action { width: 100% !important; justify-content: center; }
}

/* Public looking glass — a product preview, not a marketing maze */
.looking-body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-system);
  font-size: 16px;
  line-height: 1.47;
  letter-spacing: -0.011em;
  -webkit-font-smoothing: antialiased;
}
.looking-body * { box-sizing: border-box; }
.looking-body a { color: inherit; }
.looking-body :focus-visible { outline: 3px solid color-mix(in srgb, var(--accent) 62%, transparent); outline-offset: 3px; }
.looking-nav {
  position: relative;
  z-index: 4;
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: min(1280px, calc(100% - 48px));
  margin: 0 auto;
  border-bottom: 1px solid var(--separator);
}
.looking-brand { display: inline-flex; align-items: center; gap: 11px; text-decoration: none; }
.looking-brand .brand-mark { width: 28px; height: 36px; color: var(--text); }
.looking-brand > span { display: grid; line-height: 1.1; }
.looking-brand b { font-size: 15px; font-weight: 700; letter-spacing: -0.01em; }
.looking-brand small { margin-top: 3px; color: var(--muted); font-size: 10px; text-transform: uppercase; letter-spacing: .09em; }
.looking-nav nav { display: flex; align-items: center; gap: 26px; }
.looking-nav nav a { color: var(--muted); font-size: 13px; font-weight: 550; text-decoration: none; }
.looking-nav nav a:hover { color: var(--text); }
.looking-nav .looking-join { min-height: 38px; display: inline-flex; align-items: center; padding: 0 14px; border-radius: 9px; background: var(--accent); color: #fff; }
.looking-main { overflow: hidden; }
.looking-intro {
  display: grid;
  justify-items: center;
  width: min(820px, calc(100% - 40px));
  margin: 0 auto;
  padding: 84px 0 58px;
  text-align: center;
}
.looking-kicker { display: flex; align-items: center; gap: 8px; margin: 0 0 17px; color: var(--muted); font-size: 13px; font-weight: 600; }
.looking-kicker i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.looking-intro h1 { margin: 0; font-size: clamp(54px, 7.1vw, 88px); font-weight: 720; line-height: .94; letter-spacing: -.062em; }
.looking-intro h1 span { color: var(--muted); }
.looking-intro > p:not(.looking-kicker) { max-width: 650px; margin: 28px 0 0; color: var(--muted); font-size: 20px; line-height: 1.45; letter-spacing: -.022em; }
.looking-actions { display: flex; gap: 10px; margin-top: 30px; }
.looking-actions a { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 0 19px; border: 1px solid var(--separator); border-radius: 11px; color: var(--text); font-size: 14px; font-weight: 650; text-decoration: none; }
.looking-actions a:first-child { border-color: transparent; background: var(--accent); color: #fff; }
.looking-actions a:last-child:hover { background: var(--fill-primary); }
.looking-intro > small { margin-top: 19px; color: var(--muted); font-size: 12px; }

.looking-glass {
  display: grid;
  grid-template-columns: 124px minmax(500px, 1fr) minmax(320px, 388px);
  width: min(1280px, calc(100% - 48px));
  min-height: 700px;
  margin: 0 auto 120px;
  overflow: hidden;
  border: 1px solid var(--separator);
  border-radius: 18px;
  background: var(--bg);
}
.glass-rail { display: flex; flex-direction: column; min-width: 0; padding: 24px 16px; border-right: 1px solid var(--separator); background: var(--sidebar); }
.glass-logo .brand-mark { width: 32px; height: 42px; color: var(--text); }
.glass-rail nav { display: grid; gap: 6px; margin-top: 62px; }
.glass-rail nav span,
.glass-rail nav b { display: flex; min-height: 38px; align-items: center; padding: 0 10px; border-radius: 9px; color: var(--muted); font-size: 12px; font-weight: 550; }
.glass-rail nav b { background: var(--accent-fill); color: var(--accent); }
.glass-rail > small { margin-top: auto; color: var(--muted); font-size: 10px; line-height: 1.5; }
.glass-feed { min-width: 0; padding: 28px; }
.glass-feed > header { display: flex; align-items: flex-start; justify-content: space-between; gap: 20px; }
.glass-feed > header h2 { margin: 0; font-size: 34px; line-height: 1; letter-spacing: -.045em; }
.glass-feed > header p { margin: 7px 0 0; color: var(--muted); font-size: 13px; }
.glass-feed > header > span { min-width: 118px; min-height: 35px; padding: 8px 11px; border-radius: 9px; background: var(--fill-primary); color: var(--muted); font-size: 12px; }
.glass-compose { appearance: none; display: flex; width: 100%; min-height: 51px; align-items: center; justify-content: space-between; gap: 16px; margin-top: 22px; padding: 6px 6px 6px 14px; border: 1px solid var(--separator); border-radius: 11px; background: transparent; color: var(--muted); font: inherit; text-align: left; }
.glass-compose b { display: inline-flex; min-height: 37px; align-items: center; padding: 0 13px; border-radius: 8px; background: var(--accent); color: #fff; font-size: 12px; }
.glass-tabs { display: inline-flex; gap: 3px; margin: 13px 0 0; padding: 3px; border-radius: 9px; background: var(--fill-primary); }
.glass-tabs b,
.glass-tabs span { display: inline-flex; min-width: 75px; min-height: 31px; align-items: center; justify-content: center; border-radius: 7px; color: var(--muted); font-size: 12px; font-weight: 550; }
.glass-tabs b { background: var(--card); color: var(--accent); }
.glass-ping { display: grid; grid-template-columns: 42px minmax(0, 1fr); gap: 13px; padding: 18px 0; border-top: 1px solid var(--separator); }
.glass-ping:first-of-type { margin-top: 14px; }
.glass-ident { position: relative; display: grid; width: 38px; height: 49px; place-items: center; border: 1px solid color-mix(in srgb, var(--text) 42%, var(--border)); border-radius: 6px; background: var(--card); color: var(--text); }
.glass-ident::before { content: ""; position: absolute; top: -7px; width: 7px; height: 10px; border-radius: 2px 2px 0 0; background: var(--text); }
.glass-ident::after { content: ""; position: absolute; right: -1px; bottom: -1px; left: -1px; height: 8px; border-radius: 0 0 6px 6px; background: var(--accent); }
.glass-ident b { font-size: 12px; }
.glass-ident-sunset::after { background: var(--secondary); }
.glass-ping > div > header { display: flex; flex-wrap: wrap; align-items: center; gap: 6px; }
.glass-ping header b { font-size: 13px; }
.glass-ping header small { color: var(--muted); font-size: 10px; }
.glass-ping header em { margin-left: auto; padding: 3px 6px; border: 1px solid currentColor; border-radius: 6px; color: var(--success); font-size: 9px; font-style: normal; }
.glass-ping h3 { margin: 8px 0 3px; font-size: 17px; line-height: 1.3; letter-spacing: -.018em; }
.glass-ping p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.45; }
.glass-ping footer { display: flex; align-items: center; gap: 15px; margin-top: 13px; padding-top: 10px; border-top: 1px solid var(--separator-soft); color: var(--muted); font-size: 10px; }
.glass-ping footer b { margin-left: auto; color: var(--accent); }
.glass-map { position: relative; height: 106px; margin-top: 14px; overflow: hidden; border: 1px solid var(--separator); border-radius: 9px; background-color: var(--fill-secondary); background-image: linear-gradient(18deg, transparent 47%, var(--separator) 48%, var(--separator) 49%, transparent 50%), linear-gradient(92deg, transparent 47%, var(--separator-soft) 48%, var(--separator-soft) 49%, transparent 50%); background-size: 74px 42px, 92px 54px; }
.glass-map span { position: absolute; top: 16px; left: 22px; color: var(--muted); font-size: 9px; letter-spacing: .08em; }
.glass-map small { position: absolute; right: 21%; bottom: 16px; color: var(--muted); font-size: 8px; line-height: 1; text-align: center; }
.glass-map i { position: absolute; top: 43%; left: 62%; display: grid; width: 27px; height: 27px; place-items: center; border: 2px solid var(--accent); border-radius: 50%; background: var(--bg); color: var(--text); font-style: normal; font-weight: 700; }
.glass-ping-compact h3 { margin-top: 6px; }

.glass-room { display: flex; min-width: 0; flex-direction: column; border-left: 1px solid var(--separator); background: color-mix(in srgb, var(--sidebar) 67%, var(--bg)); }
.glass-room > header { display: flex; min-height: 72px; align-items: center; justify-content: space-between; padding: 0 20px; border-bottom: 1px solid var(--separator); }
.glass-room > header h2 { margin: 0; font-size: 21px; }
.glass-room > header small { display: inline-flex; align-items: center; gap: 5px; color: var(--muted); }
.glass-room > header i { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.glass-chat { display: grid; gap: 13px; padding: 18px 20px; }
.glass-chat p { display: grid; gap: 5px; margin: 0; padding: 11px 12px; border-radius: 11px; background: var(--fill-primary); }
.glass-chat p:first-child { background: var(--accent-fill); }
.glass-chat b { font-size: 11px; }
.glass-chat b small { margin-left: 5px; color: var(--muted); font-weight: 450; }
.glass-chat span { font-size: 13px; line-height: 1.4; }
.glass-room > label { display: flex; min-height: 43px; align-items: center; justify-content: space-between; margin: 0 20px 18px; padding: 0 12px; border: 1px solid var(--separator); border-radius: 10px; color: var(--muted); font-size: 12px; }
.glass-room > label b { color: var(--accent); font-size: 17px; }
.glass-page-peek { display: grid; grid-template-columns: 1fr 1fr; gap: 9px; margin-top: auto; padding: 20px; border-top: 1px solid var(--separator); text-decoration: none; }
.glass-page-peek > small,
.glass-page-peek > b,
.glass-page-peek > em { grid-column: 1 / -1; }
.glass-page-peek > small { color: var(--muted); font-size: 11px; text-transform: uppercase; letter-spacing: .07em; }
.glass-page-peek > b { font-size: 13px; line-height: 1.4; }
.glass-page-peek > span { padding: 10px; border: 1px solid var(--separator); border-radius: 9px; color: var(--muted); font-size: 11px; }
.glass-page-peek > span i { display: block; color: var(--accent); font-style: normal; font-size: 17px; }
.glass-page-peek > em { color: var(--accent); font-size: 12px; font-style: normal; font-weight: 650; }

.looking-page-story { display: grid; grid-template-columns: minmax(0, .9fr) minmax(500px, 1.1fr); gap: 86px; align-items: center; width: min(1120px, calc(100% - 48px)); margin: 0 auto; padding: 25px 0 130px; }
.looking-page-copy h2,
.looking-themes h2,
.looking-final h2 { margin: 0; font-size: clamp(36px, 4.4vw, 58px); line-height: 1.02; letter-spacing: -.047em; }
.looking-page-copy > p:not(.looking-kicker) { margin: 22px 0; color: var(--muted); font-size: 18px; line-height: 1.5; }
.looking-page-copy ul { display: grid; gap: 10px; margin: 24px 0 28px; padding: 0; list-style: none; }
.looking-page-copy li { padding: 10px 0; border-bottom: 1px solid var(--separator); font-size: 14px; }
.looking-page-copy li::before { content: "✓"; margin-right: 10px; color: var(--success); }
.looking-page-copy > a { color: var(--accent); font-weight: 650; text-decoration: none; }
.looking-profile-card.id-badge { position: relative; display: grid; grid-template-columns: 86px minmax(0, 1fr); grid-template-rows: auto; gap: 3px 18px; width: 100%; min-height: 0; padding: 30px; overflow: visible; border: 1px solid var(--separator); border-radius: 16px; background: var(--card); color: var(--text); text-decoration: none; box-shadow: none; }
.looking-profile-card::before { content: ""; position: absolute; top: -18px; left: 52px; width: 14px; height: 25px; border-radius: 3px 3px 0 0; background: var(--text); }
.looking-profile-card .badge-slot { display: none; }
.looking-profile-card .badge-classification { grid-column: 2; color: var(--muted); font-size: 10px; letter-spacing: .08em; }
.looking-profile-card .badge-photo { grid-column: 1; grid-row: 1 / span 4; width: 86px; height: 108px; overflow: hidden; border-radius: 10px; background: var(--fill-primary); }
.looking-profile-card .badge-photo img { width: 100%; height: 100%; object-fit: cover; }
.looking-profile-card .post-badge-name { grid-column: 2; font-size: 25px; line-height: 1.1; letter-spacing: -.03em; }
.looking-profile-card .post-badge-handle,
.looking-profile-card .post-badge-role { grid-column: 2; color: var(--muted); font-size: 13px; }
.looking-profile-card::after { content: ""; position: absolute; right: -1px; bottom: -1px; left: -1px; height: 13px; border-radius: 0 0 16px 16px; background: var(--accent); }
.looking-profile-modules { display: grid; grid-column: 1 / -1; grid-template-columns: 1fr 1fr; gap: 0; margin-top: 24px; border-top: 1px solid var(--separator); border-left: 1px solid var(--separator); }
.looking-profile-modules figure { display: grid; grid-template-columns: 54px minmax(0, 1fr); gap: 11px; align-items: center; min-width: 0; margin: 0; padding: 13px; border-right: 1px solid var(--separator); border-bottom: 1px solid var(--separator); }
.looking-profile-modules img { width: 54px; height: 54px; border-radius: 8px; object-fit: cover; }
.looking-profile-modules figcaption { display: grid; min-width: 0; }
.looking-profile-modules small { color: var(--muted); font-size: 10px; }
.looking-profile-modules b { overflow: hidden; font-size: 12px; text-overflow: ellipsis; white-space: nowrap; }
.looking-profile-modules .looking-camera { grid-template-columns: repeat(3, 46px) minmax(0, 1fr); }
.looking-profile-modules .looking-camera img { width: 46px; }
.looking-profile-card .badge-code { grid-column: 1 / -1; margin: 15px 0 0; color: var(--muted); font-size: 9px; letter-spacing: .15em; }

.looking-themes { width: min(1280px, calc(100% - 48px)); margin: 0 auto; padding: 82px 0 110px; border-top: 1px solid var(--separator); }
.looking-themes > header { display: grid; grid-template-columns: 1fr .7fr; gap: 72px; align-items: end; }
.looking-themes > header > p { margin: 0; color: var(--muted); font-size: 16px; line-height: 1.5; }
.looking-theme-row { display: grid; grid-template-columns: repeat(5, 1fr); gap: 10px; margin-top: 42px; }
.looking-theme-row form { margin: 0; }
.looking-theme { appearance: none; display: grid; width: 100%; min-height: 140px; align-content: end; gap: 4px; padding: 12px; border: 1px solid var(--separator); border-radius: 12px; background: transparent; color: var(--text); font: inherit; text-align: left; cursor: pointer; }
.looking-body .looking-theme > span { position: static; inset: auto; display: flex; width: 100%; height: 56px; margin: 0 0 8px; overflow: hidden; transform: none; border: 1px solid color-mix(in srgb, var(--theme-card) 70%, white); border-radius: 8px; background: var(--theme-bg); }
.looking-theme > span i { display: block; width: 25%; background: var(--theme-card); }
.looking-theme > span i:nth-child(2) { background: var(--theme-accent); }
.looking-theme > span i:nth-child(3) { background: var(--theme-secondary); }
.looking-theme > span i:nth-child(4) { background: var(--theme-bg); }
.looking-theme b { font-size: 12px; }
.looking-theme small { color: var(--muted); font-size: 10px; }
.looking-body .looking-theme > span i {
  position: static;
  inset: auto;
  display: block;
  width: 25%;
  flex: 1 1 25%;
  height: auto;
  transform: none;
  border: 0;
  border-radius: 0;
  opacity: 1;
  box-shadow: none;
}
.looking-theme:hover,
.looking-theme.hero-skin-dot-active { border-color: var(--accent); background: var(--accent-fill); }
.looking-final { display: grid; justify-items: center; width: min(880px, calc(100% - 40px)); margin: 0 auto; padding: 110px 0 120px; border-top: 1px solid var(--separator); text-align: center; }
.looking-final > span { display: inline-flex; align-items: center; gap: 7px; margin-bottom: 22px; color: var(--muted); font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }
.looking-final > span i { width: 7px; height: 7px; border-radius: 50%; background: var(--success); }
.looking-final p { max-width: 600px; margin: 22px 0 28px; color: var(--muted); font-size: 18px; }
.looking-final > div { display: flex; gap: 10px; }
.looking-final a { display: inline-flex; min-height: 47px; align-items: center; padding: 0 18px; border: 1px solid var(--separator); border-radius: 10px; font-size: 14px; font-weight: 650; text-decoration: none; }
.looking-final a:first-child { border-color: transparent; background: var(--accent); color: #fff; }
.looking-footer { display: flex; min-height: 78px; align-items: center; justify-content: space-between; gap: 20px; width: min(1280px, calc(100% - 48px)); margin: 0 auto; border-top: 1px solid var(--separator); color: var(--muted); font-size: 12px; }
.looking-footer nav { display: flex; gap: 22px; }
.looking-footer a { text-decoration: none; }

@media (max-width: 1050px) {
  .looking-glass { grid-template-columns: 100px minmax(450px, 1fr) 320px; }
  .glass-feed { padding: 22px; }
  .glass-ping footer { gap: 9px; }
  .looking-page-story { gap: 46px; }
}
@media (max-width: 860px) {
  .looking-glass { grid-template-columns: 92px minmax(0, 1fr); }
  .glass-room { display: none; }
  .looking-page-story { grid-template-columns: 1fr; }
  .looking-themes > header { grid-template-columns: 1fr; gap: 22px; }
  .looking-theme-row { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 640px) {
  .looking-nav { width: calc(100% - 28px); min-height: 62px; }
  .looking-brand > span { display: none; }
  .looking-nav nav { gap: 15px; }
  .looking-nav nav a:first-child,
  .looking-nav nav a:nth-child(2) { display: none; }
  .looking-intro { padding: 62px 0 42px; }
  .looking-intro h1 { font-size: clamp(46px, 15vw, 64px); }
  .looking-intro > p:not(.looking-kicker) { font-size: 17px; }
  .looking-actions { width: 100%; flex-direction: column; }
  .looking-intro > small { line-height: 1.5; }
  .looking-glass { grid-template-columns: 1fr; width: calc(100% - 24px); min-height: 0; margin-bottom: 84px; border-radius: 14px; }
  .glass-rail { display: none; }
  .glass-feed { padding: 19px 16px 10px; }
  .glass-feed > header > span { display: none; }
  .glass-tabs { display: grid; grid-template-columns: repeat(3, 1fr); width: 100%; }
  .glass-tabs b,
  .glass-tabs span { min-width: 0; }
  .glass-ping { grid-template-columns: 38px minmax(0, 1fr); gap: 10px; }
  .glass-ping header em { margin-left: 0; }
  .glass-ping footer { flex-wrap: wrap; }
  .glass-ping footer span:nth-child(2),
  .glass-ping footer span:nth-child(3) { display: none; }
  .looking-page-story { width: calc(100% - 32px); padding-bottom: 90px; }
  .looking-profile-card.id-badge { grid-template-columns: 68px minmax(0, 1fr); gap: 3px 14px; padding: 22px 18px 28px; }
  .looking-profile-card::before { left: 41px; }
  .looking-profile-card .badge-photo { width: 68px; height: 88px; }
  .looking-profile-card .post-badge-name { font-size: 21px; }
  .looking-profile-modules { grid-template-columns: 1fr; }
  .looking-profile-modules .looking-camera { grid-template-columns: repeat(3, 42px) minmax(0, 1fr); }
  .looking-profile-modules .looking-camera img { width: 42px; }
  .looking-themes { width: calc(100% - 32px); padding: 70px 0 84px; }
  .looking-theme-row { grid-template-columns: 1fr 1fr; }
  .looking-theme { min-height: 126px; }
  .looking-final { padding: 80px 0 90px; }
  .looking-final > div { width: 100%; flex-direction: column; }
  .looking-final a { justify-content: center; }
  .looking-footer { width: calc(100% - 28px); }
  .looking-footer nav a:not(:last-child) { display: none; }
}

/* Ping 2026 — calm surfaces, compact information, modern credentials. */
.product-body {
  --credential-member: var(--accent);
  --credential-source: var(--success);
  --credential-live: var(--warning);
  --credential-you: var(--secondary);
  --credential-muted: var(--muted);
  background: var(--bg);
}

/* The shell stays put on desktop without using divider lines as structure. */
.product-body .app-frame {
  grid-template-columns: 220px minmax(0, 1fr);
  width: 100%;
  max-width: none;
  margin: 0;
  border: 0;
}
.product-body .app-rail {
  position: sticky;
  top: 0;
  z-index: 20;
  height: 100dvh;
  padding: 30px 20px 20px;
  border: 0;
  background: var(--sidebar);
}
.product-body .app-rail-brand {
  width: 50px;
  height: 63px;
  margin: 0 14px 38px;
}
.product-body .app-rail-nav { gap: 5px; }
.product-body .app-rail-link {
  min-height: 48px;
  padding: 0 13px;
  border: 0 !important;
  border-radius: 13px;
}
.product-body .app-rail-link.is-active,
.product-body .app-rail-link.nav-tab-active {
  border: 0 !important;
  background: var(--accent-fill);
  box-shadow: none !important;
}
.product-body .app-rail-end { gap: 10px; }
.product-body .theme-picker {
  padding: 10px 7px;
  border: 0;
  border-radius: 14px;
  background: var(--fill-secondary);
}
.product-body .rail-theme-choice { min-height: 36px; }
.product-body .app-rail-account {
  gap: 7px;
  padding: 0;
  border: 0;
}
.product-body .app-rail-account .app-rail-user {
  min-height: 55px;
  padding: 7px 8px;
  border: 0;
  border-radius: 12px;
  background: var(--fill-secondary);
}
.product-body .app-rail-account .app-rail-user:hover {
  border: 0;
  background: var(--fill-primary);
}
.product-body .app-rail-account-actions a,
.product-body .app-rail-account-actions button {
  border: 0;
  border-radius: 10px;
  background: var(--fill-secondary);
}
.product-body .app-rail-account-actions a:hover,
.product-body .app-rail-account-actions button:hover {
  border: 0;
  background: var(--fill-primary);
}

/* SF Symbols-inspired credential language. The whole outline communicates
   role; there is no lanyard nub or decorative stripe. */
.product-body .ident-badge,
.profile-public-body .ident-badge,
.thread-page-preview .ident-badge {
  --credential-color: var(--credential-member);
  position: relative;
  display: inline-block;
  width: 40px !important;
  height: 50px !important;
  flex: none;
  padding: 0 !important;
  overflow: visible;
  border: 0 !important;
  border-radius: 0 !important;
  background: transparent !important;
  color: var(--credential-color);
  box-shadow: none !important;
}
.product-body .ident-badge::before,
.product-body .ident-badge::after,
.profile-public-body .ident-badge::before,
.profile-public-body .ident-badge::after,
.thread-page-preview .ident-badge::before,
.thread-page-preview .ident-badge::after { display: none !important; content: none !important; }
.product-body .ident-member,
.profile-public-body .ident-member,
.thread-page-preview .ident-member { --credential-color: var(--credential-member); }
.product-body .ident-source,
.profile-public-body .ident-source,
.thread-page-preview .ident-source { --credential-color: var(--credential-source); }
.product-body .ident-live,
.profile-public-body .ident-live,
.thread-page-preview .ident-live { --credential-color: var(--credential-live); }
.product-body .ident-you,
.profile-public-body .ident-you,
.thread-page-preview .ident-you { --credential-color: var(--credential-you); }
.product-body .ident-muted,
.profile-public-body .ident-muted,
.thread-page-preview .ident-muted { --credential-color: var(--credential-muted); }
.product-body .ident-chrome,
.profile-public-body .ident-chrome,
.thread-page-preview .ident-chrome {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: block !important;
  width: 100%;
  height: 100%;
  pointer-events: none;
}
.product-body .ident-plate,
.profile-public-body .ident-plate,
.thread-page-preview .ident-plate { stroke: var(--credential-color); }
.product-body .ident-slot,
.profile-public-body .ident-slot,
.thread-page-preview .ident-slot { fill: var(--credential-color); }
.product-body .ident-photo,
.product-body .ident-initials,
.profile-public-body .ident-photo,
.profile-public-body .ident-initials,
.thread-page-preview .ident-photo,
.thread-page-preview .ident-initials {
  position: absolute;
  top: 22%;
  left: 9%;
  z-index: 1;
  display: grid;
  width: 82% !important;
  height: 70% !important;
  place-items: center;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  border-radius: 5px 5px 10px 10px !important;
  background: var(--fill-primary) !important;
  color: var(--credential-color) !important;
  object-fit: cover;
  object-position: center 24%;
  box-shadow: none !important;
}
.product-body .ident-initials,
.profile-public-body .ident-initials,
.thread-page-preview .ident-initials { font-size: 12px !important; font-weight: 720; }
.product-body .ident-xs,
.profile-public-body .ident-xs,
.thread-page-preview .ident-xs { width: 31px !important; height: 39px !important; }
.product-body .ident-sm,
.profile-public-body .ident-sm,
.thread-page-preview .ident-sm { width: 38px !important; height: 48px !important; }
.product-body .ident-md,
.profile-public-body .ident-md,
.thread-page-preview .ident-md { width: 48px !important; height: 60px !important; }

/* Ping canvas: spacing and tonal surfaces replace spreadsheet dividers. */
.product-body .feed-layout,
.product-body .now-shell {
  grid-template-columns: minmax(0, 3fr) minmax(410px, 1.55fr) !important;
  gap: 12px;
  padding: 0 12px 0 0;
  background: var(--bg);
}
.product-body .feed-canvas,
.product-body .thread-panel,
.product-body .feed-toolbar {
  border: 0 !important;
  box-shadow: none !important;
}
.product-body .feed-canvas { background: var(--bg); }
.product-body .feed-toolbar {
  padding: 30px 34px 8px;
  background: var(--bg);
}
.product-body .feed-heading h1,
.product-body .now-title { font-size: 40px !important; }

/* The composer is always ready: identity, format and topic are visible before
   the user starts typing. */
.product-body .feed-composer-inline {
  display: grid !important;
  gap: 10px;
  width: 100%;
  margin: 22px 0 14px;
  padding: 13px;
  border: 0 !important;
  border-radius: 17px;
  background: color-mix(in srgb, var(--card) 76%, var(--bg));
  box-shadow: none !important;
}
.product-body .composer-front {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}
.product-body .composer-as { display: grid; min-width: 0; gap: 0; }
.product-body .composer-as b { color: var(--text); font-size: 12px !important; font-weight: 700; }
.product-body .composer-as small { color: var(--muted); font-size: 10px !important; }
.product-body .composer-tags {
  display: flex;
  align-items: center;
  gap: 7px;
  margin-left: auto;
}
.product-body .composer-tag {
  display: grid;
  grid-template-columns: 15px auto;
  gap: 5px;
  min-height: 34px;
  align-items: center;
  padding: 0 9px;
  border: 0;
  border-radius: 999px;
  background: var(--fill-primary);
  color: var(--muted);
}
.product-body .composer-tag svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.65;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-body .composer-tag > span {
  display: none !important;
}
.product-body .composer-tag select {
  max-width: 116px;
  min-height: 30px;
  padding: 0 16px 0 0;
  border: 0;
  background: transparent;
  color: var(--text);
  font-size: 11px !important;
  font-weight: 600;
  outline: 0;
}
.product-body .composer-input-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 54px;
  gap: 9px;
  align-items: stretch;
}
.product-body .composer-textarea {
  width: 100%;
  min-height: 58px !important;
  max-height: 180px;
  padding: 11px 13px !important;
  border: 0 !important;
  border-radius: 12px !important;
  background: var(--fill-primary) !important;
  color: var(--text) !important;
  font-size: 15px !important;
  line-height: 1.4 !important;
  resize: vertical;
  box-shadow: none !important;
}
.product-body .composer-textarea::placeholder { color: var(--muted); }
.product-body .composer-inline-submit {
  appearance: none;
  display: grid;
  place-items: center;
  min-width: 54px;
  padding: 0;
  border: 0;
  border-radius: 12px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}
.product-body .composer-inline-submit span { font-size: 10px !important; font-weight: 700; }
.product-body .composer-inline-submit svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.product-body .feed-source-tabs { margin-bottom: 4px; border: 0; }
.product-body .feed-source-tabs a,
.product-body .feed-source-tabs a.is-active { border: 0; }
.product-body .feed-stream-inner { padding: 0 34px 52px; }
.product-body .now-section > h2 {
  padding: 17px 3px 10px;
  font-size: 12px !important;
  letter-spacing: .08em;
}
.product-body .now-section-earlier > h2 { padding-top: 24px; }
.product-body .now-rows { gap: 8px; }

/* Expanded posts are quiet reading surfaces; minimized posts are true rows. */
.product-body .inbox-row.now-post-full,
.product-body .inbox-row.now-post-full:first-child {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 14px;
  width: 100%;
  margin: 0;
  padding: 17px 17px 11px;
  border: 0 !important;
  border-radius: 16px !important;
  background: color-mix(in srgb, var(--card) 76%, var(--bg)) !important;
  box-shadow: none !important;
}
.product-body .inbox-row.now-post-full:hover {
  border: 0 !important;
  background: color-mix(in srgb, var(--card) 90%, var(--bg)) !important;
}
.product-body .inbox-row-active.now-post-full,
.product-body .inbox-row.post-selected.now-post-full {
  border: 0 !important;
  background: color-mix(in srgb, var(--accent) 7%, var(--card)) !important;
}
.product-body .inbox-actions {
  gap: 2px;
  margin-top: 6px;
  padding-top: 7px;
  border: 0 !important;
}
.product-body .inbox-row .link-preview,
.product-body .thread-body .link-preview,
.product-body .thread-origin .link-preview {
  border: 0 !important;
  background: var(--fill-secondary);
}
.product-body .inbox-row.inbox-row-compact,
.product-body .inbox-row.inbox-row-compact:first-child {
  display: grid !important;
  grid-template-columns: 31px minmax(0, 1fr) auto !important;
  grid-template-areas: "ident compact time" !important;
  gap: 10px !important;
  min-height: 47px;
  align-items: center;
  width: 100%;
  margin: 0;
  padding: 4px 10px !important;
  border: 0 !important;
  border-radius: 11px !important;
  background: transparent !important;
  opacity: 1;
  box-shadow: none !important;
}
.product-body .inbox-row.inbox-row-compact:hover { background: var(--fill-secondary) !important; }
.product-body .inbox-row-compact .inbox-ident { grid-area: ident; height: 39px; }
.product-body .inbox-compact-open {
  appearance: none;
  grid-area: compact;
  display: grid;
  grid-template-columns: auto auto minmax(0, 1fr);
  gap: 8px;
  min-width: 0;
  min-height: 0 !important;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--text);
  text-align: left;
  cursor: pointer;
}
.product-body .inbox-compact-open b {
  overflow: hidden;
  font-size: 11px !important;
  font-weight: 700;
  letter-spacing: .025em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-body .inbox-compact-category {
  padding: 3px 6px;
  border-radius: 999px;
  background: var(--accent-fill);
  color: var(--accent);
  font-size: 9px !important;
  font-weight: 650;
  text-transform: capitalize;
  white-space: nowrap;
}
.product-body .inbox-compact-copy {
  min-width: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px !important;
  line-height: 1.3;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-body .inbox-compact-time {
  grid-area: time;
  color: var(--muted);
  font-size: 10px !important;
  font-variant-numeric: tabular-nums;
  white-space: nowrap;
}

/* Room: the pinned Ping and profile can collapse; reply is always near the
   conversation rather than stranded at the bottom. */
.product-body .thread-panel {
  overflow: hidden;
  border: 0 !important;
  border-radius: 18px 0 0 18px;
  background: color-mix(in srgb, var(--sidebar) 82%, var(--bg));
}
.product-body .thread-sheet { display: flex; height: 100%; min-height: 0; flex-direction: column; }
.product-body .thread-panel-head {
  min-height: 68px;
  padding: 16px 24px 8px;
  border: 0 !important;
}
.product-body .thread-panel-head h2 { font-size: 24px !important; }
.product-body .thread-origin {
  display: block;
  flex: none;
  margin: 3px 24px 10px;
  padding: 0;
  border: 0 !important;
  border-radius: 14px;
  background: color-mix(in srgb, var(--accent) 7%, var(--card));
  box-shadow: none !important;
}
.product-body .thread-origin > summary,
.product-body .thread-page-preview > summary {
  list-style: none;
  cursor: pointer;
}
.product-body .thread-origin > summary::-webkit-details-marker,
.product-body .thread-page-preview > summary::-webkit-details-marker { display: none; }
.product-body .thread-origin-summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  grid-template-rows: auto auto;
  gap: 1px 11px;
  align-items: center;
  min-height: 64px;
  padding: 8px 11px;
}
.product-body .thread-origin-summary > .ident-badge { grid-row: 1 / 3; }
.product-body .thread-origin-summary > span { min-width: 0; align-self: end; }
.product-body .thread-origin-summary > span b {
  display: block;
  overflow: hidden;
  font-size: 11px !important;
  font-weight: 720;
  letter-spacing: .05em;
  text-overflow: ellipsis;
  text-transform: uppercase;
  white-space: nowrap;
}
.product-body .thread-origin-summary > span small {
  display: block;
  overflow: hidden;
  color: var(--muted);
  font-size: 12px !important;
  line-height: 1.25;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.product-body .thread-origin-summary > time { grid-column: 3; grid-row: 1; align-self: end; }
.product-body .thread-origin-toggle {
  grid-column: 3;
  grid-row: 2;
  display: inline-flex;
  align-items: center;
  justify-self: end;
  gap: 4px;
  align-self: start;
  color: var(--accent);
  font-size: 9px !important;
  font-style: normal;
  font-weight: 650;
  white-space: nowrap;
}
.product-body .thread-origin-toggle svg,
.product-body .thread-page-preview summary em svg {
  width: 13px;
  height: 13px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: transform .16s ease;
}
.product-body details:not([open]) .when-open,
.product-body details[open] .when-closed { display: none; }
.product-body details[open] > summary svg { transform: rotate(180deg); }
.product-body .thread-origin-content {
  display: block;
  min-width: 0;
  padding: 0 13px 14px 60px;
  border: 0;
  border-radius: 0;
  background: transparent;
}
.product-body .thread-origin-copy {
  margin: 2px 0 10px !important;
  font-size: 14px !important;
  line-height: 1.48 !important;
}
.product-body .thread-reply {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 44px;
  flex: none;
  gap: 8px;
  margin: 0 24px 12px;
  padding: 0 !important;
  border: 0 !important;
  background: transparent;
}
.product-body .thread-reply .control {
  min-width: 0;
  min-height: 44px;
  padding: 0 13px;
  border: 0;
  border-radius: 12px;
  background: var(--fill-primary);
  color: var(--text);
}
.product-body .thread-reply .button-primary { min-height: 44px; border: 0; }
.product-body .thread-body {
  flex: 1;
  min-height: 0;
  padding: 3px 24px 30px;
  overflow-y: auto;
}
.product-body .thread-conversation-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 4px 2px 13px;
  border: 0;
  color: var(--muted);
  font-size: 9px !important;
  font-weight: 650;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.product-body .thread-conversation-head small { font-size: inherit !important; }
.product-body .thread-msg { margin-bottom: 14px; }
.product-body .thread-bubble {
  border: 0 !important;
  border-radius: 13px !important;
  background: color-mix(in srgb, var(--card) 76%, var(--bg)) !important;
  box-shadow: none !important;
}
.product-body .thread-msg-own .thread-bubble {
  background: color-mix(in srgb, var(--accent) 11%, var(--card)) !important;
}
.product-body .thread-page-preview {
  margin: 20px 0 0;
  padding: 0;
  border: 0 !important;
  border-radius: 14px;
  background: var(--fill-secondary);
  box-shadow: none;
}
.product-body .thread-page-preview > summary {
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr) auto;
  gap: 10px;
  min-height: 64px;
  align-items: center;
  padding: 8px 11px;
}
.product-body .thread-page-preview > summary > div { min-width: 0; }
.product-body .thread-page-preview > summary small { color: var(--accent); font-size: 9px !important; font-weight: 650; letter-spacing: .08em; text-transform: uppercase; }
.product-body .thread-page-preview > summary h3 { margin: 0; font-size: 14px !important; }
.product-body .thread-page-preview > summary p { overflow: hidden; margin: 0; color: var(--muted); font-size: 11px !important; text-overflow: ellipsis; white-space: nowrap; }
.product-body .thread-page-preview > summary em { display: inline-flex; align-items: center; gap: 3px; color: var(--accent); font-size: 10px !important; font-style: normal; font-weight: 650; }
.product-body .thread-page-preview-body { padding: 0 12px 13px; }
.product-body .thread-page-bio { margin: 4px 0 12px; font-size: 12px !important; }
.product-body .thread-open-profile {
  display: inline-flex;
  gap: 5px;
  min-height: 32px;
  align-items: center;
  padding: 0 10px;
  border: 0;
  border-radius: 9px;
  background: var(--accent-fill);
  color: var(--accent);
  font-size: 11px !important;
  font-weight: 650;
  text-decoration: none;
}
.product-body .thread-page-modules {
  margin-top: 11px;
  overflow: hidden;
  border: 0 !important;
  border-radius: 11px;
  background: color-mix(in srgb, var(--card) 65%, transparent);
}
.product-body .thread-page-modules article { border: 0 !important; }

/* A timeline is a sequence, not a table. */
.product-body .timeline-scale-bar,
.product-body .timeline-footer { border: 0 !important; background: var(--fill-secondary); }
.product-body .timeline-list {
  display: grid;
  gap: 0;
  margin: 12px 0 0;
  padding: 0 !important;
  border: 0 !important;
  list-style: none;
}
.product-body .timeline-list li {
  position: relative;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  gap: 21px;
  width: 100%;
  margin: 0;
  padding: 0 0 19px;
  border: 0 !important;
  background: transparent !important;
}
.product-body .timeline-list li::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 67px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--bg);
  border-radius: 50%;
  background: var(--warning);
  box-shadow: 0 0 0 2px color-mix(in srgb, var(--warning) 22%, transparent);
}
.product-body .timeline-list li::after {
  content: "";
  position: absolute;
  top: 17px;
  bottom: -1px;
  left: 70px;
  width: 2px;
  border-radius: 2px;
  background: color-mix(in srgb, var(--warning) 24%, transparent);
}
.product-body .timeline-list li:last-child::after { display: none; }
.product-body .timeline-list p {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  color: var(--text);
  font-size: 13px !important;
  line-height: 1.45;
}
.product-body .timeline-list time {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
  padding: 0;
  border: 0;
  border-radius: 0 !important;
  background: transparent;
  color: var(--muted);
  font-size: 10px !important;
  font-variant-numeric: tabular-nums;
  box-shadow: none !important;
}

@media (max-width: 1180px) {
  .product-body .feed-layout,
  .product-body .now-shell { grid-template-columns: minmax(0, 1fr) minmax(360px, 43%) !important; }
  .product-body .feed-toolbar,
  .product-body .feed-stream-inner { padding-right: 24px; padding-left: 24px; }
  .product-body .composer-tag > span { display: none; }
  .product-body .composer-tag { grid-template-columns: 15px auto; }
}

@media (max-width: 900px) {
  .product-body .app-frame { display: block; }
  .product-body .app-rail { display: none; }
  .product-body .feed-layout,
  .product-body .now-shell { display: block !important; padding: 0; }
  .product-body .thread-panel { border-radius: 0; }
}

@media (max-width: 640px) {
  .product-body .feed-toolbar { padding: 20px 14px 7px; }
  .product-body .feed-stream-inner { padding: 0 14px 90px; }
  .product-body .composer-front { display: grid; grid-template-columns: 31px minmax(0, 1fr); }
  .product-body .composer-tags { grid-column: 1 / -1; width: 100%; margin: 3px 0 0; }
  .product-body .composer-tag { flex: 1; grid-template-columns: 15px auto; }
  .product-body .composer-tag > span { display: none; }
  .product-body .composer-tag select { width: 100%; max-width: none; }
  .product-body .composer-inline-submit span { display: none; }
  .product-body .inbox-compact-time { display: none; }
  .product-body .inbox-row.inbox-row-compact,
  .product-body .inbox-row.inbox-row-compact:first-child { grid-template-columns: 31px minmax(0, 1fr) !important; grid-template-areas: "ident compact" !important; }
  .product-body .inbox-compact-open { grid-template-columns: auto minmax(0, 1fr); }
  .product-body .inbox-compact-category { display: none; }
  .product-body .thread-panel-head { padding-right: 14px; padding-left: 14px; }
  .product-body .thread-origin { margin-right: 14px; margin-left: 14px; }
  .product-body .thread-reply { margin-right: 14px; margin-left: 14px; }
  .product-body .thread-body { padding-right: 14px; padding-left: 14px; }
  .product-body .thread-origin-toggle span { display: none; }
}
