@font-face {
  font-family: "Instrument Sans";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("/warm-signal/fonts/instrument-sans-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Newsreader";
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
  src: url("/warm-signal/fonts/newsreader-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --font-instrument-sans: "Instrument Sans";
  --font-newsreader: "Newsreader";
}

html {
  min-height: 100%;
  scroll-behavior: smooth;
  background: #f7f3f5;
}

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

.warm-signal-page {
  --ws-canvas: #f7f3f5;
  --ws-paper: #fffcfd;
  --ws-ink: #242126;
  --ws-muted: #68616a;
  --ws-line: #ded6db;
  --ws-rose: #e78aa5;
  --ws-rose-soft: #f7dee7;
  --ws-berry: #8f234d;
  --ws-plum: #3d2531;
  --ws-violet: #6d56b3;
  --ws-white: #fffafd;
  min-height: 100dvh;
  overflow: clip;
  background: var(--ws-canvas);
  color: var(--ws-ink);
  font-family: var(--font-instrument-sans), "Instrument Sans", "Geist", ui-sans-serif, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.62;
}

.warm-signal-page *,
.warm-signal-page *::before,
.warm-signal-page *::after {
  box-sizing: border-box;
}

.warm-signal-page a {
  color: inherit;
  text-decoration: none;
}

.warm-signal-page .ws-main {
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 0;
}

.ws-container {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.ws-narrow {
  max-width: 880px;
}

.ws-skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  translate: 0 -160%;
  padding: 10px 16px;
  border: 2px solid var(--ws-paper);
  border-radius: 10px;
  background: var(--ws-plum);
  color: var(--ws-white) !important;
  font-weight: 750;
  transition: translate 160ms ease;
}

.ws-skip-link:focus {
  translate: 0;
}

.warm-signal-page :focus-visible,
.ws-apple-button:focus-visible,
.ws-auth-page :focus-visible {
  outline: 3px solid var(--ws-violet, #6d56b3);
  outline-offset: 3px;
}

.ws-site-header {
  border-bottom: 1px solid color-mix(in srgb, var(--ws-line) 84%, transparent);
  background: color-mix(in srgb, var(--ws-canvas) 94%, transparent);
}

.ws-header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 28px;
  align-items: center;
  width: min(1180px, calc(100% - 48px));
  min-height: 82px;
  margin-inline: auto;
}

.ws-wordmark {
  font-family: var(--font-newsreader), "Newsreader", Georgia, serif;
  font-size: 1.42rem;
  font-weight: 650;
  letter-spacing: -0.03em;
}

.ws-home-mark {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border-radius: 50%;
  transition: background-color 150ms ease;
}

.ws-home-mark:hover {
  background: var(--ws-rose-soft);
}

.ws-home-mark-symbol {
  display: block;
  width: 34px;
  height: 34px;
}

.ws-nav,
.ws-header-actions,
.ws-hero-actions,
.ws-form-actions {
  display: flex;
  align-items: center;
}

.ws-nav {
  justify-content: center;
  gap: 26px;
  color: var(--ws-muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.ws-nav a,
.ws-footer nav a {
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.ws-nav a:hover,
.ws-footer nav a:hover {
  color: var(--ws-berry);
}

.ws-header-actions,
.ws-hero-actions {
  gap: 10px;
}

.ws-button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 12px;
  padding: 10px 17px;
  font: inherit;
  font-size: 0.91rem;
  font-weight: 760;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: transform 150ms ease, background-color 150ms ease, border-color 150ms ease;
}

.ws-button:hover:not(:disabled) {
  transform: translateY(-1px);
}

.ws-button:disabled {
  cursor: wait;
  opacity: 0.65;
}

.ws-button-primary {
  border-color: var(--ws-berry);
  background: var(--ws-berry);
  color: var(--ws-white) !important;
}

.ws-button-primary:hover:not(:disabled) {
  background: #791c40;
}

.ws-button-secondary {
  border-color: var(--ws-line);
  background: var(--ws-paper);
  color: var(--ws-ink) !important;
}

.ws-button-secondary:hover:not(:disabled) {
  border-color: var(--ws-rose);
  background: var(--ws-rose-soft);
}

.ws-button-ink {
  border-color: var(--ws-ink);
  background: var(--ws-ink);
  color: var(--ws-white) !important;
}

.ws-hero {
  padding: 76px 0 94px;
}

.ws-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(420px, 0.92fr);
  gap: clamp(42px, 7vw, 96px);
  align-items: center;
}

.ws-hero-copy {
  max-width: 650px;
}

.ws-hero-lockup {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  margin: 0 0 30px;
  color: var(--ws-ink);
  white-space: nowrap;
}

.ws-hero-lockup-symbol {
  display: block;
  width: 64px;
  height: 64px;
  flex: 0 0 auto;
}

.ws-hero-lockup-name {
  font-family: var(--font-newsreader), "Newsreader", Georgia, serif;
  font-size: 2.65rem;
  font-weight: 650;
  letter-spacing: -0.045em;
  line-height: 1;
}

.ws-eyebrow {
  margin: 0 0 15px;
  color: var(--ws-berry);
  font-size: 0.77rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  line-height: 1.3;
  text-transform: uppercase;
}

.ws-hero h1,
.ws-section h2,
.ws-signal-section h2,
.ws-auth-page h1 {
  margin: 0;
  font-family: var(--font-newsreader), "Newsreader", Georgia, serif;
  font-weight: 520;
  letter-spacing: -0.045em;
  line-height: 0.98;
  text-wrap: balance;
}

.ws-hero h1 {
  max-width: 720px;
  font-size: clamp(3.55rem, 6.7vw, 6rem);
}

.ws-hero-lede {
  max-width: 610px;
  margin: 29px 0 0;
  color: var(--ws-muted);
  font-size: clamp(1.05rem, 1.7vw, 1.22rem);
  line-height: 1.62;
}

.ws-hero-actions {
  flex-wrap: wrap;
  margin-top: 31px;
}

.ws-microcopy {
  margin: 13px 0 0;
  color: var(--ws-muted);
  font-size: 0.8rem;
  font-weight: 630;
}

.ws-hero-visual {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ws-line);
  border-radius: 34px;
  background: var(--ws-paper);
  box-shadow: 0 24px 70px rgba(61, 37, 49, 0.1);
}

.ws-hero-visual img {
  display: block;
  width: 100%;
  height: auto;
}

.ws-hero-visual figcaption {
  position: absolute;
  right: 24px;
  bottom: 24px;
  width: min(330px, calc(100% - 48px));
  padding: 18px 20px;
  border: 1px solid rgba(61, 37, 49, 0.12);
  border-radius: 18px;
  background: rgba(255, 252, 253, 0.93);
  box-shadow: 0 12px 30px rgba(61, 37, 49, 0.11);
  color: var(--ws-ink);
  font-size: 0.87rem;
  line-height: 1.46;
}

.ws-hero-visual figcaption span,
.ws-hero-visual figcaption strong {
  display: block;
  margin: 0 0 3px;
  color: var(--ws-berry);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.ws-hero-visual figcaption strong {
  margin-top: 12px;
}

.ws-section {
  padding: 104px 0;
}

.ws-section h2,
.ws-signal-section h2 {
  font-size: clamp(2.6rem, 5vw, 4.6rem);
}

.ws-recognition {
  border-block: 1px solid var(--ws-line);
  background: var(--ws-paper);
}

.ws-recognition-copy {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 34px;
  margin-top: 48px;
  color: var(--ws-muted);
}

.ws-recognition-copy p {
  margin: 0;
}

.ws-recognition-copy p:last-child {
  color: var(--ws-ink);
  font-weight: 720;
}

.ws-section-heading {
  max-width: 720px;
}

.ws-outcome-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 58px;
  border-block: 1px solid var(--ws-line);
}

.ws-outcome-list article {
  padding: 32px 32px 35px 0;
}

.ws-outcome-list article + article {
  padding-left: 32px;
  border-left: 1px solid var(--ws-line);
}

.ws-outcome-list span {
  color: var(--ws-rose);
  font-family: var(--font-newsreader), "Newsreader", Georgia, serif;
  font-size: 1.15rem;
}

.ws-outcome-list h3 {
  margin: 30px 0 12px;
  font-family: var(--font-newsreader), "Newsreader", Georgia, serif;
  font-size: 1.6rem;
  font-weight: 580;
  line-height: 1.12;
}

.ws-outcome-list p {
  margin: 0;
  color: var(--ws-muted);
}

.ws-signal-section {
  padding: 112px 0;
  background: var(--ws-plum);
  color: var(--ws-white);
}

.ws-signal-section .ws-eyebrow {
  color: #f1a6bc;
}

.ws-signal-grid,
.ws-founder-grid,
.ws-faq-grid,
.ws-invite-grid,
.ws-closing-inner {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(48px, 9vw, 120px);
}

.ws-signal-grid > div > h2 ~ p {
  max-width: 590px;
  margin: 28px 0 0;
  color: #d9cfd4;
  font-size: 1.05rem;
}

.ws-signal-grid > div > p + p {
  margin-top: 16px;
}

.ws-trust-list {
  margin: 0;
  border-top: 1px solid rgba(255, 250, 253, 0.2);
}

.ws-trust-list div {
  display: grid;
  grid-template-columns: 0.6fr 1.4fr;
  gap: 22px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(255, 250, 253, 0.2);
}

.ws-trust-list dt {
  font-weight: 780;
}

.ws-trust-list dd {
  margin: 0;
  color: #d9cfd4;
}

.ws-founder {
  background: var(--ws-rose-soft);
}

.ws-founder blockquote {
  margin: 0;
  padding-left: 28px;
  border-left: 3px solid var(--ws-berry);
  color: #51474f;
  font-family: var(--font-newsreader), "Newsreader", Georgia, serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  line-height: 1.5;
}

.ws-founder blockquote p {
  margin: 0;
}

.ws-founder blockquote p + p {
  margin-top: 22px;
}

.ws-faq-grid {
  align-items: start;
}

.ws-disclosures {
  border-top: 1px solid var(--ws-line);
}

.ws-disclosures details {
  border-bottom: 1px solid var(--ws-line);
}

.ws-disclosures summary {
  min-height: 64px;
  padding: 19px 42px 19px 0;
  font-weight: 760;
  cursor: pointer;
}

.ws-disclosures details p {
  margin: 0;
  padding: 0 0 25px;
  color: var(--ws-muted);
}

.ws-invite-section {
  border-top: 1px solid var(--ws-line);
  background: var(--ws-paper);
}

.ws-invite-grid > div > p:not(.ws-eyebrow, .ws-microcopy) {
  max-width: 500px;
  margin-top: 25px;
  color: var(--ws-muted);
}

.ws-invite-form {
  padding: clamp(24px, 4vw, 40px);
  border: 1px solid var(--ws-line);
  border-radius: 24px;
  background: var(--ws-canvas);
  box-shadow: 0 18px 48px rgba(61, 37, 49, 0.08);
}

.ws-form-grid {
  display: grid;
  gap: 20px;
}

.ws-field {
  display: grid;
  gap: 8px;
}

.ws-field label {
  color: var(--ws-ink);
  font-size: 0.89rem;
  font-weight: 760;
}

.ws-field label span {
  color: var(--ws-muted);
  font-weight: 540;
}

.ws-field input,
.ws-field textarea {
  width: 100%;
  min-height: 48px;
  border: 1px solid #c9bec4;
  border-radius: 11px;
  background: var(--ws-paper);
  color: var(--ws-ink);
  font: inherit;
  font-size: 1rem;
  line-height: 1.45;
}

.ws-field input {
  padding: 10px 13px;
}

.ws-field textarea {
  min-height: 108px;
  padding: 12px 13px;
  resize: vertical;
}

.ws-field [aria-invalid="true"] {
  border-color: #b42345;
}

.ws-honeypot {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.ws-form-actions {
  gap: 16px;
  margin-top: 23px;
}

.ws-form-privacy {
  margin: 14px 0 0;
  color: var(--ws-muted);
  font-size: 0.76rem;
  line-height: 1.45;
}

.ws-form-status {
  margin-top: 18px;
  color: #335c4e;
  font-weight: 650;
}

.ws-form-status:empty {
  display: none;
}

.ws-form-status p {
  margin: 0;
}

.ws-form-status.is-error {
  color: #8c1d3f;
}

.ws-text-link {
  display: inline-block;
  min-height: 44px;
  margin-top: 8px;
  padding: 8px 0;
  color: var(--ws-berry) !important;
  font-weight: 780;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.ws-closing {
  background: var(--ws-paper);
}

.ws-closing-inner {
  align-items: center;
}

.ws-closing-inner .ws-button {
  justify-self: end;
}

.ws-footer {
  padding: 54px 0;
  border-top: 1px solid var(--ws-line);
  background: var(--ws-canvas);
}

.ws-footer-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr 1fr;
  gap: 46px;
  align-items: start;
}

.ws-footer p {
  margin: 7px 0 0;
  color: var(--ws-muted);
  font-size: 0.82rem;
}

.ws-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 11px 23px;
  color: var(--ws-muted);
  font-size: 0.83rem;
  font-weight: 650;
}

.ws-footer .ws-footer-note {
  margin: 0;
  text-align: right;
}

.ws-auth-page {
  --ws-canvas: #f7f3f5;
  --ws-paper: #fffcfd;
  --ws-ink: #242126;
  --ws-muted: #68616a;
  --ws-line: #ded6db;
  --ws-berry: #8f234d;
  --ws-plum: #3d2531;
  --ws-violet: #6d56b3;
  display: grid;
  min-height: 100dvh;
  place-items: center;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 28px;
  background: var(--ws-canvas);
  color: var(--ws-ink);
  font-family: var(--font-instrument-sans), "Instrument Sans", "Geist", ui-sans-serif, system-ui, sans-serif;
}

.ws-auth-shell {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(340px, 1.1fr);
  width: min(940px, 100%);
  overflow: hidden;
  border: 1px solid var(--ws-line);
  border-radius: 28px;
  background: var(--ws-paper);
  box-shadow: 0 26px 80px rgba(61, 37, 49, 0.12);
}

.ws-auth-intro,
.ws-auth-action-panel {
  padding: clamp(32px, 6vw, 64px);
}

.ws-auth-intro {
  background: var(--ws-plum);
  color: #fffafd;
}

.ws-auth-intro .ws-wordmark {
  color: #fffafd;
}

.ws-auth-intro h1 {
  margin-top: 82px;
  font-size: clamp(2.9rem, 5vw, 4.8rem);
}

.ws-auth-intro p {
  margin: 24px 0 0;
  color: #d9cfd4;
}

.ws-auth-action-panel {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.ws-auth-action-panel h2 {
  margin: 0;
  font-family: var(--font-newsreader), "Newsreader", Georgia, serif;
  font-size: 2rem;
  font-weight: 560;
  letter-spacing: -0.035em;
}

.ws-auth-action-panel > p,
.ws-auth-panel p {
  color: var(--ws-muted);
}

.ws-auth-panel {
  margin-top: 22px;
}

.ws-apple-button {
  display: inline-grid;
  width: min(100%, 340px);
  min-height: 48px;
  place-items: center;
  overflow: hidden;
  border: 0;
  border-radius: 10px;
  padding: 0;
  background: #000;
  cursor: pointer;
}

.ws-apple-button img {
  display: block;
  width: 100%;
  height: 48px;
  object-fit: cover;
}

.ws-auth-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 30px;
  color: var(--ws-muted);
  font-size: 0.84rem;
  font-weight: 650;
}

.ws-auth-error {
  margin-top: 18px;
  color: #8c1d3f !important;
  font-weight: 680;
}

.ws-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 980px) {
  .ws-nav {
    display: none;
  }

  .ws-header-inner {
    grid-template-columns: 1fr auto;
  }

  .ws-hero-grid,
  .ws-signal-grid,
  .ws-founder-grid,
  .ws-faq-grid,
  .ws-invite-grid {
    grid-template-columns: 1fr;
  }

  .ws-hero-grid {
    gap: 46px;
  }

  .ws-hero-copy {
    max-width: 760px;
  }

  .ws-hero-visual {
    max-width: 760px;
  }

  .ws-recognition-copy,
  .ws-outcome-list {
    grid-template-columns: 1fr;
  }

  .ws-outcome-list article,
  .ws-outcome-list article + article {
    padding: 28px 0;
    border-left: 0;
    border-bottom: 1px solid var(--ws-line);
  }

  .ws-outcome-list article:last-child {
    border-bottom: 0;
  }

  .ws-footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .ws-footer .ws-footer-note {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 760px) {
  .ws-container,
  .ws-header-inner {
    width: min(100% - 32px, 1180px);
  }

  .ws-site-header {
    background: var(--ws-canvas);
  }

  .ws-header-inner {
    min-height: 70px;
    gap: 14px;
  }

  .ws-header-actions .ws-button-secondary,
  .ws-header-actions .ws-button-ink {
    padding-inline: 11px;
  }

  .ws-header-actions .ws-button-primary {
    display: none;
  }

  .ws-hero {
    padding: 56px 0 66px;
  }

  .ws-hero-lockup {
    gap: 13px;
    margin-bottom: 25px;
  }

  .ws-hero-lockup-symbol {
    width: 52px;
    height: 52px;
  }

  .ws-hero-lockup-name {
    font-size: 2.2rem;
  }

  .ws-hero h1 {
    font-size: clamp(3.05rem, 15vw, 4.5rem);
  }

  .ws-hero-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .ws-hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ws-hero-actions .ws-button {
    width: 100%;
  }

  .ws-hero-visual {
    border-radius: 24px;
  }

  .ws-hero-visual figcaption {
    position: relative;
    right: auto;
    bottom: auto;
    width: auto;
    margin: -8px 16px 16px;
  }

  .ws-section,
  .ws-signal-section {
    padding: 76px 0;
  }

  .ws-section h2,
  .ws-signal-section h2 {
    font-size: clamp(2.45rem, 12vw, 3.7rem);
  }

  .ws-recognition-copy {
    gap: 20px;
    margin-top: 36px;
  }

  .ws-trust-list div {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .ws-form-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .ws-form-actions .ws-button {
    width: 100%;
  }

  .ws-closing-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .ws-closing-inner .ws-button {
    width: 100%;
  }

  .ws-footer-grid {
    grid-template-columns: 1fr;
  }

  .ws-footer .ws-footer-note {
    grid-column: auto;
  }

  .ws-auth-page {
    place-items: start center;
    padding: 16px;
  }

  .ws-auth-shell {
    grid-template-columns: 1fr;
    border-radius: 22px;
  }

  .ws-auth-intro h1 {
    margin-top: 46px;
  }
}

@media (max-width: 390px) {
  .ws-wordmark {
    font-size: 1.25rem;
  }

  .ws-hero-lockup-symbol {
    width: 48px;
    height: 48px;
  }

  .ws-hero-lockup-name {
    font-size: 2rem;
  }

  .ws-header-actions .ws-button {
    min-height: 44px;
    padding-inline: 9px;
    font-size: 0.8rem;
  }

  .ws-hero h1 {
    font-size: clamp(2.75rem, 15vw, 3.6rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html,
  .warm-signal-page *,
  .warm-signal-page *::before,
  .warm-signal-page *::after,
  .ws-auth-page *,
  .ws-auth-page *::before,
  .ws-auth-page *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
/* HB-WI-113: one-shot product continuity demo. */
.ws-hero-demo {
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--ws-line);
  border-radius: 34px;
  background:
    radial-gradient(circle at 88% 8%, rgba(231, 138, 165, 0.24), transparent 34%),
    var(--ws-paper);
  box-shadow: 0 24px 70px rgba(61, 37, 49, 0.1);
}

.ws-hero-demo figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.ws-hero-demo figcaption {
  padding: 16px 20px;
  border-top: 1px solid var(--ws-line);
  background: rgba(255, 252, 253, 0.88);
  color: var(--ws-muted);
  font-size: 0.78rem;
  font-weight: 680;
}

.ws-hero-demo figcaption button {
  min-height: 44px;
  border: 1px solid var(--ws-line);
  border-radius: 12px;
  padding: 8px 13px;
  background: var(--ws-paper);
  color: var(--ws-berry);
  font: inherit;
  font-weight: 780;
  cursor: pointer;
}

.ws-hero-demo figcaption button:hover {
  border-color: var(--ws-rose);
  background: var(--ws-rose-soft);
}

.ws-hero-demo figcaption button:focus-visible {
  outline: 3px solid var(--ws-violet);
  outline-offset: 3px;
}

.ws-founder blockquote footer {
  margin-top: 24px;
  color: var(--ws-berry);
  font-family: var(--font-instrument-sans), "Instrument Sans", sans-serif;
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.03em;
}

@media (max-width: 760px) {
  .ws-hero-demo figcaption {
    align-items: flex-start;
    flex-direction: column;
  }

  .ws-hero-demo figcaption button {
    width: 100%;
  }
}

/* iMessage-style public demo, mirrored from the Render web surface. */
.ws-hero-demo{background:radial-gradient(circle at 88% 8%,rgba(231,138,165,.28),transparent 34%),radial-gradient(circle at 8% 95%,rgba(109,86,179,.12),transparent 36%),var(--ws-paper)}.ws-hero-demo figcaption{gap:14px}
.ws-imessage-phone{width:min(100%,404px);margin:clamp(18px,3vw,36px) auto;border:8px solid #1c1c1e;border-radius:42px;padding:4px;background:#1c1c1e;box-shadow:0 22px 46px rgba(48,29,40,.24)}
.ws-imessage-screen{min-height:565px;overflow:hidden;border-radius:31px;background:#fff;color:#111113;font-family:-apple-system,BlinkMacSystemFont,"SF Pro Text","Segoe UI",sans-serif}
.ws-imessage-status,.ws-imessage-header,.ws-imessage-composer,.ws-imessage-row{display:flex;align-items:center}.ws-imessage-status{justify-content:space-between;padding:10px 22px 6px;font-size:.72rem;font-weight:760}.ws-imessage-status-icons{letter-spacing:.12em;font-size:.45rem}.ws-imessage-header{min-height:58px;justify-content:space-between;border-bottom:1px solid #e5e5ea;padding:0 14px}.ws-imessage-back,.ws-imessage-info{display:grid;width:30px;height:30px;place-items:center;color:#007aff;font-size:2rem;line-height:1}.ws-imessage-info{width:22px;height:22px;border:1.5px solid currentColor;border-radius:50%;font-size:.82rem;font-weight:800}.ws-imessage-contact{display:flex;align-items:center;gap:9px;text-align:left}.ws-imessage-contact strong,.ws-imessage-contact small{display:block}.ws-imessage-contact strong{font-size:.8rem}.ws-imessage-contact small{margin-top:1px;color:#8e8e93;font-size:.62rem}.ws-imessage-avatar{display:grid;width:30px;height:30px;place-items:center;border-radius:50%;background:#f2d7e0;color:#8f234d;font-family:Georgia,serif;font-size:1.05rem;font-weight:780}
.ws-imessage-thread{display:grid;align-content:start;gap:9px;min-height:430px;padding:18px 13px 12px}.ws-imessage-thread--staged>.ws-demo-scene-1,.ws-imessage-thread--staged>.ws-demo-scene-2,.ws-imessage-thread--staged>.ws-demo-scene-3,.ws-imessage-thread--staged>.ws-demo-scene-4,.ws-imessage-thread--staged>.ws-demo-scene-5,.ws-imessage-thread--staged>.ws-demo-scene-6{opacity:0;visibility:hidden}.ws-imessage-day{margin:2px 0 4px;color:#8e8e93;font-size:.65rem;font-weight:600;text-align:center}.ws-imessage-row{width:100%}.ws-imessage-row-outgoing{justify-content:flex-end}.ws-imessage-row-incoming{justify-content:flex-start}.ws-imessage-message{max-width:82%;border-radius:19px;padding:9px 12px 7px;font-size:.91rem;line-height:1.28}.ws-imessage-message p,.ws-imessage-message small{margin:0}.ws-imessage-message small{display:block;margin-top:4px;font-size:.62rem;line-height:1;opacity:.72}.ws-imessage-row-outgoing .ws-imessage-message{border-bottom-right-radius:5px;background:#0a84ff;color:#fff}.ws-imessage-row-incoming .ws-imessage-message{border-bottom-left-radius:5px;background:#e9e9eb;color:#111113}.ws-imessage-receipt{margin:-4px 5px 0;color:#8e8e93;font-size:.62rem;line-height:1;text-align:right}.ws-imessage-composer{gap:9px;min-height:52px;border-top:1px solid #e5e5ea;padding:8px 12px 11px}.ws-imessage-composer>span:first-child{flex:1;border:1px solid #d1d1d6;border-radius:17px;padding:8px 11px;color:#8e8e93;font-size:.77rem}.ws-imessage-send{display:grid;width:26px;height:26px;place-items:center;border-radius:50%;background:#0a84ff;color:#fff;font-size:.9rem;font-weight:800}
.ws-imessage-phone.is-playing .ws-demo-scene-1{animation:ws-imessage-stage-1 14s steps(1, end) infinite}.ws-imessage-phone.is-playing .ws-demo-scene-2{animation:ws-imessage-stage-2 14s steps(1, end) infinite}.ws-imessage-phone.is-playing .ws-demo-scene-3{animation:ws-imessage-stage-3 14s steps(1, end) infinite}.ws-imessage-phone.is-playing .ws-demo-scene-4{animation:ws-imessage-stage-4 14s steps(1, end) infinite}.ws-imessage-phone.is-playing .ws-demo-scene-5{animation:ws-imessage-stage-5 14s steps(1, end) infinite}.ws-imessage-phone.is-playing .ws-demo-scene-6{animation:ws-imessage-stage-6 14s steps(1, end) infinite}@keyframes ws-imessage-stage-1{0%,5%{opacity:0;visibility:hidden}5.1%,92%{opacity:1;visibility:visible}92.1%,100%{opacity:0;visibility:hidden}}@keyframes ws-imessage-stage-2{0%,17%{opacity:0;visibility:hidden}17.1%,92%{opacity:1;visibility:visible}92.1%,100%{opacity:0;visibility:hidden}}@keyframes ws-imessage-stage-3{0%,29%{opacity:0;visibility:hidden}29.1%,92%{opacity:1;visibility:visible}92.1%,100%{opacity:0;visibility:hidden}}@keyframes ws-imessage-stage-4{0%,41%{opacity:0;visibility:hidden}41.1%,92%{opacity:1;visibility:visible}92.1%,100%{opacity:0;visibility:hidden}}@keyframes ws-imessage-stage-5{0%,53%{opacity:0;visibility:hidden}53.1%,92%{opacity:1;visibility:visible}92.1%,100%{opacity:0;visibility:hidden}}@keyframes ws-imessage-stage-6{0%,65%{opacity:0;visibility:hidden}65.1%,92%{opacity:1;visibility:visible}92.1%,100%{opacity:0;visibility:hidden}}
@media (max-width:760px){.ws-imessage-phone{width:min(100%,382px);margin:18px auto}.ws-imessage-screen{min-height:540px}.ws-imessage-thread{min-height:405px}}@media (prefers-reduced-motion:reduce){.ws-imessage-thread--staged>.ws-demo-scene-1,.ws-imessage-thread--staged>.ws-demo-scene-2,.ws-imessage-thread--staged>.ws-demo-scene-3,.ws-imessage-thread--staged>.ws-demo-scene-4,.ws-imessage-thread--staged>.ws-demo-scene-5,.ws-imessage-thread--staged>.ws-demo-scene-6{opacity:1;visibility:visible;animation:none!important}}

/* The staged items remain available to assistive technology; only their paint changes. */
.ws-imessage-thread--staged>.ws-demo-scene-1,.ws-imessage-thread--staged>.ws-demo-scene-2,.ws-imessage-thread--staged>.ws-demo-scene-3,.ws-imessage-thread--staged>.ws-demo-scene-4,.ws-imessage-thread--staged>.ws-demo-scene-5,.ws-imessage-thread--staged>.ws-demo-scene-6{visibility:visible!important}
