/* Signal Pop / presence: shared brand, a new campaign-led landing composition. */
:root {
  color-scheme: light;
  --paper: #fbfaf7;
  --card: #fff;
  --wash: #f2f0ec;
  --ink: #14121f;
  --body: #494553;
  --muted: #686371;
  --line: #e1ded8;
  --purple: #5b4dff;
  --purple-hover: #4a3de8;
  --purple-tint: #efedff;
  --coral: #ff5c38;
  --amber: #ffb02e;
  --dark: #171322;
  --dark-text: #f7f4ff;
  --dark-muted: #c1b9d3;
  --success: #24683a;
  --font: "Archivo", sans-serif;
  --display: "Bricolage Grotesque", sans-serif;
  --radius: 18px;
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}
[data-theme="dark"] {
  color-scheme: dark;
  --paper: #100e18;
  --card: #1a1726;
  --wash: #221e2d;
  --ink: #f6f3fc;
  --body: #c8c2d4;
  --muted: #b0a8bd;
  --line: #393241;
  --purple: #a59aff;
  --purple-hover: #beb5ff;
  --purple-tint: #302945;
  --success: #8cdba0;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.6 var(--font);
  -webkit-font-smoothing: antialiased;
}
h1,
h2,
h3,
p {
  margin: 0;
}
h1,
h2,
h3 {
  font-family: var(--display);
  font-weight: 750;
  line-height: 1.04;
  letter-spacing: -0.035em;
  text-wrap: balance;
}
h1 {
  font-size: clamp(52px, 6.45vw, 90px);
  font-weight: 800;
}
h2 {
  font-size: clamp(38px, 4.1vw, 58px);
}
h3 {
  font-size: 25px;
  letter-spacing: -0.02em;
}
h1 > span,
h2 > span {
  color: var(--purple);
}
p {
  max-width: 70ch;
}
a {
  color: inherit;
  text-decoration: none;
}
a,
button,
input,
summary {
  -webkit-tap-highlight-color: transparent;
}
button,
input {
  font: inherit;
}
button {
  cursor: pointer;
}
button:disabled {
  cursor: wait;
  opacity: 0.7;
}
[hidden] {
  display: none !important;
}
::selection {
  background: var(--purple);
  color: var(--paper);
}
:focus-visible {
  outline: 3px solid var(--purple);
  outline-offset: 5px;
}
input {
  caret-color: var(--purple);
}
a {
  text-underline-offset: 5px;
}
svg {
  display: inline-block;
  vertical-align: middle;
  flex-shrink: 0;
}
svg.network-icon {
  width: 20px;
  height: 20px;
}
body > svg {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
img {
  max-width: 100%;
}
.container {
  width: min(1200px, calc(100% - 80px));
  margin-inline: auto;
}
.section {
  padding-block: 108px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 25px;
  padding: 15px 25px;
  border: 1px solid transparent;
  border-radius: 100px;
  background: #5b4dff;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  white-space: nowrap;
  min-height: 52px;
  transition:
    background 0.2s,
    transform 0.2s var(--ease);
}
.button:hover {
  background: #493be9;
  transform: translateY(-2px);
}
.button span {
  font-size: 20px;
  font-weight: 400;
}
.button.small {
  padding: 10px 19px;
  min-height: 44px;
  font-size: 13px;
  gap: 14px;
}
.button.secondary {
  color: var(--ink);
  background: transparent;
  border-color: var(--line);
}
.button.secondary:hover {
  background: var(--wash);
}
.text-link {
  font-weight: 600;
  font-size: 15px;
  display: inline-flex;
  gap: 16px;
  align-items: center;
  padding-block: 8px;
  border-bottom: 1px solid currentColor;
}
.text-link:hover {
  color: var(--purple);
}
.skip-link {
  position: fixed;
  top: -100px;
  left: 15px;
  z-index: 100;
  background: var(--ink);
  color: var(--paper);
  padding: 12px;
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.nav-row {
  min-height: 88px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font: 800 27px/1 var(--display);
  letter-spacing: -0.04em;
}
.brand-mark {
  width: 32px;
  height: 32px;
}
[data-theme="dark"] .brand-mark {
  content: url("./assets/logo/mark-on-ink.svg");
}
.site-header nav {
  display: flex;
  gap: 26px;
  margin-left: auto;
  font-size: 13px;
  font-weight: 500;
}
.site-header nav a:hover,
.login:hover,
.footer a:hover {
  color: var(--purple);
}
.nav-actions {
  display: flex;
  align-items: center;
  gap: 20px;
}
.login {
  font-size: 13px;
  font-weight: 600;
}
.theme-toggle {
  width: 40px;
  height: 40px;
  padding: 0;
  display: grid;
  place-items: center;
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 50%;
}
.theme-toggle:hover {
  background: var(--wash);
}
.hero {
  padding-top: 82px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  column-gap: 85px;
}
.hero-copy {
  min-width: 0;
}
.hero h1 {
  max-width: 860px;
}
.hero-lede {
  font-size: 19px;
  line-height: 1.65;
  color: var(--body);
  max-width: 620px;
  margin-top: 24px;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 29px;
  margin-top: 30px;
}
.hero-note {
  font-size: 12px;
  line-height: 1.65;
  color: var(--muted);
  margin-top: 18px;
}
.hero-statement {
  align-self: center;
  transform: rotate(4deg);
  border-radius: 4px 38px 4px 4px;
  background: var(--coral);
  padding: 31px 28px 35px;
  color: #201720;
  position: relative;
}
.hero-statement:after {
  content: "";
  position: absolute;
  right: 0;
  top: 0;
  width: 30px;
  height: 30px;
  background: var(--paper);
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
.hero-statement p {
  font: 500 26px/1.14 var(--display);
  letter-spacing: -0.02em;
  margin-top: 25px;
}
.hero-statement strong {
  font-weight: 800;
}
.signal-bars {
  display: inline-flex;
  gap: 5px;
  height: 28px;
  align-items: center;
}
.signal-bars i {
  display: block;
  width: 6px;
  border-radius: 4px;
  height: 17px;
  background: #5b4dff;
}
.signal-bars i:nth-child(2) {
  height: 28px;
  background: #ff5c38;
}
.signal-bars i:nth-child(3) {
  height: 22px;
  background: #ffb02e;
}
.hero-statement .signal-bars i {
  background: #201720;
}
.signal-bars.mini {
  height: 23px;
  gap: 3px;
}
.signal-bars.mini i {
  width: 4px;
}
.signal-bars.mini i:nth-child(2) {
  height: 23px;
}
.workspace {
  grid-column: 1/-1;
  margin-top: 54px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--card);
  overflow: hidden;
  box-shadow: 0 8px 20px -15px #19102e30;
  scroll-margin-top: 25px;
}
.workspace-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px 26px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  font-weight: 600;
  gap: 16px;
}
.workspace-top > span:first-child {
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  background: var(--success);
  border-radius: 50%;
}
.example-label {
  font-size: 12px;
  font-weight: 400;
  color: var(--muted);
}
.workspace-body {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
}
.brief {
  padding: 33px 38px;
  display: flex;
  flex-direction: column;
  background: var(--wash);
  border-right: 1px solid var(--line);
}
.brief-owner,
.post-author {
  display: flex;
  align-items: center;
  gap: 11px;
}
.initial {
  width: 34px;
  height: 34px;
  background: var(--ink);
  color: var(--paper);
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font: 700 21px var(--display);
  border-radius: 7px;
}
.brief-owner strong,
.post-author strong {
  display: block;
  font-size: 13px;
  font-weight: 600;
}
.brief-owner small,
.post-author small {
  font-size: 12px;
  color: var(--muted);
  display: block;
}
.brief h2 {
  font-size: 37px;
  margin-top: 32px;
}
.brief-quote {
  font-size: 17px;
  line-height: 1.55;
  margin-top: 18px;
  color: var(--body);
  max-width: 31ch;
}
.brief-facts {
  margin: 25px 0 22px;
  padding: 0;
}
.brief-facts > div {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding-block: 10px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
}
.brief-facts dt {
  color: var(--muted);
}
.brief-facts dd {
  margin: 0;
  font-weight: 500;
  text-align: right;
}
.brief-footer {
  margin-top: auto;
  padding-top: 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: var(--muted);
}
.preview-area {
  padding: 24px 30px 19px;
  min-width: 0;
  display: flex;
  flex-direction: column;
}
.preview-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  font-size: 12px;
  color: var(--body);
  margin-bottom: 16px;
}
.review-label {
  color: var(--muted);
}
.network-tabs {
  display: flex;
  gap: 8px;
  padding-bottom: 20px;
}
.network-tabs button {
  background: transparent;
  border: 1px solid var(--line);
  padding: 8px 12px;
  border-radius: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  color: var(--muted);
}
.network-tabs button[aria-selected="true"] {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--paper);
}
.network-tabs .network-icon {
  width: 14px;
  height: 14px;
}
.post-preview {
  font-size: 13px;
  line-height: 1.6;
  min-height: 360px;
}
.post-preview > p {
  margin-top: 13px;
}
.post-menu {
  margin-left: auto;
  font-weight: 700;
  letter-spacing: 2px;
}
.launch-art {
  position: relative;
  padding: 20px 25px;
  background: #eee9df;
  color: #191522;
  margin-top: 17px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 168px;
}
.launch-art > span {
  font: 600 9px/1.4 var(--font);
  letter-spacing: 0.1em;
}
.launch-art > strong {
  font: 750 33px/1.02 var(--display);
  letter-spacing: -0.03em;
  margin-top: 13px;
  z-index: 1;
}
.launch-art:after {
  content: "N";
  font: 800 180px/0.8 var(--display);
  position: absolute;
  right: 15px;
  top: 16px;
  color: #d5ccbb;
  transform: rotate(-8deg);
}
.art-path {
  display: flex;
  gap: 8px;
  align-items: center;
  font-size: 12px;
  margin-top: 16px;
  position: relative;
  z-index: 1;
}
.art-path span {
  border: 1px solid #bdb4a6;
  border-radius: 100px;
  padding: 3px 9px;
}
.art-path i {
  height: 1px;
  width: 15px;
  background: #847e73;
}
.instagram-art {
  min-height: 250px;
  background: #ffad92;
}
.instagram-art > strong {
  font-size: 44px;
}
.instagram-art:after {
  color: #e3795e;
  top: 40px;
  font-size: 200px;
}
.short-post {
  font-size: 19px !important;
  line-height: 1.45;
}
.short-preview {
  margin-top: 24px;
  padding: 17px;
  background: var(--wash);
  font-size: 12px;
  color: var(--muted);
}
.short-preview span {
  display: block;
  margin-top: 4px;
  font-size: 15px;
  color: var(--ink);
}
.preview-footer {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  padding-top: 18px;
  margin-top: auto;
  color: var(--muted);
}
.approval-mark {
  color: var(--success);
  font-size: 16px;
}
.preview-footer a {
  margin-left: auto;
  color: var(--body);
  text-decoration: underline;
}
.network-ribbon {
  grid-column: 1/-1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding: 32px 0 38px;
}
.network-ribbon p,
.network-ribbon > a {
  font-size: 12px;
  color: var(--muted);
}
.network-ribbon > div {
  display: flex;
  gap: 24px;
}
.network-ribbon .network-icon {
  width: 18px;
  height: 18px;
}
.network-ribbon > a {
  text-decoration: underline;
}
.responsibilities {
  background: var(--dark);
  color: var(--dark-text);
  padding: 92px 0;
}
.responsibilities-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px;
}
.section-intro h2 span {
  color: #afa3ff;
}
.section-intro > p {
  color: var(--dark-muted);
  margin-top: 24px;
  max-width: 370px;
  font-size: 17px;
}
.text-link.light {
  color: #e7e1f8;
  margin-top: 32px;
  font-size: 14px;
}
.responsibility-list article {
  display: flex;
  gap: 25px;
  padding: 28px 0;
  border-bottom: 1px solid #41384d;
}
.responsibility-list article:first-child {
  padding-top: 0;
}
.responsibility-list article:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.step-number {
  font: 500 12px/1.5 var(--font);
  color: #ff9d81;
  margin-top: 6px;
  font-variant-numeric: tabular-nums;
}
.responsibility-list h3 {
  font-size: 26px;
  letter-spacing: -0.02em;
}
.responsibility-list p {
  color: var(--dark-muted);
  font-size: 14px;
  margin-top: 12px;
  line-height: 1.7;
}
.section-heading {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 100px;
  align-items: end;
}
.section-heading > p {
  color: var(--body);
  font-size: 17px;
  max-width: 450px;
}
.interface-layout {
  display: grid;
  grid-template-columns: 350px minmax(0, 1fr);
  gap: 65px;
  margin-top: 48px;
}
.interface-choice {
  display: block;
  text-align: left;
  width: 100%;
  padding: 23px 34px 23px 0;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid var(--line);
  position: relative;
}
.interface-choice:first-child {
  border-top: 1px solid var(--line);
}
.interface-title {
  font-weight: 700;
  font-size: 17px;
  display: block;
}
.interface-title > span {
  display: block;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.2;
  margin-top: 7px;
  font-weight: 400;
}
.interface-choice small {
  font-size: 12px;
  color: var(--muted);
  display: block;
  margin-top: 8px;
}
.choice-arrow {
  position: absolute;
  right: 3px;
  top: 26px;
  font-size: 21px;
  color: var(--muted);
}
.interface-choice[aria-selected="true"] .interface-title,
.interface-choice[aria-selected="true"] .choice-arrow {
  color: var(--purple);
}
.interface-choice[aria-selected="true"] {
  background: var(--purple-tint);
  padding-left: 17px;
  padding-right: 40px;
  border-radius: 8px;
}
.interface-choice[aria-selected="true"] .choice-arrow {
  right: 17px;
}
.availability-summary {
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
  margin-top: 20px;
}
.availability-summary strong {
  font-weight: 500;
}
.mcp-preview { padding: clamp(24px, 4vw, 48px); background: #14121f; color: #fbfaf7; border-radius: 24px; min-height: 480px; display: flex; flex-direction: column; gap: 20px; }
.mcp-preview h3 { font-size: clamp(30px, 3.5vw, 48px); line-height: 1.08; }
.mcp-preview h3 span { color: #ffb02e; }
.mcp-preview > p { max-width: 48ch; }
.mcp-conversation { margin: 8px 0; display: grid; gap: 20px; }
.mcp-conversation blockquote { margin: 0; padding: 22px; background: #5b4dff; color: white; border-radius: 18px 18px 4px 18px; font-size: clamp(17px, 1.7vw, 22px); line-height: 1.5; }
.mcp-conversation figcaption, .mcp-footnote { color: #d4cfe5; font-size: 13px; }
.mcp-preview .text-link { color: #fbfaf7; align-self: flex-start; }
.interface-panel {
  background: var(--wash);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px;
  min-height: 380px;
  align-self: start;
}
.mini-browser {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 9px;
  overflow: hidden;
}
.mini-nav {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  align-items: center;
  padding: 16px 20px;
  border-bottom: 1px solid var(--line);
}
.mini-nav > strong {
  font: 800 18px var(--display);
}
.mini-nav > span {
  font-size: 12px;
  color: var(--muted);
}
.mini-calendar-title {
  padding: 25px 22px 20px;
}
.mini-calendar-title h3 {
  font-size: 23px;
}
.mini-calendar-title > span {
  font-size: 12px;
  color: var(--muted);
  margin-top: 9px;
  display: block;
}
.calendar-demo {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding: 0 18px 22px;
  gap: 10px;
}
.calendar-demo > div {
  min-width: 0;
}
.calendar-demo > div > strong {
  font-size: 12px;
  color: var(--muted);
  letter-spacing: 0.08em;
  margin: 0 5px 12px;
  display: block;
}
.calendar-post {
  padding: 14px 11px;
  border-radius: 7px;
  min-height: 126px;
  color: #24203c;
  background: #ebe8ff;
  font-size: 12px;
  line-height: 1.5;
}
.calendar-post span {
  display: block;
  margin-top: 13px;
  font-weight: 600;
}
.calendar-post small {
  font-size: 12px;
  display: block;
  margin-top: 10px;
  color: #4f4668;
}
.calendar-post .network-icon {
  width: 15px;
  height: 15px;
}
.calendar-post.coral {
  background: #ffe5dc;
}
.calendar-post.amber {
  background: #ffedc7;
}
.mini-bottom {
  font-size: 12px;
  color: var(--muted);
  padding: 15px 22px;
  border-top: 1px solid var(--line);
}
#panel-telegram {
  padding: 0;
  overflow: hidden;
}
.chat-demo {
  --tg-surface: #fff;
  --tg-wallpaper: #e7efdf;
  --tg-incoming: #fff;
  --tg-outgoing: #effdde;
  --tg-text: #17212b;
  --tg-muted: #586b79;
  --tg-blue: #2475a8;
  margin: 0;
  color: var(--tg-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
[data-theme="dark"] .chat-demo {
  --tg-surface: #17212b;
  --tg-wallpaper: #0e1621;
  --tg-incoming: #182533;
  --tg-outgoing: #2b5278;
  --tg-text: #f5f5f5;
  --tg-muted: #a7bacb;
  --tg-blue: #79c1f0;
}
.chat-title {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 16px 22px;
  background: var(--tg-surface);
}
.chat-avatar {
  padding: 7px;
  border-radius: 50%;
  background: #252035;
}
.chat-contact { display: grid; line-height: 1.4; }
.chat-contact strong { font-size: 16px; }
.chat-contact > span { font-size: 13px; color: var(--tg-muted); }
.chat-service {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-left: auto;
  color: var(--tg-blue);
  font-size: 12px;
}
.chat-service .network-icon { width: 18px; height: 18px; }
.chat-icon {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  color: var(--tg-muted);
}
.chat-history {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  padding: 20px clamp(16px, 4vw, 54px) 26px;
  background-color: var(--tg-wallpaper);
  background-image: radial-gradient(circle, color-mix(in srgb, var(--tg-muted) 12%, transparent) 1px, transparent 1px);
  background-size: 22px 22px;
}
.chat-date {
  align-self: center;
  margin-bottom: 10px;
  padding: 3px 12px;
  border-radius: 20px;
  background: var(--tg-surface);
  color: var(--tg-muted);
  font-size: 12px;
}
.chat-bubble {
  position: relative;
  max-width: min(82%, 430px);
  padding: 10px 12px 7px;
  font-size: 14px;
  line-height: 1.45;
  box-shadow: 0 1px 2px #00000012;
}
.chat-bubble strong { display: block; margin-bottom: 3px; }
.from-you {
  align-self: flex-end;
  background: var(--tg-outgoing);
  border-radius: 12px 12px 3px 12px;
  margin-bottom: 7px;
}
.from-agent {
  background: var(--tg-incoming);
  border-radius: 12px 12px 12px 3px;
}
.chat-bubble::after {
  content: "";
  position: absolute;
  bottom: 0;
  width: 8px;
  height: 12px;
}
.from-you::after {
  right: -6px;
  background: var(--tg-outgoing);
  clip-path: polygon(0 0, 0 100%, 100% 100%);
}
.from-agent::after {
  left: -6px;
  background: var(--tg-incoming);
  clip-path: polygon(100% 0, 0 100%, 100% 100%);
}
.chat-meta {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 4px;
  margin-top: 4px;
  font-size: 12px;
  color: var(--tg-muted);
  line-height: 1;
}
.chat-voice { width: 300px; }
.chat-voice-player { display: flex; align-items: center; gap: 10px; }
.chat-voice-play {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--tg-blue);
  color: var(--tg-surface);
}
.chat-voice-play svg { width: 24px; height: 24px; fill: currentColor; }
.chat-voice-track { min-width: 0; flex: 1; color: var(--tg-blue); }
.chat-voice-track > span { display: block; font-size: 12px; margin-top: 4px; }
.chat-waveform { display: flex; align-items: center; gap: 3px; height: 32px; }
.chat-waveform i { flex: 1; min-width: 1px; height: var(--bar); border-radius: 2px; background: currentColor; }
.chat-checks { width: 20px; height: 14px; fill: none; stroke: var(--tg-blue); stroke-width: 1.7; }
.chat-composer {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 17px 22px;
  background: var(--tg-surface);
}
.chat-composer > span { flex: 1; font-size: 14px; color: var(--tg-muted); }
.chat-mic { color: var(--tg-blue); }
.chat-note {
  padding: 12px 18px;
  font: 12px/1.5 var(--font);
  color: var(--muted);
  background: var(--wash);
  border-top: 1px solid var(--line);
  text-align: center;
}
.interface-logo {
  width: 26px;
  height: 26px;
  object-fit: contain;
  vertical-align: -6px;
  margin-right: 9px;
}
.telegram-interface-logo { color: #269ed7; fill: currentColor; }
[data-theme="dark"] .bangers-interface-logo { content: url("./assets/logo/mark-on-ink.svg"); }
#panel-team { padding: 0; overflow: hidden; }
.slack-intro { padding: 28px 30px 24px; }
.slack-brand { display: flex; align-items: center; gap: 12px; margin-bottom: 21px; }
.slack-brand > strong { font-size: 24px; letter-spacing: -0.7px; }
.slack-brand > span { margin-left: auto; padding: 4px 10px; border-radius: 20px; font-size: 12px; color: var(--success); background: color-mix(in srgb, var(--success) 10%, transparent); }
.team-preview h3 { font-size: clamp(26px, 2.6vw, 36px); }
.team-preview h3 > span { color: var(--purple); }
.slack-intro > p { font-size: 14px; line-height: 1.6; max-width: 510px; margin-top: 12px; color: var(--body); }
.slack-demo {
  --slack-surface: #fff;
  --slack-text: #1d1c1d;
  --slack-muted: #616061;
  --slack-border: #e5e5e5;
  margin: 0 30px;
  display: grid;
  grid-template-columns: 58px minmax(0, 1fr);
  overflow: hidden;
  border: 1px solid var(--slack-border);
  border-radius: 10px;
  background: var(--slack-surface);
  color: var(--slack-text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  box-shadow: 0 10px 28px #0000000d;
}
[data-theme="dark"] .slack-demo {
  --slack-surface: #1a1d21;
  --slack-text: #e8e8e8;
  --slack-muted: #b0b2b5;
  --slack-border: #383b40;
}
.slack-rail { display: flex; flex-direction: column; align-items: center; gap: 22px; padding: 15px 0; color: #fff; background: #4a154b; grid-row: span 2; }
.slack-workspace { display: grid; place-items: center; width: 32px; height: 32px; background: #fff; color: #4a154b; border-radius: 8px; font-weight: 800; }
.slack-rail-active { display: grid; place-items: center; width: 36px; height: 36px; border-radius: 9px; background: #ffffff30; }
.slack-header { display: flex; align-items: center; gap: 8px; padding: 13px 18px; }
.slack-header img, .slack-bot-avatar { background: #252035; border-radius: 6px; padding: 4px; }
.slack-header > span, .slack-message-meta > span { font-size: 12px; color: var(--slack-muted); }
.slack-tabs { display: flex; gap: 22px; padding: 0 18px; border-bottom: 1px solid var(--slack-border); font-size: 12px; color: var(--slack-muted); }
.slack-tabs strong { padding-bottom: 9px; border-bottom: 2px solid #249f8b; color: var(--slack-text); }
.slack-date { display: flex; align-items: center; gap: 10px; font-size: 12px; margin: 16px 0; }
.slack-date::before, .slack-date::after { content: ""; height: 1px; background: var(--slack-border); flex: 1; }
.slack-date > span { padding: 2px 12px; border: 1px solid var(--slack-border); border-radius: 20px; font-weight: 600; }
.slack-message { display: grid; grid-template-columns: 36px minmax(0, 1fr); gap: 10px; padding: 0 18px 18px; font-size: 14px; line-height: 1.45; }
.slack-user-avatar { display: grid; place-items: center; width: 36px; height: 36px; background: #f5bb77; color: #613516; border-radius: 6px; font-size: 20px; font-weight: 700; }
.slack-message-meta { display: flex; align-items: baseline; flex-wrap: wrap; gap: 7px; margin-bottom: 4px; }
.slack-message-meta time { font-size: 12px; color: var(--slack-muted); }
.slack-message blockquote { margin: 10px 0; padding: 0 0 0 12px; border-left: 3px solid #2eb67d; }
.slack-compose { margin: 0 18px 18px; border: 1px solid var(--slack-border); border-radius: 8px; color: var(--slack-muted); font-size: 13px; }
.slack-compose > div { display: flex; align-items: center; gap: 16px; padding: 7px 12px; }
.slack-compose > div:first-child { background: color-mix(in srgb, var(--slack-muted) 8%, transparent); }
.slack-compose > p { padding: 8px 12px; }
.slack-compose > div:last-child .ui-icon { margin-left: auto; }
.slack-demo figcaption { padding: 9px 16px; border-top: 1px solid var(--slack-border); font-size: 12px; color: var(--slack-muted); }
.slack-footer { padding: 21px 30px 26px; display: flex; align-items: center; gap: 24px; }
.slack-footer > p { font-size: 12px; color: var(--muted); max-width: 340px; }
.slack-footer .text-link { font-size: 12px; white-space: nowrap; margin-left: auto; }
.faq-integration-logo { flex-shrink: 0; margin-right: 12px; }
.coverage-section {
  background: var(--wash);
  padding-block: 75px;
}
.coverage-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 90px;
  align-items: center;
}
.coverage-layout h2 {
  font-size: 48px;
}
.coverage-layout p {
  font-size: 16px;
  color: var(--body);
  margin-top: 22px;
  max-width: 400px;
}
.coverage-layout .coverage-note {
  font-size: 12px;
  line-height: 1.7;
  margin-top: 18px;
  color: var(--muted);
}
.channel-directory {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}
.channel-directory > div,
.channel-directory > a {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 20px 8px;
  border-bottom: 1px solid var(--line);
  font-size: 12px;
  white-space: nowrap;
}
.channel-directory > a {
  color: var(--purple);
  font-weight: 600;
}
.channel-directory .network-icon {
  width: 18px;
  height: 18px;
}
.control-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 95px;
  align-items: start;
}
.control-copy > p {
  font-size: 18px;
  color: var(--body);
}
.control-copy ul {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
}
.control-copy li {
  font-size: 14px;
  line-height: 1.7;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--body);
}
.control-copy li strong {
  display: block;
  color: var(--ink);
}
.pricing-section {
  padding: 85px 0;
  background: var(--wash);
}
.plans {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 43px;
}
.plan {
  display: flex;
  flex-direction: column;
  padding: 28px;
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 14px;
}
.plan.featured {
  border-color: var(--purple);
  box-shadow: none;
}
.plan-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
}
.plan-title h3 {
  font-size: 27px;
}
.plan-title > span {
  font-size: 12px;
  color: var(--purple);
  font-weight: 600;
}
.plan-description {
  font-size: 12px;
  line-height: 1.5;
  color: var(--muted);
  margin-top: 12px;
  min-height: 36px;
}
.price {
  font: 750 49px/1 var(--display);
  margin-top: 25px;
  letter-spacing: -0.035em;
  font-variant-numeric: tabular-nums;
}
.price > span {
  font: 400 12px var(--font);
  color: var(--muted);
  letter-spacing: 0;
  margin-left: 5px;
}
.plan ul {
  list-style: none;
  padding: 25px 0;
  margin: 24px 0 0;
  border-top: 1px solid var(--line);
  font-size: 12px;
  line-height: 1.7;
  color: var(--body);
}
.plan li {
  padding: 5px 0;
}
.plan .button {
  margin-top: auto;
  width: 100%;
  font-size: 13px;
  gap: 15px;
}
.pricing-note {
  font-size: 12px;
  color: var(--muted);
  max-width: 850px;
  margin: 24px auto 0;
  text-align: center;
  line-height: 1.7;
}
.pricing-note a {
  text-decoration: underline;
}
.faq-section {
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 100px;
}
.faq-section > div > p {
  font-size: 14px;
  color: var(--muted);
  margin-top: 20px;
}
.faq-list details {
  border-bottom: 1px solid var(--line);
}
.faq-list details:first-child {
  border-top: 1px solid var(--line);
}
.faq-list summary {
  cursor: pointer;
  padding: 22px 28px 22px 0;
  position: relative;
  list-style: none;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.45;
}
.faq-list summary::-webkit-details-marker {
  display: none;
}
.faq-list summary:after {
  content: "+";
  position: absolute;
  right: 0;
  top: 18px;
  font-size: 22px;
  font-weight: 400;
  color: var(--muted);
}
.faq-list details[open] summary:after {
  content: "−";
}
.faq-list details p {
  font-size: 14px;
  color: var(--body);
  line-height: 1.75;
  padding: 0 30px 24px 0;
}
.final-section {
  padding-bottom: 64px;
}
.closing {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: 60px;
  align-items: center;
  padding: 52px;
  background: var(--dark);
  color: var(--dark-text);
  border-radius: 20px;
}
.closing h2 {
  font-size: 45px;
  margin-top: 24px;
}
.closing h2 > span {
  color: #c0b5ff;
}
.closing > div > p {
  color: var(--dark-muted);
  font-size: 14px;
  margin-top: 20px;
  max-width: 360px;
}
.signup form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.signup label {
  font-size: 13px;
  color: var(--dark-text);
}
.signup input {
  width: 100%;
  border: 1px solid #655976;
  background: #282232;
  color: #fff;
  border-radius: 8px;
  padding: 14px 16px;
  font-size: 15px;
  min-width: 0;
}
.signup input::placeholder {
  color: #b7adc7;
}
.signup input:focus-visible {
  outline-color: #b8adff;
}
.signup input[aria-invalid="true"] {
  border-color: #ffb99e;
}
.signup .button {
  margin-top: 3px;
}
.signup small {
  text-align: center;
  color: var(--dark-muted);
  font-size: 12px;
  margin-top: 2px;
}
#waitlist-error {
  color: #ffc299;
  font-size: 13px;
  margin-top: 15px;
}
#waitlist-done {
  border-top: 1px solid #655976;
  border-bottom: 1px solid #655976;
  padding-block: 28px;
}
#waitlist-done > strong {
  font: 700 30px var(--display);
}
#waitlist-done > p {
  font-size: 15px;
  margin-top: 12px;
  color: var(--dark-muted);
}
.footer {
  display: flex;
  align-items: center;
  gap: 25px;
  border-top: 1px solid var(--line);
  padding-block: 27px;
}
.footer > .brand {
  font-size: 22px;
}
.footer > .brand img {
  width: 27px;
  height: 27px;
}
.footer > p {
  font-size: 12px;
  color: var(--muted);
}
.footer nav {
  display: flex;
  gap: 22px;
  margin-left: auto;
  font-size: 12px;
  color: var(--muted);
}
@media (min-width: 1000px) and (prefers-reduced-motion: no-preference) {
  .workspace {
    animation: workspace-arrive 0.9s var(--ease) both;
  }
  @keyframes workspace-arrive {
    from {
      transform: translateY(18px);
      filter: drop-shadow(0 0 0 transparent);
    }
    to {
      transform: translateY(0);
      filter: drop-shadow(0 5px 10px #20133008);
    }
  }
}
@media (max-width: 1100px) {
  .container {
    width: calc(100% - 56px);
  }
  .nav-row {
    gap: 24px;
  }
  .site-header nav {
    gap: 17px;
  }
  .nav-actions {
    gap: 14px;
  }
  .hero {
    column-gap: 50px;
    grid-template-columns: minmax(0, 1fr) 210px;
  }
  .hero-statement {
    padding: 25px;
  }
  .hero-statement p {
    font-size: 23px;
  }
  .responsibilities-grid,
  .section-heading,
  .coverage-layout,
  .control-section,
  .faq-section {
    gap: 55px;
  }
  .interface-layout {
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 35px;
  }
  .brief {
    padding: 28px;
  }
  .preview-area {
    padding: 24px;
  }
  .network-ribbon > div {
    gap: 17px;
  }
  .plan {
    padding: 23px;
  }
  .closing {
    gap: 40px;
    padding: 40px;
  }
  .closing h2 {
    font-size: 40px;
  }
  .channel-directory {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 800px) {
  .container {
    width: calc(100% - 40px);
  }
  .nav-row {
    min-height: 76px;
  }
  .site-header nav {
    display: none;
  }
  .nav-actions {
    margin-left: auto;
    gap: 12px;
  }
  .hero {
    padding-top: 55px;
    grid-template-columns: 1fr;
    gap: 0;
  }
  .hero h1 {
    font-size: 65px;
  }
  .hero-statement {
    display: none;
  }
  .hero-lede {
    max-width: 600px;
  }
  .workspace {
    margin-top: 40px;
  }
  .brief {
    padding: 27px 24px;
  }
  .brief h2 {
    font-size: 29px;
  }
  .brief-quote {
    font-size: 15px;
  }
  .brief-facts > div {
    font-size: 12px;
    display: block;
  }
  .brief-facts dd {
    text-align: left;
    margin-top: 4px;
  }
  .brief-footer {
    font-size: 12px;
  }
  .preview-area {
    padding: 21px 20px;
  }
  .preview-heading {
    font-size: 12px;
  }
  .network-tabs {
    gap: 6px;
  }
  .network-tabs button {
    font-size: 12px;
    padding: 7px 9px;
    gap: 5px;
  }
  .network-tabs .network-icon {
    width: 12px;
    height: 12px;
  }
  .post-preview {
    font-size: 12px;
  }
  .launch-art {
    padding: 18px;
    min-height: 158px;
  }
  .launch-art > strong {
    font-size: 29px;
  }
  .preview-footer {
    font-size: 12px;
    flex-wrap: wrap;
  }
  .preview-footer a {
    margin-left: 24px;
  }
  .network-ribbon {
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
    padding: 27px 0;
  }
  .network-ribbon > p {
    width: 100%;
    text-align: center;
  }
  .network-ribbon > a {
    font-size: 12px;
  }
  .network-ribbon > div {
    gap: 20px;
  }
  .section,
  .responsibilities {
    padding-block: 72px;
  }
  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .section-heading p {
    max-width: 540px;
  }
  .responsibilities-grid {
    gap: 42px;
  }
  .responsibility-list article {
    gap: 16px;
  }
  .section-intro h2 {
    font-size: 43px;
  }
  .section-intro > p {
    font-size: 15px;
  }
  .responsibility-list h3 {
    font-size: 23px;
  }
  .responsibility-list p {
    font-size: 13px;
  }
  .interface-layout {
    grid-template-columns: 1fr;
    gap: 26px;
    margin-top: 30px;
  }
  .interface-choices {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 10px;
  }
  .interface-choice {
    padding: 15px 10px !important;
    border: 1px solid var(--line);
    border-radius: 8px;
  }
  .interface-title {
    font-size: 14px;
  }
  .interface-title > span {
    font-size: 12px;
    line-height: 1.4;
  }
  .interface-choice small {
    font-size: 12px;
    line-height: 1.4;
  }
  .choice-arrow {
    display: none;
  }
  .availability-summary {
    grid-column: 1/-1;
    margin-top: 4px;
    max-width: 100%;
  }
  .interface-panel {
    min-height: 365px;
  }
  .coverage-layout {
    gap: 35px;
  }
  .coverage-layout h2 {
    font-size: 39px;
  }
  .channel-directory > div,
  .channel-directory > a {
    font-size: 12px;
    gap: 8px;
    padding: 17px 5px;
  }
  .control-section {
    gap: 35px;
  }
  .control-section h2 {
    font-size: 43px;
  }
  .control-copy > p {
    font-size: 16px;
  }
  .plans {
    gap: 12px;
  }
  .plan {
    padding: 20px 17px;
  }
  .plan-title {
    display: block;
  }
  .plan-title > span {
    display: block;
    margin-top: 7px;
  }
  .plan-title {
    min-height: 49px;
  }
  .plan-description {
    min-height: 54px;
  }
  .price {
    font-size: 41px;
  }
  .plan li {
    font-size: 12px;
  }
  .plan .button {
    font-size: 12px;
    padding: 12px 10px;
    gap: 10px;
  }
  .faq-section {
    gap: 40px;
    grid-template-columns: 0.7fr 1.3fr;
  }
  .faq-section h2 {
    font-size: 40px;
  }
  .closing {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .closing h2 {
    font-size: 48px;
  }
  .signup {
    max-width: 430px;
  }
  .footer {
    flex-wrap: wrap;
    gap: 16px;
  }
  .footer nav {
    gap: 17px;
  }
  .footer > p {
    display: none;
  }
}
@media (max-width: 560px) {
  .container {
    width: calc(100% - 36px);
  }
  h2 {
    font-size: 38px;
  }
  .nav-row {
    min-height: 70px;
    gap: 12px;
  }
  .brand {
    font-size: 24px;
    gap: 7px;
  }
  .brand-mark {
    width: 29px;
    height: 29px;
  }
  .login {
    display: none;
  }
  .button.small {
    font-size: 12px;
    padding: 9px 13px;
    gap: 9px;
    min-height: 39px;
  }
  .theme-toggle {
    width: 33px;
    height: 33px;
  }
  .nav-actions {
    gap: 8px;
  }
  .hero {
    padding-top: 43px;
  }
  .hero h1 {
    font-size: clamp(44px, 11.4vw, 62px);
    line-height: 1.02;
    letter-spacing: -0.04em;
  }
  .hero-lede {
    font-size: 16px;
    line-height: 1.65;
    margin-top: 20px;
  }
  .hero-actions {
    gap: 24px;
    margin-top: 25px;
  }
  .hero-actions > .button {
    font-size: 13px;
    padding: 13px 21px;
    gap: 16px;
  }
  .hero-actions > .text-link {
    font-size: 13px;
    gap: 10px;
  }
  .hero-note {
    font-size: 12px;
  }
  .workspace {
    margin-top: 34px;
    border-radius: 13px;
  }
  .workspace-top {
    padding: 13px 16px;
    font-size: 12px;
    gap: 8px;
  }
  .workspace-top .example-label {
    font-size: 12px;
  }
  .workspace-body {
    grid-template-columns: 1fr;
  }
  .brief {
    padding: 23px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }
  .brief-owner {
    gap: 8px;
  }
  .brief-owner .initial {
    width: 29px;
    height: 29px;
    font-size: 18px;
  }
  .brief-owner strong {
    font-size: 12px;
  }
  .brief-owner small {
    font-size: 12px;
  }
  .brief h2 {
    font-size: 30px;
    margin-top: 22px;
  }
  .brief h2 br {
    display: none;
  }
  .brief-quote {
    font-size: 15px;
    max-width: 100%;
    margin-top: 14px;
  }
  .brief-facts {
    display: none;
  }
  .brief-footer {
    padding-top: 16px;
    font-size: 12px;
  }
  .preview-area {
    padding: 21px 20px;
  }
  .preview-heading {
    font-size: 12px;
  }
  .network-tabs {
    padding-bottom: 17px;
    gap: 7px;
  }
  .network-tabs button {
    font-size: 12px;
    padding: 8px 10px;
    gap: 7px;
  }
  .post-preview {
    font-size: 12px;
    min-height: 360px;
  }
  .launch-art {
    min-height: 171px;
    margin-top: 18px;
  }
  .launch-art > strong {
    font-size: 32px;
  }
  .launch-art > span {
    font-size: 12px;
  }
  .launch-art:after {
    font-size: 160px;
    right: 5px;
    top: 26px;
  }
  .instagram-art {
    min-height: 256px;
  }
  .instagram-art > strong {
    font-size: 41px;
  }
  .preview-footer {
    font-size: 12px;
    gap: 6px;
    padding-top: 16px;
  }
  .preview-footer a {
    margin-left: auto;
  }
  .network-ribbon {
    padding: 27px 0 32px;
    gap: 17px;
  }
  .network-ribbon > div {
    gap: 22px;
  }
  .network-ribbon .network-icon {
    width: 17px;
    height: 17px;
  }
  .network-ribbon > a {
    display: none;
  }
  .responsibilities {
    padding: 56px 0;
  }
  .responsibilities-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .section-intro h2 {
    font-size: 40px;
  }
  .section-intro > p {
    margin-top: 18px;
    max-width: 100%;
  }
  .text-link.light {
    margin-top: 19px;
  }
  .responsibility-list article {
    padding-block: 23px;
    gap: 20px;
  }
  .responsibility-list h3 {
    font-size: 24px;
  }
  .responsibility-list p {
    font-size: 14px;
  }
  .step-number {
    font-size: 12px;
  }
  .section {
    padding-block: 61px;
  }
  .section-heading {
    gap: 20px;
  }
  .section-heading p {
    font-size: 16px;
  }
  .interface-choices {
    gap: 7px;
  }
  .interface-choice {
    padding: 13px 9px !important;
  }
  .interface-title {
    font-size: 12px;
    line-height: 1.3;
  }
  .interface-title > span {
    font-size: 12px;
    min-height: 26px;
  }
  .interface-choice small {
    display: none;
  }
  .availability-summary {
    font-size: 12px;
    margin-top: 10px;
  }
  .interface-panel {
    padding: 15px;
    border-radius: 13px;
    min-height: 343px;
  }
  .mini-nav {
    padding: 14px 12px;
  }
  .mini-nav > strong {
    font-size: 16px;
  }
  .mini-nav > span {
    font-size: 12px;
  }
  .mini-calendar-title {
    padding: 23px 13px 17px;
  }
  .mini-calendar-title h3 {
    font-size: 22px;
  }
  .calendar-demo {
    padding: 0 10px 19px;
    gap: 6px;
  }
  .calendar-post {
    padding: 12px 8px;
    min-height: 142px;
    font-size: 12px;
  }
  .calendar-post small {
    font-size: 12px;
  }
  .mini-bottom {
    font-size: 12px;
    padding: 13px;
    line-height: 1.6;
  }
  .chat-title { padding: 13px 15px; gap: 9px; }
  .chat-service { font-size: 0; }
  .chat-bubble { max-width: 90%; }
  .chat-composer { padding: 15px; gap: 14px; }
  .interface-logo { width: 22px; height: 22px; display: block; margin: 0 0 8px; }
  .slack-intro { padding: 22px 18px; }
  .slack-brand { margin-bottom: 18px; }
  .slack-demo { margin: 0 10px; grid-template-columns: 36px minmax(0, 1fr); }
  .slack-rail { gap: 18px; }
  .slack-workspace { width: 26px; height: 26px; }
  .slack-rail-active { width: 28px; height: 32px; }
  .slack-message { padding: 0 12px 18px; grid-template-columns: 28px minmax(0, 1fr); gap: 8px; font-size: 13px; }
  .slack-bot-avatar, .slack-user-avatar { width: 28px; height: 28px; }
  .slack-message-meta { gap: 4px; }
  .slack-header { padding: 12px; }
  .slack-compose { margin: 0 12px 12px; }
  .slack-footer { padding: 18px; display: block; }
  .slack-footer .text-link { margin-top: 14px; }

  .coverage-section {
    padding-block: 54px;
  }
  .coverage-layout {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .coverage-layout h2 {
    font-size: 38px;
  }
  .coverage-layout p {
    margin-top: 20px;
  }
  .coverage-layout .coverage-note {
    font-size: 12px;
  }
  .channel-directory {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
  .channel-directory > div,
  .channel-directory > a {
    padding: 17px 3px;
    font-size: 12px;
    gap: 8px;
  }
  .channel-directory .network-icon {
    width: 16px;
    height: 16px;
  }
  .control-section {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .control-section h2 {
    font-size: 38px;
  }
  .control-copy li {
    font-size: 14px;
  }
  .pricing-section {
    padding-block: 57px;
  }
  .plans {
    grid-template-columns: 1fr;
    gap: 17px;
    margin-top: 30px;
  }
  .plan {
    padding: 27px;
  }
  .plan-title {
    display: flex;
    min-height: 0;
  }
  .plan-title h3 {
    font-size: 28px;
  }
  .plan-title > span {
    margin: 0;
    font-size: 12px;
  }
  .plan-description {
    min-height: 0;
    font-size: 13px;
    margin-top: 10px;
  }
  .price {
    margin-top: 23px;
    font-size: 49px;
  }
  .plan ul {
    padding-top: 20px;
    margin-top: 23px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 3px;
  }
  .plan li {
    font-size: 13px;
  }
  .plan .button {
    font-size: 14px;
    min-height: 49px;
  }
  .pricing-note {
    text-align: left;
    font-size: 12px;
    margin-top: 20px;
  }
  .faq-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }
  .faq-section h2 {
    font-size: 39px;
  }
  .faq-section h2 br {
    display: none;
  }
  .faq-section > div > p {
    margin-top: 14px;
  }
  .faq-list summary {
    font-size: 14px;
    padding-block: 21px;
  }
  .faq-list details p {
    font-size: 13px;
    padding-right: 12px;
  }
  .closing {
    padding: 30px 24px;
    border-radius: 14px;
    gap: 26px;
  }
  .closing h2 {
    font-size: 34px;
    line-height: 1.06;
    margin-top: 20px;
  }
  .closing > div > p {
    font-size: 14px;
    line-height: 1.6;
  }
  .closing h2 br {
    display: none;
  }
  .signup .button {
    font-size: 14px;
  }
  .final-section {
    padding-bottom: 42px;
  }
  .footer {
    padding-block: 24px;
    gap: 22px;
  }
  .footer nav {
    margin: 0;
    gap: 20px;
    width: 100%;
    flex-wrap: wrap;
    font-size: 12px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
@media print {
  .site-header,
  .hero-actions,
  .theme-toggle,
  .signup,
  .footer nav {
    display: none;
  }
  body {
    color: #14121f;
    background: #fff;
  }
  .container {
    width: 100%;
  }
  .workspace,
  .interface-panel,
  .plan {
    break-inside: avoid;
  }
  .section {
    padding-block: 30px;
  }
}

/* Shared stroke icons keep actions consistent at every text size. */
.ui-icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}
.button .ui-icon {
  width: 20px;
  height: 20px;
}
.button.small .ui-icon {
  width: 18px;
  height: 18px;
}
.footer .ui-icon {
  width: 13px;
  height: 13px;
  margin-left: 4px;
}
.short-preview .ui-icon {
  width: 13px;
  height: 13px;
}
.faq-list summary:after {
  content: none;
}
.faq-indicator {
  position: absolute;
  right: 0;
  top: 23px;
  color: var(--muted);
}
.faq-list details[open] .faq-indicator .vertical {
  display: none;
}
html {
  scrollbar-color: var(--muted) var(--paper);
  scrollbar-width: thin;
}

@media (max-width: 560px) {
  .workspace-top {
    flex-wrap: wrap;
  }
  .preview-footer {
    flex-wrap: wrap;
    row-gap: 10px;
  }
  .preview-footer a {
    margin-left: 0;
  }
}
