:root {
  --ink: #191919;
  --muted: #77756f;
  --line: #e3e0d9;
  --paper: #f5f3ee;
  --white: #fff;
  --orange: #ff6b28;
  --orange-soft: #fff0e8;
  --green: #167c52;
  --shadow: 0 18px 60px rgba(30, 28, 24, 0.1);
  font-family:
    Inter,
    ui-sans-serif,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--ink);
  background: var(--paper);
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background: var(--paper);
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
.product-frame {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 248px minmax(0, 1fr);
}
.sidebar {
  position: sticky;
  top: 0;
  height: 100vh;
  display: flex;
  flex-direction: column;
  padding: 28px 18px 22px;
  border-right: 1px solid var(--line);
  background: #efede7;
}
.wordmark {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 0 8px;
  border: 0;
  background: transparent;
  text-align: left;
}
.brand-mark {
  width: 38px;
  height: 38px;
  display: block;
  overflow: hidden;
  border-radius: 12px;
  background: var(--orange);
}
.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}
.wordmark strong,
.wordmark small {
  display: block;
}
.wordmark strong {
  font-size: 15px;
  font-weight: 400;
}
.wordmark small {
  margin-top: 1px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.tab-bar {
  display: grid;
  gap: 7px;
  margin-top: 52px;
}
.tab {
  display: grid;
  grid-template-columns: 25px 1fr auto;
  align-items: center;
  gap: 10px;
  width: 100%;
  min-height: 47px;
  padding: 0 13px;
  border: 0;
  border-radius: 13px;
  background: transparent;
  color: #6d6b65;
  text-align: left;
  font-size: 13px;
  font-weight: 700;
}
.tab > span:first-child {
  font-size: 17px;
  text-align: center;
}
.tab b {
  min-width: 22px;
  padding: 3px 6px;
  border-radius: 99px;
  background: #ddd9d0;
  color: #66625b;
  font-size: 10px;
  text-align: center;
}
.tab.active {
  background: #fff;
  color: var(--ink);
  box-shadow: 0 5px 20px rgba(30, 28, 24, 0.06);
}
.tab.active > span:first-child {
  color: var(--orange);
}
.tab.active b {
  background: var(--orange);
  color: #fff;
}
.sidebar-foot {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: auto;
  padding: 13px;
  border: 1px solid #dedad1;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.45);
}
.sidebar-foot span:last-child {
  min-width: 0;
}
.sidebar-foot strong,
.sidebar-foot small {
  display: block;
}
.sidebar-foot strong {
  font-size: 11px;
}
.sidebar-foot small {
  overflow: hidden;
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.preview-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #d9a320;
  box-shadow: 0 0 0 4px rgba(217, 163, 32, 0.13);
}
.preview-dot.is-live {
  background: #20a568;
  box-shadow: 0 0 0 4px rgba(32, 165, 104, 0.13);
}
.workspace {
  min-width: 0;
}
.topbar {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(22px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(245, 243, 238, 0.85);
  backdrop-filter: blur(12px);
}
.topbar p,
.topbar strong {
  display: block;
  margin: 0;
}
.topbar p {
  color: var(--muted);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.topbar > div > strong {
  margin-top: 3px;
  font-size: 17px;
}
.account-button {
  display: flex;
  align-items: center;
  gap: 9px;
  min-height: 38px;
  padding: 4px 11px 4px 5px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  color: var(--ink);
  font-size: 11px;
  font-weight: 750;
}
.account-button::first-letter {
  width: 28px;
}
.account-button.signed {
  background: #e9f3ed;
}
.topbar-actions {
  display: flex;
  align-items: center;
  gap: 8px;
}
.sync-button {
  min-height: 36px;
  padding: 0 11px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: #5e5a54;
  font-size: 10px;
  font-weight: 800;
}
.sync-button:disabled {
  opacity: 0.6;
}
.page {
  padding: clamp(26px, 4vw, 52px);
  max-width: 1460px;
  margin: 0 auto;
}
.eyebrow {
  margin: 0;
  color: #b44915;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
.summary-hero {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 38px;
  padding: 8px 0 38px;
}
.summary-hero h1,
.integration-heading h1 {
  max-width: 720px;
  margin: 11px 0 16px;
  font:
    650 clamp(42px, 5.2vw, 72px)/0.98 Georgia,
    "Times New Roman",
    serif;
  letter-spacing: -0.045em;
}
.summary-hero p:last-child,
.integration-heading > p:last-child {
  max-width: 650px;
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.summary-hero.live-brief {
  align-items: center;
  gap: 22px;
  padding: 0 0 18px;
}
.live-brief > div {
  min-width: 0;
  flex: 1;
}
.live-brief h1 {
  margin: 6px 0 7px;
  font-size: clamp(28px, 3vw, 40px);
  line-height: 1;
}
.live-brief p:last-child {
  display: -webkit-box;
  overflow: hidden;
  max-width: 760px;
  font-size: 12px;
  line-height: 1.45;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}
.live-brief .primary {
  min-height: 38px;
  flex: none;
}
.summary-actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex: none;
}
.summary-actions .primary,
.summary-actions .secondary {
  min-height: 38px;
  white-space: nowrap;
}
.primary,
.secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 16px;
  border-radius: 12px;
  font-weight: 800;
  font-size: 12px;
}
.primary {
  border: 1px solid var(--orange);
  background: var(--orange);
  color: #fff;
}
.primary span {
  margin-left: 15px;
}
.secondary {
  border: 1px solid var(--line);
  background: #fff;
  color: var(--ink);
}
.brief-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  gap: 14px;
  margin-top: 14px;
}
.brief-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}
.brief-card > header {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 14px;
  border-bottom: 1px solid var(--line);
}
.brief-card > header strong {
  display: block;
  margin: 0;
  font-size: 12px;
}
.spark {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: var(--orange-soft);
  color: var(--orange);
}
.spark.neutral {
  background: #eeede9;
  color: #5f5c56;
}
.summary-item {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr) 22px 12px;
  align-items: center;
  gap: 9px;
  width: 100%;
  min-height: 54px;
  padding: 9px 14px;
  border: 0;
  border-bottom: 1px solid #efede8;
  background: #fff;
  color: var(--ink);
  text-decoration: none;
  text-align: left;
}
.summary-item:hover {
  background: #faf8f3;
}
.summary-copy {
  min-width: 0;
}
.summary-item strong,
.summary-item small {
  display: block;
}
.summary-item strong {
  overflow: hidden;
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.summary-item small {
  overflow: hidden;
  margin-top: 2px;
  color: #5f5c56;
  font-size: 9px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.summary-item > b {
  color: #aaa59c;
}
.brief-empty,
.filtered-empty {
  margin: 0;
  padding: 22px 20px;
  color: var(--muted);
  font-size: 11px;
}
.summary-error {
  margin: 0 0 14px;
  padding: 11px 13px;
  border: 1px solid #f0cab8;
  border-radius: 12px;
  background: var(--orange-soft);
  color: #9e3d12;
  font-size: 11px;
}
.empty-state {
  display: grid;
  justify-items: center;
  max-width: 560px;
  margin: clamp(50px, 12vh, 140px) auto;
  padding: 32px;
  text-align: center;
}
.empty-state > span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: var(--orange-soft);
  color: var(--orange);
  font-size: 20px;
}
.empty-actions {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
}
.empty-state h2 {
  margin: 16px 0 8px;
  font: 650 32px/1.05 Georgia, serif;
}
.empty-state p {
  max-width: 480px;
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.55;
}
.avatar {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  position: relative;
  flex: none;
  border-radius: 13px;
  background: #e8e4dc;
  color: #45413c;
  font-size: 10px;
  font-weight: 850;
}
.avatar.large {
  width: 43px;
  height: 43px;
}
.avatar.unread:after {
  content: "";
  position: absolute;
  right: -2px;
  top: -2px;
  width: 8px;
  height: 8px;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--orange);
}
.channel-icon {
  width: 42px;
  height: 42px;
  display: inline-grid;
  place-items: center;
  flex: none;
  border-radius: 13px;
  color: #fff;
}
.channel-icon svg {
  width: 23px;
  height: 23px;
  fill: currentColor;
}
.channel-icon.small {
  width: 22px;
  height: 22px;
  border-radius: 7px;
}
.channel-icon.small svg {
  width: 13px;
  height: 13px;
}
.logo-whatsapp {
  background: #25d366;
}
.logo-instagram {
  background: radial-gradient(
    circle at 31% 105%,
    #ffd600 0 24%,
    #ff7a00 25%,
    #ff0169 50%,
    #d300c5 74%,
    #7638fa 100%
  );
}
.logo-x {
  background: #050505;
}
.logo-gmail {
  border: 1px solid #e6e2dc;
  background: #fff;
  color: #ea4335;
}
.logo-telegram {
  background: #229ed9;
}
.logo-tiktok {
  background: #050505;
}
.logo-linkedin {
  background: #0a66c2;
}
.logo-slack {
  border: 1px solid #e6e2dc;
  background: #fff;
}
.logo-facebook {
  background: #1877f2;
}
.logo-discord {
  background: #5865f2;
}
.ai-disclaimer {
  margin: 18px 2px 0;
  color: var(--muted);
  font-size: 10px;
}
.filter-bar {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 17px;
  scrollbar-width: none;
}
.filter-bar::-webkit-scrollbar {
  display: none;
}
.filter {
  display: flex;
  align-items: center;
  gap: 7px;
  min-height: 36px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  background: #fff;
  color: #6d6a64;
  font-size: 10px;
  font-weight: 750;
  white-space: nowrap;
}
.filter.active {
  border-color: #282724;
  background: #282724;
  color: #fff;
}
.all-icon {
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 7px;
  background: #e9e6df;
  color: #4c4944;
  font-size: 14px;
}
.filter.active .all-icon {
  background: #4a4843;
  color: #fff;
}
.inbox-layout {
  height: calc(100vh - 220px);
  min-height: 480px;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(330px, 0.9fr) minmax(420px, 1.1fr);
  border: 1px solid var(--line);
  border-radius: 20px;
  background: #fff;
  box-shadow: 0 12px 50px rgba(33, 30, 25, 0.06);
}
.conversation-list {
  overflow: auto;
  border-right: 1px solid var(--line);
}
.conversation-list > header {
  position: sticky;
  z-index: 2;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.conversation-list > header strong,
.conversation-list > header span {
  display: block;
}
.conversation-list > header strong {
  font-size: 13px;
}
.conversation-list > header span {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
.conversation-list > header button {
  width: 32px;
  height: 32px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
}
.conversation {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  width: 100%;
  border-bottom: 1px solid #efede8;
  background: #fff;
}
.conversation.selected {
  background: #f3f0e9;
  box-shadow: inset 3px 0 0 var(--orange);
}
.conversation-main {
  min-width: 0;
  display: grid;
  grid-template-columns: 38px minmax(0, 1fr);
  align-items: center;
  gap: 11px;
  padding: 13px 8px 13px 18px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-align: left;
}
.conversation:hover,
.conversation:focus-within {
  background: #f4f1ea;
}
.conversation-source {
  display: flex;
  align-items: center;
  gap: 7px;
  align-self: stretch;
  padding: 0 14px 0 8px;
  border: 0;
  background: transparent;
  color: var(--ink);
  text-decoration: none;
}
.conversation-copy {
  min-width: 0;
}
.conversation-copy > span {
  display: flex;
  justify-content: space-between;
  gap: 8px;
}
.conversation-copy strong {
  overflow: hidden;
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.conversation-copy time {
  color: var(--muted);
  font-size: 9px;
}
.conversation-copy > small {
  display: block;
  overflow: hidden;
  margin-top: 4px;
  color: #68655f;
  font-size: 11px;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.source-arrow {
  color: #9e9990;
  font-size: 14px;
}
.source-disclaimer {
  margin: 12px 3px 0;
  color: var(--muted);
  font-size: 9px;
}
.thread {
  min-width: 0;
  min-height: 0;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: #faf9f6;
}
.thread > header {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) auto;
  align-items: center;
  gap: 11px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--line);
  background: #fff;
}
.thread-back {
  display: none;
}
.thread-source {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 10px;
  border: 1px solid #dfd4cd;
  border-radius: 10px;
  background: var(--orange-soft);
  color: #a74111;
  font-size: 9px;
  font-weight: 800;
  text-decoration: none;
  white-space: nowrap;
}
.thread-empty {
  place-items: center;
}
.thread-empty > div {
  text-align: center;
  color: var(--muted);
}
.thread-empty strong,
.thread-empty p {
  display: block;
  margin: 7px 0 0;
}
.thread > header strong,
.thread > header small {
  display: block;
}
.thread > header strong {
  font-size: 12px;
}
.thread > header small {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 4px;
  color: var(--muted);
  font-size: 8px;
}
.thread > header button,
.thread footer button {
  padding: 8px 10px;
  border: 1px solid #dfd4cd;
  border-radius: 10px;
  background: var(--orange-soft);
  color: #a74111;
  font-size: 9px;
  font-weight: 800;
}
.thread-scroll {
  min-height: 0;
  overflow: auto;
  padding: 22px;
  overscroll-behavior: contain;
  scrollbar-gutter: stable;
}
.date-divider {
  margin: 0 0 20px;
  color: #9a968e;
  font-size: 8px;
  text-align: center;
  text-transform: uppercase;
}
.bubble {
  width: max-content;
  max-width: min(78%, 520px);
  margin: 8px 0;
  padding: 11px 13px;
  border: 1px solid var(--line);
  border-radius: 15px 15px 15px 4px;
  background: #fff;
  color: #45423d;
  font-size: 11px;
  line-height: 1.5;
}
.bubble.mine {
  margin-left: auto;
  border-color: #f3d7c8;
  border-radius: 15px 15px 4px 15px;
  background: var(--orange-soft);
}
.thread footer {
  padding: 14px 18px;
  border-top: 1px solid var(--line);
  background: #fff;
}
.thread footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 9px 10px 9px 14px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #f7f6f2;
}
.thread footer .thread-source {
  flex: none;
}
.thread footer span {
  color: var(--muted);
  font-size: 9px;
}
.integration-heading {
  padding: 8px 0 35px;
}
.integration-heading h1 {
  font-size: clamp(42px, 5vw, 68px);
}
.integration-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}
.integration-card {
  padding: 14px 16px;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #fff;
}
.integration-main {
  display: grid;
  grid-template-columns: 42px 1fr auto;
  align-items: center;
  gap: 12px;
}
.integration-main strong,
.integration-main p {
  display: block;
  margin: 0;
}
.integration-main strong {
  font-size: 13px;
}
.integration-main p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.integration-main button {
  min-height: 34px;
  padding-inline: 16px;
}
.connection-note {
  display: flex;
  gap: 13px;
  margin-top: 18px;
  padding: 16px 18px;
  border: 1px dashed #d7d2c8;
  border-radius: 16px;
}
.connection-note > span {
  color: var(--orange);
  font-size: 22px;
}
.connection-note strong,
.connection-note p {
  display: block;
  margin: 0;
}
.connection-note strong {
  font-size: 11px;
}
.connection-note p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}
.overlay {
  position: fixed;
  z-index: 50;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 18px;
  background: rgba(23, 22, 20, 0.45);
  backdrop-filter: blur(7px);
}
.sheet {
  position: relative;
  width: min(100%, 540px);
  max-height: calc(100vh - 36px);
  overflow: auto;
  padding: 34px;
  border-radius: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.close {
  position: absolute;
  right: 18px;
  top: 18px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-size: 20px;
}
.sheet h2 {
  margin: 8px 0 22px;
  font: 650 42px/1 Georgia;
  letter-spacing: -0.04em;
}
.onboarding-sheet {
  width: min(100%, 500px);
}
.onboarding-sheet h2 {
  max-width: 410px;
  margin-bottom: 24px;
}
.onboarding-logos {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 22px;
}
.onboarding-logos .channel-icon {
  width: 38px;
  height: 38px;
  border-radius: 12px;
}
.onboarding-logos .channel-icon svg {
  width: 21px;
  height: 21px;
}
.onboarding-ai-line {
  display: flex;
  align-items: center;
  gap: 9px;
  margin: 0 0 6px;
  font-size: 13px;
  font-weight: 800;
}
.onboarding-ai-line span {
  color: var(--orange);
}
.company-context-form {
  display: grid;
  gap: 10px;
}
.company-context-form label {
  margin-top: 5px;
  font-size: 11px;
  font-weight: 800;
}
.company-context-form textarea {
  width: 100%;
  min-height: 96px;
  resize: vertical;
  padding: 12px 13px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fbfaf7;
  color: var(--ink);
  font: inherit;
  font-size: 12px;
  line-height: 1.5;
}
.company-context-form textarea:focus {
  outline: 2px solid rgba(255, 102, 42, 0.22);
  border-color: var(--orange);
}
.connect-intro,
.account-card {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 15px;
  border: 1px solid var(--line);
  border-radius: 15px;
}
.connect-intro strong,
.connect-intro p,
.account-card strong,
.account-card small {
  display: block;
  margin: 0;
}
.connect-intro p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 10px;
}
.connection-proof {
  display: block;
  margin-top: 7px;
  color: #827d74;
  font-size: 9px;
  line-height: 1.45;
}
.connection-steps {
  display: grid;
  gap: 15px;
  margin: 24px 0;
  padding: 0;
  list-style: none;
}
.connection-steps li {
  display: flex;
  align-items: center;
  gap: 11px;
}
.connection-steps li > b {
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 9px;
  background: #f1eee8;
  color: #6b6760;
  font-size: 9px;
}
.connection-steps strong,
.connection-steps small {
  display: block;
}
.connection-steps strong {
  font-size: 11px;
}
.connection-steps small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 9px;
}
.full {
  width: 100%;
  margin-top: 12px;
}
.fine-print {
  margin: 12px 0 0;
  color: var(--muted);
  font-size: 9px;
  line-height: 1.5;
}
.telegram-setup {
  display: grid;
  gap: 10px;
  margin-top: 20px;
}
.telegram-setup a {
  color: #147db3;
  font-size: 11px;
  font-weight: 700;
  text-decoration: none;
}
.sheet-copy {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.55;
}
.sheet form label {
  display: block;
  margin: 20px 0 7px;
  font-size: 9px;
  font-weight: 800;
  text-transform: uppercase;
}
.onboarding-sheet form {
  margin-top: 16px;
}
.sheet input {
  width: 100%;
  height: 44px;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 11px;
  outline: 0;
}
.sheet .otp-input {
  font-size: 24px;
  font-weight: 850;
  letter-spacing: 0.24em;
  text-align: center;
}
.form-error {
  color: #a6282e;
  font-size: 10px;
}
.assistant-result {
  display: flex;
  gap: 12px;
  padding: 17px;
  border-radius: 15px;
  background: var(--orange-soft);
}
.assistant-result > span {
  color: var(--orange);
}
.assistant-result p {
  margin: 0;
  font-size: 12px;
  line-height: 1.6;
}
.mini-prompt-art {
  position: relative;
  width: 116px;
  height: 92px;
  display: grid;
  place-items: center;
  margin: -4px auto 18px;
}
.mini-k {
  width: 64px;
  height: 64px;
  display: grid;
  place-items: center;
  border-radius: 21px;
  background: var(--orange);
  color: #fff;
  box-shadow: 0 16px 34px rgba(255, 107, 40, 0.25);
  font:
    800 32px Georgia,
    serif;
  transform: rotate(-4deg);
}
.mini-orbit {
  position: absolute;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #f0ede6;
  color: #7e7971;
}
.mini-orbit.one {
  top: 0;
  right: 2px;
  width: 30px;
  height: 30px;
  color: var(--orange);
}
.mini-orbit.two {
  left: 0;
  bottom: 1px;
  width: 26px;
  height: 26px;
  font-size: 10px;
}
.mini-prompt-copy {
  margin: 0 auto 18px;
  max-width: 390px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
  text-align: center;
}
.mini-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}
.primary:disabled {
  border-color: #dfd9d0;
  background: #dfd9d0;
  color: #89847d;
  cursor: not-allowed;
}
.text-dismiss {
  display: block;
  margin: 13px auto 0;
  padding: 7px 12px;
  border: 0;
  background: transparent;
  color: #6f6b64;
  font-size: 11px;
  font-weight: 750;
}
.mini-coming-soon {
  text-align: center;
}
.toast {
  position: fixed;
  z-index: 60;
  left: 50%;
  bottom: 24px;
  padding: 11px 15px;
  border-radius: 11px;
  background: #222;
  color: #fff;
  font-size: 10px;
  font-weight: 750;
  transform: translateX(-50%);
}
@media (max-width: 900px) {
  .product-frame {
    grid-template-columns: 78px minmax(0, 1fr);
  }
  .sidebar {
    padding-inline: 10px;
  }
  .wordmark {
    justify-content: center;
  }
  .wordmark > span:last-child,
  .tab span:nth-child(2),
  .tab b,
  .sidebar-foot span:last-child {
    display: none;
  }
  .tab {
    grid-template-columns: 1fr;
    justify-items: center;
  }
  .sidebar-foot {
    justify-content: center;
  }
  .brief-grid {
    grid-template-columns: 1fr;
  }
  .inbox-layout {
    grid-template-columns: minmax(280px, 0.9fr) minmax(320px, 1.1fr);
  }
  .integration-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 680px) {
  .product-frame {
    display: block;
    padding-bottom: 72px;
  }
  .sidebar {
    position: fixed;
    z-index: 20;
    inset: auto 0 0;
    height: 68px;
    display: block;
    padding: 7px 10px;
    border: 0;
    border-top: 1px solid var(--line);
    background: rgba(245, 243, 238, 0.96);
  }
  .wordmark,
  .sidebar-foot {
    display: none;
  }
  .tab-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 5px;
    margin: 0;
  }
  .tab {
    min-height: 53px;
    display: grid;
    grid-template-columns: 1fr;
    justify-items: center;
    gap: 2px;
    padding: 3px;
  }
  .tab span:nth-child(2) {
    display: block;
    font-size: 9px;
  }
  .topbar {
    height: 68px;
    padding-inline: 16px;
  }
  .account-button span {
    display: none;
  }
  .page {
    padding: 14px;
  }
  .summary-hero {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    padding: 0 0 18px;
  }
  .summary-hero h1 {
    margin: 6px 0 8px;
    font-size: 32px;
    line-height: 1.02;
    letter-spacing: -0.035em;
  }
  .summary-hero p:last-child {
    font-size: 12px;
    line-height: 1.45;
  }
  .summary-hero .primary {
    min-height: 38px;
  }
  .summary-actions {
    width: 100%;
  }
  .summary-actions .primary,
  .summary-actions .secondary {
    flex: 1;
  }
  .summary-hero.live-brief {
    gap: 10px;
    padding-bottom: 14px;
  }
  .live-brief h1 {
    font-size: 28px;
  }
  .live-brief p:last-child {
    -webkit-line-clamp: 3;
  }
  .integration-heading {
    padding: 0 0 16px;
  }
  .integration-heading h1 {
    margin: 5px 0 7px;
    font-size: 30px;
    line-height: 0.98;
    letter-spacing: -0.035em;
  }
  .integration-heading > p:last-child {
    font-size: 11px;
    line-height: 1.35;
  }
  .inbox-layout {
    height: auto;
    min-height: 0;
    display: block;
  }
  .inbox-layout.has-selection .conversation-list {
    display: none;
  }
  .conversation-list {
    border-right: 0;
  }
  .thread {
    min-height: calc(100vh - 190px);
  }
  .thread > header {
    grid-template-columns: 32px 38px minmax(0, 1fr);
    padding: 12px;
  }
  .thread > header > .thread-source {
    display: none;
  }
  .thread-back {
    display: grid;
    place-items: center;
    width: 32px;
    height: 32px;
    padding: 0;
  }
  .integration-main {
    grid-template-columns: 36px minmax(0, 1fr) auto;
    gap: 10px;
  }
  .integration-main > .channel-icon {
    width: 36px;
    height: 36px;
    border-radius: 11px;
  }
  .integration-main > .channel-icon svg {
    width: 20px;
    height: 20px;
  }
  .integration-grid {
    gap: 10px;
  }
  .integration-card {
    padding: 14px;
  }
  .integration-main button {
    min-height: 32px;
    padding-inline: 13px;
  }
  .connection-note {
    margin-top: 12px;
    padding: 12px 14px;
  }
  .sheet {
    padding: 28px 22px;
  }
  .sheet h2 {
    font-size: 36px;
  }
}
