@font-face {
  font-family: "Space Grotesk";
  src: url("/assets/fonts/SpaceGrotesk.ttf") format("truetype");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
}
:root {
  --yellow: #fdc003;
  --ink: #19171f;
  --muted: #67636f;
  --paper: #f8f7f2;
  --violet: #6550d4;
  --line: #e4e1d9;
  --pink: #f5b8d0;
  --mint: #b7e8d3;
  --radius: 24px;
  --max: 1240px;
  font-synthesis: none;
  color-scheme: light;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 48px;
}
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Space Grotesk", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
button {
  font: inherit;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
summary {
  touch-action: manipulation;
}
img {
  display: block;
  max-width: 100%;
}
button:focus-visible,
a:focus-visible,
summary:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid var(--violet);
  outline-offset: 5px;
}
::selection {
  background: var(--yellow);
  color: var(--ink);
}
[hidden] {
  display: none !important;
}
.wrap {
  width: min(var(--max), calc(100% - 96px));
  margin-inline: auto;
}
.icon-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}
.icon {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
  vertical-align: middle;
}
.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  background: var(--ink);
  color: white;
  padding: 12px 20px;
  border-radius: 10px;
  transform: translateY(-160%);
}
.skip-link:focus {
  transform: none;
}
.eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  line-height: 1.5;
  margin: 0 0 24px;
  display: flex;
  align-items: center;
  gap: 9px;
}
.status-dot {
  width: 7px;
  height: 7px;
  background: #23815a;
  border-radius: 50%;
  display: inline-block;
  box-shadow: 0 0 0 4px #23815a12;
  flex-shrink: 0;
}
/* Navigation and shared actions. */
.site-header {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}
.nav {
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 40px;
}
.brand {
  display: inline-flex;
  gap: 9px;
  align-items: center;
  font-size: 31px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: -1.9px;
  flex-shrink: 0;
}
.brand-mark {
  display: grid;
  place-items: center;
  background: var(--yellow);
  width: 39px;
  height: 39px;
  border-radius: 12px;
  margin-right: 1px;
}
.brand-period {
  color: var(--violet);
  margin-left: -8px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 33px;
  margin: auto;
  font-size: 0.875rem;
  font-weight: 500;
}
.nav-links a {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links .icon {
  width: 15px;
  height: 15px;
}
.nav-links a:hover,
.site-footer a:not(.brand):hover {
  color: var(--violet);
}
.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  gap: 19px;
  min-height: 56px;
  padding: 15px 24px;
  border-radius: 12px;
  font-size: 0.9375rem;
  font-weight: 600;
  line-height: 1.25;
  border: 1px solid transparent;
  transition:
    background 0.18s,
    transform 0.18s,
    box-shadow 0.18s;
}
.button:hover {
  transform: translateY(-2px);
}
.button .icon {
  width: 20px;
  height: 20px;
}
.button-dark {
  background: var(--ink);
  color: #fff;
}
.button-dark:hover {
  background: #37313f;
  box-shadow: 0 6px 0 #19171f14;
}
.button-outline {
  border-color: #ccc8bf;
  background: transparent;
}
.button-outline:hover {
  background: #fff;
  border-color: var(--ink);
}
.button-small {
  min-height: 44px;
  padding: 11px 17px;
  font-size: 0.875rem;
  border-radius: 9px;
}
.button-small .icon {
  width: 18px;
  height: 18px;
}
.button-light {
  background: var(--paper);
  color: var(--ink);
}
.mobile-nav {
  display: none;
}
/* A compact introduction, paired with the actual kinds of conversations. */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 66px;
  align-items: center;
  padding-block: 81px 78px;
}
.hero-copy {
  padding-bottom: 4px;
  min-width: 0;
}
.hero-copy .eyebrow {
  margin-bottom: 25px;
}
.hero h1 {
  font-size: clamp(3.9rem, 6.5vw, 6.6rem);
  font-weight: 700;
  line-height: 1.01;
  letter-spacing: -0.075em;
  margin: 0 0 32px;
}
.highlight {
  position: relative;
  isolation: isolate;
  white-space: nowrap;
}
.highlight::after {
  content: "";
  position: absolute;
  left: -4px;
  right: -12px;
  bottom: 1px;
  height: 24%;
  background: var(--yellow);
  z-index: -1;
  transform: rotate(-2deg);
  border-radius: 3px;
}
.hero-description {
  font-size: 1.0625rem;
  line-height: 1.75;
  color: var(--muted);
  margin: 0;
}
.hero-description.last {
  margin-top: 11px;
  color: #3f3948;
}
.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 31px;
}
.hero-fine {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 24px;
  font-size: 0.8125rem;
  color: var(--muted);
}
.hero-fine span {
  display: flex;
  align-items: center;
  gap: 5px;
}
.hero-fine .icon {
  width: 14px;
  height: 14px;
  color: #21754c;
}
.hero-product {
  position: relative;
  min-width: 0;
  padding: 22px 0 0;
}
.hero-note {
  position: absolute;
  right: 14px;
  top: -14px;
  font-size: 0.875rem;
  transform: rotate(5deg);
  color: #787069;
  z-index: 1;
}
.hero-note > span {
  display: inline-block;
  font-size: 35px;
  vertical-align: middle;
  margin-left: 3px;
  transform: rotate(12deg);
}
.product-window {
  position: relative;
  background: #23202e;
  color: #f8f6ff;
  border: 1px solid #484052;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    9px 10px 0 #e6e0d4,
    0 24px 48px #231a1d12;
  transform: rotate(-2deg);
  isolation: isolate;
}
.window-chrome {
  height: 39px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 19px;
  background: #302b3a;
  border-bottom: 1px solid #40394a;
  font-size: 0.75rem;
  color: #c0b7ce;
  letter-spacing: 0.025em;
}
.window-dots {
  display: flex;
  gap: 5px;
}
.window-dots i {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #726778;
}
.window-dots i:first-child {
  background: #fdc003;
}
.window-chrome > img {
  opacity: 0.75;
}
.demo-tabs {
  display: flex;
  gap: 3px;
  padding: 13px 17px 12px;
  border-bottom: 1px solid #3a3445;
}
.demo-tabs button {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  flex: 1;
  min-height: 44px;
  padding: 9px 11px;
  border: 0;
  background: transparent;
  color: #c8bfd7;
  border-radius: 8px;
  font-size: 0.875rem;
  line-height: 1.2;
  font-weight: 500;
  cursor: pointer;
  transition:
    background 0.18s,
    color 0.18s;
}
.demo-tabs button[aria-selected="true"] {
  background: #51446c;
  color: white;
}
.demo-tabs button:hover {
  background: #3f374f;
  color: white;
}
.demo-tabs button:focus-visible {
  outline-color: var(--yellow);
  outline-offset: -2px;
}
.demo-tabs .icon {
  width: 17px;
  height: 17px;
}
.demo-panel {
  min-height: 416px;
  padding: 21px 22px 18px;
  outline-offset: -4px !important;
}
.chat-heading {
  display: flex;
  align-items: center;
  gap: 10px;
}
.avatar {
  width: 32px;
  height: 32px;
  border-radius: 11px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 700;
  color: var(--ink);
  flex-shrink: 0;
}
.avatar-yellow {
  background: var(--yellow);
}
.avatar-pink {
  background: var(--pink);
}
.avatar-mint {
  background: var(--mint);
}
.chat-heading > .avatar {
  width: 41px;
  height: 41px;
  border-radius: 13px;
}
.chat-heading > .avatar .icon {
  width: 25px;
  height: 25px;
}
.chat-heading strong {
  display: block;
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.chat-heading div > span {
  display: block;
  color: #bfb4d0;
  font-size: 0.75rem;
  margin-top: 2px;
}
.online-label {
  font-size: 0.75rem;
  color: #b7dfc9;
  margin-left: auto;
  white-space: nowrap;
  display: flex;
  align-items: center;
  gap: 5px;
}
.online-label i,
.connected-label i {
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background: #82d7a9;
  display: inline-block;
}
.messages {
  padding-top: 23px;
}
.message {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  margin-bottom: 12px;
  font-size: 0.875rem;
  line-height: 1.5;
}
.message > .avatar {
  width: 27px;
  height: 27px;
  border-radius: 50%;
  font-size: 0.75rem;
  margin-bottom: 2px;
}
.message > div {
  min-width: 0;
  max-width: calc(100% - 36px);
}
.message-name {
  display: block;
  font-size: 0.75rem;
  color: #c4b3e6;
  line-height: 1;
  margin: 0 0 7px 3px;
}
.message-name time {
  color: #afa5bf;
  font-size: 0.75rem;
  margin-left: 6px;
}
.message p {
  margin: 0;
  background: #393245;
  padding: 9px 12px;
  border-radius: 11px 11px 11px 3px;
  overflow-wrap: anywhere;
}
.outgoing {
  justify-content: flex-end;
}
.outgoing .message-name {
  text-align: right;
  color: #bcb3ce;
}
.outgoing p {
  background: var(--violet);
  color: white;
  border-radius: 11px 11px 3px 11px;
}
.voice-bubble {
  display: flex;
  align-items: center;
  gap: 11px;
  background: #514273;
  padding: 11px 12px;
  border-radius: 11px 11px 11px 3px;
}
.voice-bubble > span:last-child {
  font-size: 0.75rem;
  color: #ded6ef;
}
.play-shape {
  width: 0;
  height: 0;
  border-top: 5px solid transparent;
  border-bottom: 5px solid transparent;
  border-left: 8px solid currentColor;
  display: inline-block;
  flex-shrink: 0;
}
.waveform {
  display: flex;
  gap: 3px;
  height: 25px;
  align-items: center;
  overflow: hidden;
  min-width: 0;
}
.waveform i {
  height: var(--bar-height, 50%);
  width: 3px;
  flex: 0 0 3px;
  border-radius: 5px;
  background: currentColor;
  transform-origin: center;
  opacity: 0.83;
}
.reaction {
  display: inline-flex;
  gap: 7px;
  align-items: center;
  background: #f4c542;
  color: #352422;
  padding: 2px 9px;
  border-radius: 20px;
  font-size: 0.75rem;
  margin: 4px 0 0 9px;
  line-height: 1.65;
}
.reaction b {
  font-size: 0.75rem;
}
.demo-composer {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 11px 12px;
  color: #bdb1d0;
  background: #30293d;
  border: 1px solid #463c55;
  border-radius: 10px;
  font-size: 0.75rem;
  margin-top: 18px;
}
.demo-composer > span {
  flex: 1;
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.demo-composer .icon {
  width: 16px;
  height: 16px;
}
.floating-sticker {
  display: flex;
  align-items: center;
  gap: 9px;
  position: absolute;
  right: -20px;
  bottom: 57px;
  z-index: 2;
  transform: rotate(7deg);
  background: var(--yellow);
  color: var(--ink);
  padding: 12px 18px;
  border-radius: 9px;
  border: 1.5px solid var(--ink);
  box-shadow: 3px 4px 0 var(--ink);
  font-size: 0.8125rem;
  font-weight: 600;
  pointer-events: none;
}
.floating-sticker .icon {
  width: 18px;
  height: 18px;
}
.demo-caption {
  font-size: 0.75rem;
  text-align: center;
  margin: 21px 0 0;
  color: #756d71;
}
/* Alternate preview panels. */
.space-demo {
  padding-top: 26px;
}
.mini-label {
  font-size: 0.75rem;
  color: #b9aecb;
  letter-spacing: 0.08em;
  display: block;
  margin-bottom: 13px;
}
.channel {
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 13px 14px;
  background: #302938;
  border: 1px solid #3e354a;
  border-radius: 9px;
  font-size: 0.875rem;
  margin-bottom: 10px;
}
.channel > span {
  color: #b6a3e6;
  font-size: 21px;
  line-height: 1;
}
.channel.active {
  background: #4f426b;
}
.channel.active > span {
  color: var(--yellow);
}
.channel > b {
  margin-left: auto;
  background: var(--yellow);
  color: var(--ink);
  font-size: 0.75rem;
  padding: 2px 7px;
  border-radius: 20px;
}
.channel:nth-of-type(2) > b {
  background: var(--pink);
}
.channel:nth-of-type(3) > b {
  background: var(--mint);
}
.voice-channel {
  margin-top: 17px;
  padding-block: 16px;
}
.voice-channel > .icon {
  width: 22px;
  color: var(--mint);
}
.voice-channel small {
  display: block;
  color: #b9aec9;
  font-size: 0.75rem;
}
.avatar-stack {
  display: flex;
  margin-left: auto;
}
.avatar-stack .avatar {
  margin-left: -6px;
  border: 2px solid #302938;
  border-radius: 50%;
  width: 29px;
  height: 29px;
  font-size: 0.75rem;
}
.call-demo {
  text-align: center;
  padding: 28px 0 10px;
}
.connected-label {
  font-size: 0.75rem;
  letter-spacing: 0.045em;
  color: var(--mint);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.call-people {
  display: flex;
  justify-content: center;
  gap: 24px;
  margin: 28px 0;
}
.call-people > div {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  font-size: 0.875rem;
  color: #c7bdd6;
}
.call-people .avatar {
  width: 69px;
  height: 69px;
  border-radius: 50%;
  font-size: 1.5rem;
}
.call-people .speaking {
  outline: 2px solid var(--mint);
  outline-offset: 5px;
}
.call-wave {
  height: 44px;
  justify-content: center;
  color: var(--yellow);
  gap: 4px;
}
.call-demo p {
  color: #b9aec9;
  font-size: 0.875rem;
  margin: 24px 0 0;
}
/* Product benefits. */
.value-strip {
  border-block: 1px solid var(--ink);
  background: var(--yellow);
  overflow: hidden;
}
.value-strip > .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding-block: 20px;
  white-space: nowrap;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}
.value-strip .icon {
  height: 18px;
  width: 18px;
  stroke-width: 2;
}
.section {
  padding-block: 96px;
}
.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 38px;
}
.section-heading .eyebrow {
  margin-bottom: 13px;
  color: var(--muted);
}
h2 {
  font-size: clamp(2.6rem, 4.3vw, 4rem);
  line-height: 1.05;
  letter-spacing: -0.065em;
  font-weight: 700;
  margin: 0;
}
h2 > span {
  color: var(--violet);
}
.section-heading > p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.65;
  margin: 0 0 4px;
}
.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
}
.feature-card {
  min-width: 0;
  padding: 33px 36px 31px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}
.feature-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  margin-bottom: 23px;
}
.feature-icon {
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border-radius: 12px;
  background: #ffffff85;
  border: 1px solid #19171f10;
}
.feature-icon > .icon {
  width: 22px;
  height: 22px;
}
.feature-number {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  font-weight: 600;
  color: #66605d;
}
.feature-card h3 {
  font-size: 2.25rem;
  letter-spacing: -0.055em;
  line-height: 1.1;
  margin: 0 0 16px;
  font-weight: 600;
}
.feature-card p {
  font-size: 1rem;
  line-height: 1.65;
  color: var(--muted);
  max-width: 440px;
  margin: 0;
}
.feature-voice {
  background: #6750ce;
  border-color: #6750ce;
  color: white;
}
.feature-voice .feature-icon {
  background: #ffffff18;
  border-color: #ffffff26;
}
.feature-voice .feature-number,
.feature-voice p {
  color: #ede6ff;
}
.feature-spaces {
  background: #e6ecd9;
}
.feature-video {
  background: #f7e8db;
}
.feature-quiet {
  background: #e8edf3;
}
.voice-sample {
  margin-top: 29px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #9384c326;
  background: #fffefa;
  color: #6851b9;
  box-shadow: 0 5px 0 #35216c33;
  transform: rotate(-2deg);
  border-radius: 16px;
  padding: 14px 18px;
  width: 95%;
  max-width: 415px;
}
.sample-avatar {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 37px;
  height: 37px;
  border-radius: 50%;
  background: var(--pink);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--ink);
}
.voice-sample .waveform {
  height: 32px;
  flex: 1;
  gap: 4px;
}
.voice-sample .waveform i {
  flex-basis: 4px;
  width: 4px;
}
.sample-duration {
  font-size: 0.75rem;
  color: var(--muted);
}
.card-aside {
  display: block;
  font-size: 0.75rem;
  color: #ece5ff;
  text-align: right;
  margin-top: 19px;
  margin-right: 25px;
  transform: rotate(-2deg);
}
.channel-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 30px;
  max-width: 410px;
  padding-bottom: 13px;
}
.channel-tags > span {
  font-size: 0.875rem;
  font-weight: 500;
  border: 1px solid #19171f19;
  background: #fafbf6;
  border-radius: 9px;
  padding: 9px 14px;
}
.channel-tags > span:first-child {
  background: #d4d1ef;
  border-color: #b8afd7;
  transform: rotate(-3deg);
}
.channel-tags > span:last-child {
  transform: rotate(2deg);
}
.video-note-label {
  display: flex;
  align-items: center;
  gap: 17px;
  margin-top: 30px;
  border-top: 1px solid #cfb3a366;
  padding-top: 22px;
  font-size: 0.875rem;
  color: #7b625b;
}
.video-note-label > .icon {
  width: 35px;
  height: 35px;
  color: #996c5c;
}
.video-note-label b {
  color: #60493f;
  font-weight: 500;
}
.quiet-sample {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-top: 33px;
  padding: 19px 15px;
  background: #fcfdff;
  border: 1px solid #d9dfe9;
  border-radius: 13px;
  font-size: 0.875rem;
  box-shadow: 0 4px 0 #556b8e0a;
}
.quiet-sample > span:first-child {
  display: flex;
  align-items: center;
  gap: 8px;
}
.quiet-sample .icon {
  width: 18px;
  height: 18px;
}
.quiet-time {
  margin-left: auto;
  color: #736e7e;
  white-space: nowrap;
  font-size: 0.8125rem;
}
.toggle-demo {
  width: 31px;
  height: 19px;
  flex-shrink: 0;
  border-radius: 20px;
  background: #7360c2;
  padding: 3px;
}
.toggle-demo::after {
  content: "";
  display: block;
  background: white;
  width: 13px;
  height: 13px;
  border-radius: 50%;
  margin-left: auto;
}
/* The house bot and the API remain part of the main story. */
.yapper-section {
  background: #efeee8;
  border-block: 1px solid var(--line);
  padding-block: 74px;
}
.yapper-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 78px;
  align-items: center;
}
.yapper-art {
  position: relative;
  min-width: 0;
}
.yapper-art > img {
  width: 100%;
  height: auto;
  aspect-ratio: 3/2;
  object-fit: contain;
  border-radius: 28px;
  mix-blend-mode: multiply;
}
.art-label {
  position: absolute;
  bottom: -10px;
  left: 50%;
  transform: translateX(-50%) rotate(-4deg);
  display: flex;
  align-items: center;
  gap: 9px;
  white-space: nowrap;
  padding: 11px 20px;
  background: var(--paper);
  border: 1px solid #d1cdbf;
  box-shadow: 3px 4px 0 #dad7ce;
  border-radius: 30px;
  font-size: 0.875rem;
  font-weight: 500;
}
.yapper-copy .eyebrow {
  color: var(--muted);
  margin-bottom: 17px;
}
.yapper-copy > p:not(.eyebrow) {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.75;
  max-width: 440px;
  margin: 23px 0;
}
.yapper-copy b {
  color: var(--ink);
  font-weight: 500;
}
.bot-conversation {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.875rem;
  margin-top: 27px;
  max-width: 450px;
}
.bot-request {
  align-self: flex-end;
  background: #e0daf1;
  color: #51436f;
  padding: 10px 15px;
  border-radius: 13px 13px 3px 13px;
}
.bot-request code {
  font: inherit;
}
.bot-reply {
  display: flex;
  gap: 11px;
  padding: 15px 16px;
  background: #fafaf7;
  border: 1px solid #dfdcd2;
  border-radius: 14px 14px 14px 4px;
  align-self: flex-start;
}
.bot-reply img {
  border-radius: 11px;
  flex-shrink: 0;
}
.bot-reply strong {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.8125rem;
  font-weight: 600;
}
.bot-reply strong > span {
  font-size: 0.75rem;
  letter-spacing: 0.03em;
  background: var(--violet);
  color: white;
  padding: 0 4px;
  border-radius: 3px;
}
.bot-reply p {
  margin: 4px 0 0;
  color: #655e71;
  line-height: 1.5;
}
.yapper-copy > .yapper-note {
  font-size: 0.8125rem !important;
  margin: 17px 0 0 !important;
}
.developer-section {
  padding-block: 65px;
}
.developer-card {
  background: var(--ink);
  color: white;
  border-radius: 20px;
  padding: 35px 39px;
  display: flex;
  align-items: center;
  gap: 28px;
}
.developer-symbol {
  width: 62px;
  height: 62px;
  flex-shrink: 0;
  background: #302b38;
  color: var(--yellow);
  display: grid;
  place-items: center;
  border-radius: 17px;
  border: 1px solid #534558;
}
.developer-symbol .icon {
  width: 31px;
  height: 31px;
}
.developer-card .eyebrow {
  font-size: 0.75rem;
  color: #b9aece;
  margin: 0 0 8px;
}
.developer-card h2 {
  font-size: 1.6rem;
  letter-spacing: -0.045em;
  line-height: 1.2;
}
.developer-card p:not(.eyebrow) {
  font-size: 0.875rem;
  color: #bdb4c9;
  line-height: 1.65;
  margin: 10px 0 0;
  max-width: 530px;
}
.developer-card .button {
  margin-left: auto;
  white-space: nowrap;
  flex-shrink: 0;
  font-size: 0.875rem;
  min-height: 47px;
  padding: 13px 20px;
}
.closing {
  background: var(--yellow);
  text-align: center;
  padding-block: 64px 70px;
  border-block: 1px solid var(--ink);
}
.closing-mark {
  margin: 0 auto 23px;
  filter: brightness(0);
  width: 65px;
  height: auto;
}
.closing .eyebrow {
  justify-content: center;
  font-size: 0.75rem;
  margin-bottom: 17px;
}
.closing h2 {
  font-size: clamp(2.9rem, 5.1vw, 4.6rem);
}
.closing p:not(.eyebrow) {
  color: #51421d;
  font-size: 1rem;
  margin: 24px 0 0;
}
.closing-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 25px;
  margin-top: 28px;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-size: 0.875rem;
  font-weight: 500;
  min-height: 44px;
  text-decoration: underline;
  text-underline-offset: 4px;
  text-decoration-color: #19171f50;
}
.text-link:hover {
  text-decoration-color: currentColor;
}
.text-link .icon {
  width: 18px;
  height: 18px;
}
.site-footer {
  padding-top: 36px;
}
.footer-top {
  display: flex;
  align-items: center;
  gap: 25px;
  padding-bottom: 28px;
}
.footer-top .brand {
  font-size: 27px;
}
.footer-top .brand-mark {
  width: 33px;
  height: 33px;
  border-radius: 10px;
}
.footer-top .brand img {
  width: 24px;
  height: auto;
}
.footer-top > p {
  font-size: 0.875rem;
  color: var(--muted);
  margin: 0;
}
.footer-top nav {
  display: flex;
  flex-wrap: wrap;
  gap: 25px;
  margin-left: auto;
  font-size: 0.875rem;
}
.footer-bottom {
  border-top: 1px solid var(--line);
  padding-block: 21px 25px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  color: #79727c;
  font-size: 0.75rem;
}
.footer-bottom > div {
  display: flex;
  gap: 20px;
}
@keyframes message-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
@keyframes wave-breathe {
  0%,
  100% {
    transform: scaleY(0.7);
  }
  50% {
    transform: scaleY(1);
  }
}
@media (prefers-reduced-motion: no-preference) {
  .message {
    animation: message-in 0.45s both;
  }
  .message-one {
    animation-delay: 0.2s;
  }
  .message-two {
    animation-delay: 0.55s;
  }
  .message-three {
    animation-delay: 0.9s;
  }
  .message-four {
    animation-delay: 1.3s;
  }
  .voice-bubble .waveform i,
  .call-wave i {
    animation: wave-breathe 1.3s ease-in-out 3;
    animation-delay: var(--bar-delay, 0s);
  }
  .demo-panel:not([hidden]) .space-demo,
  .demo-panel:not([hidden]) .call-demo {
    animation: message-in 0.3s both;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 105px;
  }
  .hero h1 {
    font-size: 6.7rem;
  }
}
@media (max-width: 1150px) {
  .wrap {
    width: calc(100% - 64px);
  }
  .nav {
    gap: 24px;
  }
  .nav-links {
    gap: 24px;
  }
  .hero {
    gap: 42px;
    padding-block: 70px;
  }
  .hero h1 {
    font-size: clamp(3.8rem, 7.2vw, 5.6rem);
  }
  .hero-actions {
    gap: 9px;
  }
  .hero-actions .button {
    padding-inline: 18px;
    gap: 12px;
    font-size: 0.875rem;
  }
  .hero-description {
    font-size: 1rem;
  }
  .desktop-break {
    display: none;
  }
  .hero-fine {
    gap: 10px;
  }
  .floating-sticker {
    right: -11px;
    bottom: 49px;
    font-size: 0.75rem;
    padding: 10px 14px;
  }
  .demo-panel {
    padding-inline: 16px;
  }
  .demo-tabs {
    padding-inline: 12px;
  }
  .demo-tabs button {
    font-size: 0.8125rem;
    gap: 5px;
    padding-inline: 7px;
  }
  .feature-card {
    padding: 29px;
  }
  .feature-card h3 {
    font-size: 2rem;
  }
  .yapper-grid {
    gap: 55px;
  }
  .developer-card {
    padding: 30px;
    gap: 22px;
  }
  .developer-symbol {
    display: none;
  }
  .footer-top {
    gap: 19px;
  }
  .footer-top nav {
    gap: 18px;
  }
}
@media (max-width: 850px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 54px;
    padding-top: 59px;
    padding-bottom: 58px;
  }
  .hero-copy {
    text-align: center;
  }
  .hero-copy .eyebrow {
    justify-content: center;
  }
  .hero h1 {
    font-size: clamp(4.2rem, 10.5vw, 5.9rem);
  }
  .hero-description {
    max-width: 520px;
    margin-inline: auto;
  }
  .hero-actions,
  .hero-fine {
    justify-content: center;
  }
  .hero-product {
    max-width: 525px;
    width: calc(100% - 30px);
    margin-inline: auto;
  }
  .demo-panel {
    padding: 22px;
    min-height: 445px;
  }
  .messages {
    padding-top: 26px;
  }
  .message {
    margin-bottom: 14px;
  }
  .hero-note {
    top: -17px;
  }
  .floating-sticker {
    bottom: 66px;
    right: -23px;
  }
  .value-strip > .wrap {
    font-size: 0.75rem;
    gap: 20px;
  }
  .value-strip .icon:last-child {
    display: none;
  }
  .section {
    padding-block: 68px;
  }
  .section-heading {
    align-items: flex-start;
    gap: 25px;
  }
  .section-heading > p {
    font-size: 0.9375rem;
  }
  .feature-card {
    padding: 25px;
  }
  .feature-card h3 {
    font-size: 1.85rem;
  }
  .feature-card p br {
    display: none;
  }
  .feature-number {
    font-size: 0.75rem;
    letter-spacing: 0.04em;
  }
  .voice-sample {
    padding: 12px;
    gap: 9px;
    width: 100%;
    margin-top: 26px;
  }
  .sample-avatar {
    width: 30px;
    height: 30px;
  }
  .quiet-sample {
    flex-wrap: wrap;
    gap: 8px;
    padding: 14px 12px;
  }
  .yapper-grid {
    gap: 35px;
    grid-template-columns: 0.9fr 1fr;
  }
  .yapper-copy h2 {
    font-size: 2.9rem;
  }
  .developer-section {
    padding-block: 45px;
  }
  .developer-card {
    flex-wrap: wrap;
    gap: 24px;
  }
  .developer-card .button {
    margin-left: 0;
  }
  .footer-top {
    flex-wrap: wrap;
  }
  .footer-top nav {
    width: 100%;
    margin-left: 0;
  }
  .footer-bottom > span:nth-child(2) {
    display: none;
  }
}
@media (max-width: 760px) {
  html {
    scroll-padding-top: 24px;
  }
  .wrap {
    width: calc(100% - 40px);
  }
  .nav {
    min-height: 77px;
    gap: 18px;
  }
  .brand {
    font-size: 28px;
  }
  .brand-mark {
    width: 35px;
    height: 35px;
    border-radius: 11px;
  }
  .brand-mark img {
    width: 25px;
    height: auto;
  }
  .nav-links {
    display: none;
  }
  .nav-cta {
    margin-left: auto;
    font-size: 0.875rem;
    padding: 10px 13px;
    min-height: 44px;
  }
  .nav-cta .icon {
    width: 16px;
    height: 16px;
  }
  .mobile-nav {
    display: block;
    position: relative;
  }
  .mobile-nav summary {
    cursor: pointer;
    list-style: none;
    width: 32px;
    height: 44px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    padding: 6px;
  }
  .mobile-nav summary::-webkit-details-marker {
    display: none;
  }
  .mobile-nav summary span {
    width: 20px;
    height: 1.5px;
    background: var(--ink);
    display: block;
  }
  .mobile-nav > div {
    position: absolute;
    right: 0;
    top: 48px;
    width: 220px;
    z-index: 10;
    background: var(--paper);
    border: 1px solid var(--line);
    box-shadow: 0 12px 35px #19171f15;
    border-radius: 13px;
    padding: 9px;
  }
  .mobile-nav a {
    display: block;
    padding: 11px 13px;
    border-radius: 7px;
    font-size: 0.9375rem;
  }
  .mobile-nav a:hover {
    background: #ece9e1;
  }
  .hero {
    padding-top: 47px;
    gap: 54px;
    padding-bottom: 41px;
  }
  .hero .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 24px;
    letter-spacing: 0.09em;
  }
  .hero h1 {
    font-size: clamp(3.6rem, 12.3vw, 5rem);
    letter-spacing: -0.075em;
    margin-bottom: 26px;
  }
  .hero-description {
    font-size: 1rem;
    max-width: 350px;
  }
  .hero-description.last {
    margin-top: 10px;
  }
  .hero-actions {
    margin-top: 26px;
  }
  .hero-actions .button {
    min-height: 52px;
    font-size: 0.875rem;
    padding: 14px 15px;
    gap: 10px;
    border-radius: 10px;
  }
  .hero-fine {
    font-size: 0.75rem;
    gap: 16px;
    margin-top: 20px;
  }
  .hero-product {
    width: calc(100% - 10px);
    max-width: 440px;
    padding-top: 15px;
  }
  .hero-note {
    font-size: 0.75rem;
    top: -19px;
    right: 10px;
  }
  .hero-note > span {
    font-size: 29px;
  }
  .product-window {
    border-radius: 15px;
    transform: rotate(-1.3deg);
    box-shadow:
      5px 7px 0 #e6e0d4,
      0 20px 35px #231a1d0b;
  }
  .window-chrome {
    padding-inline: 14px;
    height: 34px;
    font-size: 0.75rem;
  }
  .window-dots {
    gap: 4px;
  }
  .window-dots i {
    width: 5px;
    height: 5px;
  }
  .window-chrome > img {
    width: 18px;
    height: auto;
  }
  .demo-tabs {
    padding: 10px;
    gap: 2px;
  }
  .demo-tabs button {
    font-size: 0.75rem;
    gap: 5px;
    min-height: 44px;
    padding: 8px 5px;
  }
  .demo-tabs .icon {
    width: 15px;
    height: 15px;
  }
  .demo-panel {
    min-height: 441px;
    padding: 18px 14px 15px;
  }
  .chat-heading {
    gap: 9px;
  }
  .chat-heading > .avatar {
    width: 34px;
    height: 34px;
    border-radius: 11px;
  }
  .chat-heading > .avatar .icon {
    width: 22px;
  }
  .chat-heading strong {
    font-size: 0.875rem;
  }
  .chat-heading div > span {
    font-size: 0.75rem;
  }
  .online-label {
    font-size: 0.75rem;
  }
  .message {
    font-size: 0.8125rem;
    gap: 7px;
    margin-bottom: 14px;
  }
  .message-name {
    font-size: 0.75rem;
  }
  .message-name time {
    font-size: 0.75rem;
  }
  .message > div {
    max-width: calc(100% - 32px);
  }
  .message p {
    padding: 9px 10px;
  }
  .message > .avatar {
    width: 24px;
    height: 24px;
  }
  .voice-bubble {
    gap: 8px;
    padding: 11px 10px;
  }
  .voice-bubble .waveform {
    gap: 2px;
    max-width: 124px;
  }
  .floating-sticker {
    right: -9px;
    bottom: 43px;
    font-size: 0.75rem;
    padding: 8px 10px;
    gap: 6px;
    border-radius: 7px;
    box-shadow: 2px 3px 0 var(--ink);
  }
  .floating-sticker .icon {
    width: 15px;
    height: 15px;
  }
  .demo-composer {
    font-size: 0.75rem;
    margin-top: 24px;
    padding: 10px;
  }
  .demo-caption {
    font-size: 0.75rem;
    margin-top: 20px;
  }
  .channel {
    font-size: 0.8125rem;
  }
  .call-people {
    gap: 23px;
  }
  .call-people .avatar {
    width: 59px;
    height: 59px;
    font-size: 1.35rem;
  }
  .call-wave {
    gap: 3px;
  }
  .connected-label {
    font-size: 0.75rem;
  }
  .value-strip > .wrap {
    width: calc(100% - 32px);
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 16px;
    padding-block: 17px;
    font-size: 0.75rem;
    letter-spacing: 0.05em;
  }
  .value-strip .icon {
    width: 13px;
    height: 13px;
  }
  .value-strip .icon:nth-child(4),
  .value-strip span:nth-child(5),
  .value-strip .icon:nth-child(6) {
    display: none;
  }
  .section {
    padding-block: 53px;
  }
  .section-heading {
    display: block;
    margin-bottom: 27px;
  }
  .section-heading .eyebrow {
    font-size: 0.75rem;
    margin-bottom: 13px;
  }
  .section-heading h2 {
    font-size: 2.65rem;
  }
  .section-heading > p {
    font-size: 1rem;
    margin-top: 18px;
  }
  .section-heading > p br {
    display: none;
  }
  .feature-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }
  .feature-card {
    padding: 27px;
    border-radius: 19px;
  }
  .feature-top {
    margin-bottom: 22px;
  }
  .feature-number {
    font-size: 0.75rem;
  }
  .feature-card h3 {
    font-size: 2rem;
  }
  .feature-card p {
    max-width: 100%;
    font-size: 1rem;
  }
  .voice-sample {
    max-width: 100%;
    gap: 11px;
    padding: 14px;
  }
  .card-aside {
    font-size: 0.75rem;
    margin-right: 3px;
  }
  .channel-tags {
    padding-bottom: 0;
  }
  .channel-tags > span {
    font-size: 0.8125rem;
  }
  .quiet-sample {
    flex-wrap: nowrap;
    padding: 16px 12px;
    gap: 11px;
    font-size: 0.8125rem;
  }
  .quiet-sample .quiet-time {
    font-size: 0.75rem;
  }
  .yapper-grid {
    display: flex;
    flex-direction: column-reverse;
    gap: 32px;
  }
  .yapper-copy {
    width: 100%;
  }
  .yapper-copy h2 {
    font-size: 3rem;
  }
  .yapper-copy .eyebrow {
    font-size: 0.75rem;
  }
  .yapper-copy > p:not(.eyebrow) {
    max-width: 100%;
    font-size: 1rem;
  }
  .bot-conversation {
    max-width: 100%;
    font-size: 0.875rem;
  }
  .yapper-art {
    width: min(100%, 470px);
    margin-bottom: 20px;
  }
  .art-label {
    font-size: 0.8125rem;
    bottom: -8px;
  }
  .developer-section {
    padding-block: 35px;
  }
  .developer-card {
    padding: 28px 25px;
    border-radius: 18px;
    gap: 23px;
  }
  .developer-card h2 {
    font-size: 1.55rem;
  }
  .developer-card p:not(.eyebrow) {
    font-size: 0.9375rem;
  }
  .developer-card .eyebrow {
    margin-bottom: 11px;
  }
  .developer-card .button {
    font-size: 0.875rem;
  }
  .closing {
    padding-block: 45px 51px;
  }
  .closing-mark {
    width: 51px;
    margin-bottom: 20px;
  }
  .closing .eyebrow {
    font-size: 0.75rem;
    letter-spacing: 0.09em;
  }
  .closing h2 {
    font-size: clamp(2.35rem, 8.5vw, 3.5rem);
  }
  .closing p:not(.eyebrow) {
    font-size: 1rem;
    max-width: 310px;
    margin: 21px auto 0;
  }
  .closing-actions {
    gap: 10px;
    flex-direction: column;
    margin-top: 24px;
  }
  .closing .button {
    min-height: 51px;
    font-size: 0.9375rem;
  }
  .closing .text-link {
    font-size: 0.875rem;
  }
  .site-footer {
    padding-top: 29px;
  }
  .footer-top {
    gap: 15px;
    padding-bottom: 24px;
  }
  .footer-top > p {
    font-size: 0.8125rem;
  }
  .footer-top nav {
    gap: 14px 24px;
    font-size: 0.875rem;
    margin-top: 4px;
  }
  .footer-bottom {
    font-size: 0.75rem;
    padding-block: 18px 22px;
  }
  .footer-bottom > div {
    gap: 17px;
  }
}
@media (max-width: 360px) {
  .wrap {
    width: calc(100% - 32px);
  }
  .nav {
    gap: 12px;
  }
  .hero h1 {
    font-size: 3.5rem;
  }
  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }
  .hero-actions .button {
    font-size: 0.9375rem;
  }
  .hero-fine {
    gap: 10px;
  }
  .feature-card {
    padding: 23px;
  }
  .quiet-sample {
    flex-wrap: wrap;
  }
  .quiet-time {
    margin-left: 0;
  }
  .quiet-sample .toggle-demo {
    margin-left: auto;
  }
  .call-people {
    gap: 18px;
  }
  .call-wave i:nth-child(n + 33) {
    display: none;
  }
  .bot-reply {
    padding: 12px;
  }
  .footer-top > p {
    width: 100%;
  }
  .online-label {
    display: none;
  }
}
