:root {
  --ink: #102019;
  --muted: #6c7771;
  --green: #1e8f5a;
  --green-dark: #147346;
  --yellow: #f2b84b;
  --line: #dfe5dd;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}
* {
  box-sizing: border-box;
}
body {
  min-height: 100vh;
  margin: 0;
  background:
    linear-gradient(115deg, rgba(16, 32, 25, .97), rgba(31, 70, 51, .94) 58%, rgba(242, 184, 75, .72)),
    url("/aurora-product-hero.png") center / cover;
  color: #fff;
}
button,
input {
  font: inherit;
}
.demo-shell {
  min-height: 100vh;
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(340px, 520px);
  gap: clamp(28px, 6vw, 84px);
  align-items: center;
  padding: clamp(22px, 5vw, 72px);
}
.demo-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 46px;
  color: #fff;
  font-size: 18px;
  font-weight: 850;
  text-decoration: none;
}
.demo-logo span,
.demo-avatar {
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: var(--yellow);
  color: var(--ink);
  font-weight: 900;
}
.demo-logo span {
  width: 34px;
  height: 34px;
}
.demo-kicker {
  margin: 0 0 12px;
  color: var(--yellow);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
}
.demo-intro h1 {
  max-width: 720px;
  margin: 0 0 18px;
  font-size: clamp(44px, 6vw, 78px);
  line-height: .96;
  letter-spacing: 0;
}
.demo-intro > p:not(.demo-kicker) {
  max-width: 620px;
  margin: 0;
  color: rgba(255, 255, 255, .86);
  font-size: 20px;
  line-height: 1.5;
}
.demo-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 28px;
}
.demo-points span {
  border: 1px solid rgba(255, 255, 255, .2);
  border-radius: 999px;
  padding: 9px 12px;
  background: rgba(255, 255, 255, .08);
  color: rgba(255, 255, 255, .9);
  font-size: 13px;
  font-weight: 750;
}
.demo-chat-card {
  min-height: min(720px, calc(100vh - 44px));
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  border: 12px solid #08120e;
  border-radius: 38px;
  overflow: hidden;
  background: #e8ddd0;
  box-shadow: 0 34px 90px rgba(0, 0, 0, .34);
}
.demo-chat-header {
  min-height: 78px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 18px;
  background: #075e54;
  color: #fff;
}
.demo-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
}
.demo-chat-header strong,
.demo-chat-header small {
  display: block;
}
.demo-chat-header small {
  margin-top: 2px;
  color: rgba(255, 255, 255, .76);
  font-size: 12px;
}
.demo-messages {
  min-height: 0;
  overflow-y: auto;
  padding: 18px 14px;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.demo-bubble {
  width: fit-content;
  max-width: 84%;
  border-radius: 8px;
  padding: 10px 12px;
  color: #18211c;
  font-size: 14px;
  line-height: 1.4;
  white-space: pre-wrap;
  box-shadow: 0 1px 2px rgba(0, 0, 0, .12);
}
.demo-bubble.client {
  align-self: flex-end;
  background: #dcf8c6;
}
.demo-bubble.aurora {
  background: #fff;
}
.demo-bubble.typing {
  color: var(--muted);
  font-style: italic;
}
.demo-composer {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  padding: 12px;
}
.demo-composer input {
  min-width: 0;
  border: 0;
  border-radius: 999px;
  padding: 13px 16px;
  outline: none;
  color: var(--ink);
}
.demo-composer button {
  border: 0;
  border-radius: 999px;
  padding: 0 18px;
  background: var(--green);
  color: #fff;
  font-weight: 850;
  cursor: pointer;
}
.demo-composer button:hover {
  background: var(--green-dark);
}

@media (max-width: 900px) {
  .demo-shell {
    grid-template-columns: 1fr;
    padding: 18px;
  }
  .demo-logo {
    margin-bottom: 26px;
  }
  .demo-intro h1 {
    font-size: 42px;
  }
  .demo-intro > p:not(.demo-kicker) {
    font-size: 17px;
  }
  .demo-chat-card {
    min-height: 620px;
    border-width: 9px;
    border-radius: 30px;
  }
}
