@charset "utf-8";
/* CSS Document */

*,
*::before,
*::after {
  box-sizing: border-box;
}

.hero img,
.hero svg {
  display: block;
  max-width: 100%;
}

.hero button {
  font: inherit;
  color: inherit;
}

.hero {
  position: relative;
  display: flex;
  flex-direction: column;
  height: 100vh;
  min-height: 700px;
  max-width: 1512px;
  max-height: 950px;
  margin: 0 auto;
  padding: 24px 24px 12px;
  background: none;
  overflow: hidden;
}

.hero__nav {
  position: relative;
  z-index: 20;
  display: flex;
  justify-content: center;
}

.hero__nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(944px, 100%);
  padding: 8px 14px 8px 20px;
  background: rgba(178, 163, 145, 0.09);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-radius: 14px;
}

.hero__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: #333333;
  font-weight: 600;
  font-size: 16px;
}

.hero__brand-mark {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 30% 30%, #fff 0%, #d6c8b5 50%, #7b6f60 100%);
  box-shadow: inset 0 0 4px rgba(0, 0, 0, 0.2);
}

.hero__nav-links {
  display: flex;
  gap: 4px;
}

.hero__nav-links a {
  padding: 12px 10px;
  font-size: 13.8px;
  font-weight: 500;
  letter-spacing: -0.02em;
  color: rgba(149, 141, 131, 0.8);
  text-decoration: none;
  transition: color 120ms ease;
}

.hero__nav-links a:hover {
  color: #958d83;
}

.hero__nav-cta {
  display: flex;
  align-items: center;
  gap: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 21px;
  border-radius: 14px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: -0.02em;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 120ms ease, box-shadow 120ms ease, background 120ms ease;
}

.btn--ghost {
  border-color: #958d83;
  color: #958d83;
  background: transparent;
}

.btn--primary {
  background: #9e57d3;
  color: #fff;
  border-color: #9e57d3;
  box-shadow:
    inset 0 0 2px #fff,
    inset 0 1px 148px rgba(255, 255, 255, 0.08),
    inset 0 -8px 29px rgba(255, 255, 255, 0.17);
}

.btn--primary:hover {
  transform: translateY(-1px);
}

.btn--cta {
  background: #000;
  color: #faf6f2;
  padding: 14px 28px;
  font-size: 18px;
  border-radius: 16px;
  box-shadow:
    inset 0 -9px 34px rgba(255, 255, 255, 0.12),
    inset 0 1px 164px rgba(255, 255, 255, 0.08),
    inset 0 0 5px 1px rgba(255, 255, 255, 0.38);
}

.btn--cta:hover {
  transform: translateY(-1px);
}

.hero__body {
  position: relative;
  flex: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
  padding: 30px 60px 40px;
  min-height: 580px;
  width: 100%;
  max-width: 1550px;
  background:    url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAyCAYAAAAeP4ixAAAACXBIWXMAAAsTAAALEwEAmpwYAAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAFeSURBVHgB7ZnBToQwGIQLJaRigoJeoGxE6gluPgHv/wh7NLwEJlrbzR7UFP3/Rjls5ksIyfJPZ2lImAxCAAD2IPl23sOLRFbXdckRaK3vGCZJ27ZF3/eKo+m6rt66mIZ+rKrhuizLTVHIRKmbyp0z4ryVUt5aa73GEjW5UqoSkZB3K3Keo4mdBwAAAIAnEbw3NeeN+3k+VveFYNbyAdCY0Qh6DhLj+Oznc+K4HYbhoPVTR/VwgfFqHHn/yZPM8+wDIHm3pmmi3sRpfXdIsbGRv3ggawEAAACx7NGicKFrfa5xhxYMmubxQTAihyvo7n8q3AJkxpjD1sWg8bIsNsuyN8EgTV9Z8379PM85Gruu67uIZI9Hhcqe/TIAAABwWSTc6uX8YZO8/rlukn/lEcxaLsxVLtf4gEYtw5KiKHzZRi7ojseX1hWBDdXD34SUJw82MZXpf38M5VazAIBL4wNxsS5HcPLnmgAAAABJRU5ErkJggg==') 0 0 / 50px 50px repeat,
    #f7f7f0;
  border: 1px solid #d4d4d8;
  overflow: hidden;
  margin: 120px auto 0;
}

.hero__copy {
  width: 640px;
  max-width: 640px;
  transform-origin: top left;
  transform: scale(var(--copy-scale, 1));
  transition: transform 220ms ease;
}

.hero__headline {
  margin: 0 0 28px;
  font-family: 'New Science', 'Plus Jakarta Sans', system-ui, sans-serif;
  font-weight: 500;
  font-size: 80px;
  line-height: 1.08;
  letter-spacing: -0.01em;
  color: #333333;
}

.hero__headline-line {
  display: block;
  white-space: nowrap;
}

.hero__headline-accent {
  background: linear-gradient(8deg, #b34dff 11%, #f7ae01 114%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow:
    12px -6px 56px rgba(237, 145, 1, 0.2),
    -25px 18px 107px rgba(134, 39, 207, 0.3);
}

.hero__sub {
  margin: 0 0 20px;
  max-width: 540px;
  font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 300;
  font-size: 28px;
  line-height: 1.4;
  color: #333333;
}
p.very-small{
	font-family: 'Plus Jakarta Sans', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
	font-size: 12px;
	line-height: 1.2;
	color: #333333;
	margin: 0 0 20px;
}

.hero__conversation {
  position: relative;
  z-index: 1; 
  width: 100%;
  max-width: 560px;
  margin-left: auto;
  height: min(640px, 70vh);
  overflow: visible;
}
.conversation-stage {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  transform-origin: bottom right;
  transform: scale(var(--conversation-scale, 1));
  transition: transform 220ms ease;
}

@media (prefers-reduced-motion: reduce) {
  .conversation-stage {
    transition: none;
  }
}

.hero__categories {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  width: 100%;
  max-width: 1550px;
  margin: 0 auto;
  border-bottom: 1px solid #d4d4d8;
}

.hero__categories ul {
  display: flex;
  gap: 7px;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

.hero__categories li {
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  color: rgba(35, 35, 35, 0.29);
}

.hero__categories-more {
  color: rgba(35, 35, 35, 0.29);
  font-weight: 500;
  text-transform: uppercase;
}

@media (max-width: 1439px) {
  .hero {
    --conversation-scale: 0.92;
    --copy-scale: 0.92;
  }
}

@media (max-width: 1199px) {
  .hero {
    --conversation-scale: 0.85;
    --copy-scale: 0.82;
  }
	.hero__categories li{
		font-size: 11px;
	}
	.hero__categories-more{
		font-size: 11px;
	}
}

.conversation {
  display: flex;
  flex-direction: column;
  gap: 36px;
  width: 100%;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  padding: 24px 0;
  transform: translateY(var(--conversation-shift, 0px));
  transition: transform var(--msg-in-ms, 1100ms) cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

/* Suppress the slide transition during the initial mount so the user
   doesn't see the column snap into its starting position. */
.conversation--instant,
.conversation--instant .msg {
  transition: none !important;
}
.msg {
  position: relative;
  display: flex;
  width: 100%;
  transition:
    opacity var(--msg-in-ms, 1100ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--msg-in-ms, 1100ms) cubic-bezier(0.22, 1, 0.36, 1),
    filter var(--msg-in-ms, 1100ms) cubic-bezier(0.22, 1, 0.36, 1);
  transform-origin: center bottom;
  will-change: opacity, transform, filter;
}

.msg--user {
  justify-content: flex-end;
  text-align: right;
}

.msg--artie {
  justify-content: flex-start;
  text-align: left;
}
.msg--upcoming {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.msg--active {
  opacity: 1;
  transform: translate(0, 0) scale(1);
  filter: blur(0);
}
.msg--intro {
  transform: translateY(80px) scale(0.97);
}
.msg--past-1 {
  opacity: 0.55;
  transform: translateY(-4px) scale(0.99);
  filter: blur(2px);
}

.msg--past-2 {
  opacity: 0.25;
  transform: translateY(-10px) scale(0.98);
  filter: blur(5px);
  pointer-events: none;
}

.msg--past-3 {
  opacity: 0.08;
  transform: translateY(-18px) scale(0.97);
  filter: blur(8px);
  pointer-events: none;
}

/* Anything older is invisible. */
.msg--past-deep {
  opacity: 0;
  transform: translateY(-30px) scale(0.96);
  filter: blur(12px);
  pointer-events: none;
}

.msg--screen {
  overflow: visible;
  justify-content: flex-start;
}

.msg__screen-image {
  display: block;
  width: 100%;
  max-width: 100%;
  height: auto;
  object-fit: contain;
  object-position: top left;
}

@media (min-width: 961px) {
  .msg__screen-image:not(.msg__screen-image--hoisted) {
    display: none;
  }
}
@media (max-width: 961px) {
	.hero__categories{
		display: block;
	}
	.hero__categories-more{
		width: 100%;
	}
}
.msg__screen-image--hoisted {
  visibility: hidden;
  position: absolute;
  right: 0;
  bottom: 0;
  width: auto;
  height: 93%;
  max-width: 50%;
  max-height: none;
  max-width: none;
  object-fit: contain;
  object-position: bottom left;
  z-index: 2;
  opacity: 0;
  transform: translateY(40px) scale(0.98);
  transform-origin: bottom left;
  transition:
    opacity var(--msg-in-ms, 1100ms) cubic-bezier(0.22, 1, 0.36, 1),
    transform var(--msg-in-ms, 1100ms) cubic-bezier(0.22, 1, 0.36, 1),
    visibility 0s 0s;
  pointer-events: none;
}

.msg__screen-image--hoisted.msg__screen-image--visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0) scale(1);
  max-width: 50%;
}

@media (max-width: 1440px) {
	.msg__screen-image--hoisted{
	   left: 55%;
       max-width: 150%;
	}
	.msg__screen-image--hoisted.msg__screen-image--visible {
  		transform: translateY(0) scale(1);
  		max-width: 150%;
	}
}

@media (max-width: 960px) {
  .msg__screen-image--hoisted {
    position: static;
    display: block;
    height: 0;
    overflow: hidden;
    width: 100%;
    max-width: 100%;
    max-height: none;
    left: auto;
    bottom: auto;
    visibility: visible;
    opacity: 0;
    transform: translateY(16px);
    transform-origin: top center;
    transition:
      opacity var(--msg-in-ms, 1100ms) cubic-bezier(0.22, 1, 0.36, 1),
      transform var(--msg-in-ms, 1100ms) cubic-bezier(0.22, 1, 0.36, 1);
    border-radius: 8px;
    margin-top: 0;
    grid-column: 1 / -1;
  }

  .msg__screen-image--hoisted.msg__screen-image--visible {
    height: auto;
    overflow: visible;
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
    margin-top: 8px;
    max-height: 85vh;
    position: absolute;
    right: 0px;
    bottom: 0px;
    max-width: 100%;
  }
}
.conversation:has(.msg--screen.msg--active) .msg:not(.msg--screen) {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.avatar {
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 15.4px;
  border: 1.2px solid rgba(0, 0, 0, 0.1);
  background: #fefbf7;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #554e46;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  font-size: 20px;
  letter-spacing: -0.02em;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  z-index: 2;
  overflow: visible;
}

.bubble--user .avatar {
  top: -25px;
  right: -18px;
}

.bubble--artie .avatar {
  top: -25px;
  left: -18px;
}

.cta-intent .avatar {
  top: -22px;
  right: -16px;
}

.avatar__mark {
  width: 32px;
  height: 32px;
  display: block;
}

.avatar--active {
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.35), -20px 14px 82px rgba(134, 39, 207, 0.8), 10px -5px 43px #ed9101, 0 12px 17px rgba(162, 152, 131, 0.24);
  animation: artie-pulse 3.4s ease-in-out infinite;
}

@keyframes artie-pulse {
  /* Slightly smaller, dimmer aura */
  0%, 100% {
    box-shadow:
      0 0 14px rgba(255, 255, 255, 0.30),
      -16px 11px 70px rgba(134, 39, 207, 0.62),
      8px -4px 36px rgba(237, 145, 1, 0.78),
      0 12px 17px rgba(162, 152, 131, 0.24);
  }
  /* Bloomed — wider spread, brighter color */
  50% {
    box-shadow:
      0 0 20px rgba(255, 255, 255, 0.40),
      -24px 17px 96px rgba(134, 39, 207, 0.92),
      12px -6px 54px rgba(237, 145, 1, 1),
      0 12px 17px rgba(162, 152, 131, 0.24);
  }
}

.avatar--user {
  background:
    linear-gradient(
      153.43deg,
      rgba(255, 255, 255, 0.2) 16.667%,
      rgba(153, 153, 153, 0.2) 100%
    ),
    #958f89;
  color: #fff;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-weight: 600;
  /* Slightly smaller "E" so it sits comfortably within the chip. */
  font-size: 18px;
  letter-spacing: -0.01em;
}

.avatar--inactive {
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  animation: none;
}

@media (prefers-reduced-motion: reduce) {
  .avatar--active {
    animation: none;
  }
}

.bubble {
  position: relative;
  background: #fdfdf7;
  border-radius: 24px;
  padding: 24px 30px;
  box-shadow: 0 20px 32px rgba(22, 19, 15, 0.18);
  width: fit-content;
  max-width: 450px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.bubble--wide {
  max-width: 480px;
}

.bubble--artie {
  padding: 30px;
}
.bubble--user {
  padding: 30px;
}

/* ─── User bubble ────────────────────────────────────────────────────────── */
.bubble--user {
  align-items: flex-end;
  text-align: right;
}

.bubble--user .bubble__text {
  color: #7b6f60;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  max-width: max-content;
}

/* ─── Artie bubble ───────────────────────────────────────────────────────── */
.bubble--artie {
  align-items: flex-start;
  text-align: left;
}

.bubble__caption {
  font-size: 11px;
  color: #998d7d;
  font-weight: 400;
  letter-spacing: 0;
  margin: 0;
}

.bubble--artie .bubble__text {
  color: #7b6f60;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.3;
  margin: 0;
  max-width: max-content;
}

.attachments {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
  justify-content: flex-end;
}

.bubble--artie .attachments {
  justify-content: flex-start;
}

.attachments__chip {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 4px 7px;
  background: rgba(0, 0, 0, 0.04);
  border-radius: 6px;
  font-size: 13px;
  color: #998d7d;
  font-weight: 500;
  line-height: 1;
}

.attachments__chip-icon {
  width: 14px;
  height: 14px;
  opacity: 0.6;
}

.attachments__file {
  font-size: 16px;
  color: #998d7d;
  opacity: 0.7;
  font-weight: 500;
}

.process {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 4px;
  width: 100%;
  margin-left: -12px;
}

.process__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  line-height: 1.4;
  padding: 6px 12px;
  border-radius: 8px;
  background: transparent;
  transition:
    color 220ms ease,
    opacity 220ms ease,
    background-color 220ms ease;
}

.process__item--pending {
  color: #998d7d;
  opacity: 0.45;
}

.process__item--in_progress {
  color: #b34ffc;
  opacity: 1;
  background: rgba(179, 79, 252, 0.05);
}

.process__item--completed {
  color: #554e46;
  opacity: 1;
}

.process__icon {
  width: 14px;
  height: 14px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.process__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.process__item--in_progress .process__icon svg {
  animation: process-spin 1.2s linear infinite;
  transform-origin: center;
}

@keyframes process-spin {
  to { transform: rotate(360deg); }
}

.hero .ctas {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
  align-items: flex-start;
  width: 100%;
}

.hero .cta {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6.3px;
  padding: 9.5px 12px;
  background: transparent;
  border: 0.8px solid #d7cfc5;
  border-radius: 9.5px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18.9px;
  font-weight: 500;
  line-height: 1;
  color: #7b6f60 !important;
  cursor: pointer;
  transition:
    background 200ms ease,
    transform 200ms ease,
    border-color 200ms ease,
    color 200ms ease;
}

.hero .cta.cta--clicked {
  border-color: #6e04bd ;
  color: #6e04bd;
  background: rgba(110, 4, 189, 0.06);
}

.hero .cta:hover {
  background: #fefbf7;
  border-color: rgba(123, 111, 96, 0.4);
  transform: translateY(-1px);
}

.cta--recommended {
  border-color: rgba(158, 87, 211, 0.45);
  color: #9e57d3;
  background: rgba(158, 87, 211, 0.04);
}

.cta--recommended:hover {
  background: rgba(158, 87, 211, 0.08);
  border-color: #9e57d3;
}

.cta__icon {
  width: 18.9px;
  height: 18.9px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.msg--cta-intent {
  align-items: center;
}

.cta-intent {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6.3px;
  padding: 9.5px 12px;
  background: #fdfdf7;
  border: 0.8px solid #d7cfc5;
  border-radius: 9.5px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 18.9px;
  font-weight: 500;
  line-height: 1;
  color: #7b6f60;
  box-shadow: 0 20px 32px rgba(22, 19, 15, 0.18);
}

.cta-intent__icon {
  width: 18.9px;
  height: 18.9px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.cta-intent__icon svg {
  width: 100%;
  height: 100%;
  display: block;
}

.property-card {
  margin-top: 8px;
  width: 100%;
  background: #fff;
  border: 0.7px solid rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  padding: 14px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.property-card__image {
  display: block;
  width: 100%;
  height: auto;
  background: #cdb89a;
  border-radius: 2px;
}

.property-card__body {
  padding: 14px 0 0;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.property-card__address {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16px;
  font-weight: 500;
  color: #554e46;
  margin: 0;
  line-height: 1.3;
}

.property-card__customer {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  color: #998d7d;
  margin: 0 0 10px;
  line-height: 1.3;
}

.property-card__stat {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  color: #554e46;
  padding: 2px 0;
}

.property-card__stat-icon {
  width: 18px;
  height: 18px;
  opacity: 0.55;
  color: #554e46;
  flex-shrink: 0;
}

.property-card__stat strong {
  font-weight: 600;
}

.property-card__stat-detail {
  color: #998d7d;
  font-weight: 400;
  margin-left: 2px;
}

.financing {
  display: flex;
  flex-direction: column;
  gap: 20px;
  width: 100%;
  margin-top: 14px;
}

.financing__card {
  position: relative;
  background: #fff;
  border: 0.7px solid rgba(0, 0, 0, 0.16);
  border-radius: 14px;
  padding: 14px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow:
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
  transition:
    border-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 320ms ease;
}

.financing__card--clicked {
  border-color: #6e04bd;
  box-shadow:
    0 0 0 2px rgba(110, 4, 189, 0.18),
    0 1px 3px rgba(0, 0, 0, 0.1),
    0 1px 2px -1px rgba(0, 0, 0, 0.1);
}

.click-ripple {
  position: absolute;
  width: 24px;
  height: 24px;
  border-radius: 999px;
  background: #6e04bd;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
  z-index: 5;
  animation: click-ripple-fire 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes click-ripple-fire {
  0% {
    transform: translate(-50%, -50%) scale(0.5);
    opacity: 0.5;
  }
  100% {
    transform: translate(-50%, -50%) scale(8);
    opacity: 0;
  }
}

.financing__header {
  display: flex;
  align-items: center;
  gap: 10px;
  height: 30px;
}

.financing__lender {
  display: inline-flex;
  align-items: center;
  height: 30px;
}

.financing__lender svg {
  height: 30px;
  width: auto;
}

.financing__product {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 3px 11px;
  background: #f4f1ed;
  border-radius: 11px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 16.4px;
  font-weight: 600;
  line-height: 22px;
  color: #554e46;
}

.financing__body {
  display: flex;
  flex-direction: column;
}

.financing__section-label {
  margin: 0 0 4px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #554e46;
}

.financing__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  width: 100%;
}

.financing__row-label {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  color: #998d7d;
}

.financing__price {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 24.5px;
  font-weight: 600;
  line-height: 1;
  color: #554e46;
  font-variant-numeric: tabular-nums;
}

.financing__terms {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 12px;
  font-weight: 400;
  line-height: 16px;
  color: #998d7d;
  text-align: right;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: 70%;
}

.financing__button {
  width: 100%;
  height: 36px;
  padding: 8px 16px;
  background: transparent;
  border: 1px solid #d7cfc5 !important;
  border-radius: 8px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  color: #554e46 !important;
  cursor: pointer;
  box-shadow: 0 1px 1px rgba(0, 0, 0, 0.05);
  transition: background 120ms ease, border-color 120ms ease, transform 120ms ease;
}

.financing__button:hover {
  background: #fefbf7;
  border-color: rgba(123, 111, 96, 0.4);
  transform: translateY(-1px);
}

@media (max-width: 960px) {
  .bubble {
    max-width: calc(100% - 60px);
    padding: 20px 22px;
  }
  .bubble--user .bubble__text,
  .bubble--artie .bubble__text {
    font-size: 18px;
  }
}

.preprompt {
  position: absolute;
  inset: 0;
  z-index: 5;
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding-left: 0;
  opacity: 1;
  transition: opacity 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.preprompt--dismissed {
  opacity: 0;
  visibility: hidden;
  transition: opacity 300ms ease, visibility 0s 300ms;
}

.prompt-box {
  position: relative;
  /* Wide enough to fit the prompt text on three lines without "bill"
     wrapping to a fourth line on its own. */
  width: min(540px, 95%);
  background: rgba(172, 155, 133, 0.2);
  border-radius: 15px;
  padding: 3px;
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
}

.prompt-box__tags {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  padding: 6px 12px;
}

.prompt-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4.5px 8px;
  background: rgba(172, 155, 133, 0.2);
  border-radius: 6px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  color: #7b6f60;
  transition:
    background-color 280ms ease,
    color 280ms ease;
}

.prompt-tag__icon {
  width: 16px;
  height: 16px;
  opacity: 0.6;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: currentColor;
}

.prompt-tag__icon svg {
  display: block;
  width: 100%;
  height: 100%;
}

.prompt-tag--active {
  background: rgba(123, 111, 96, 0.7);
  color: rgba(255, 255, 255, 0.92);
}

.prompt-tag--active .prompt-tag__icon {
  opacity: 0.85;
}

.prompt-box__input {
  position: relative;
  background: #fefbf7;
  border: 0.75px solid #d7cfc5;
  border-radius: 12px;
  padding: 16px 18px;
  min-height: 120px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 12px;
  box-shadow:
    0 20px 25px -5px rgba(0, 0, 0, 0.06),
    0 8px 10px -6px rgba(0, 0, 0, 0.06);
  overflow: hidden;
}

.prompt-box__body {
  font-size: 20px;
  line-height: 1.3;
  color: #7b6f60;
  font-weight: 400;
  word-break: break-word;
}

.prompt-box__placeholder {
  color: #998d7d;
  opacity: 0.6;
}

.prompt-keyword {
  color: #b653ff;
  font-weight: 600;
}

.prompt-box__caret {
  display: inline-block;
  width: 1.5px;
  height: 1.05em;
  background: #6e04bd;
  margin-left: 1px;
  vertical-align: text-bottom;
  animation: prompt-caret-blink 900ms steps(2, end) infinite;
}

@keyframes prompt-caret-blink {
  50% { opacity: 0; }
}

.prompt-box__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.prompt-box__attach {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #7b6f60;
}

.prompt-box__paperclip {
  width: 24px;
  height: 24px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.6;
}

.prompt-box__paperclip svg {
  width: 16px;
  height: 16px;
  display: block;
}

.prompt-attachment {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4.5px 8px;
  background: rgba(182, 83, 255, 0.05);
  border-radius: 6px;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.2;
  color: #b653ff;
  opacity: 0;
  transform: scale(0.85);
  transition:
    opacity 280ms ease,
    transform 280ms cubic-bezier(0.34, 1.56, 0.64, 1);
}

.prompt-attachment--visible {
  opacity: 1;
  transform: scale(1);
}

.prompt-attachment__x {
  width: 14px;
  height: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  cursor: pointer;
  color: currentColor; /* inherit purple from parent chip */
}

.prompt-attachment__x svg path {
  stroke: currentColor;
}

.prompt-attachment__x svg {
  width: 9px;
  height: 9px;
}

.prompt-box__actions {
  display: flex;
  align-items: center;
  gap: 6px;
}

.prompt-mic {
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  opacity: 0.7;
}

.prompt-mic svg {
  width: 12px;
  height: 14px;
  display: block;
}

.prompt-send {
  position: relative;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(172, 155, 133, 0.25);
  border: 0.75px solid transparent;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition:
    background-color 320ms cubic-bezier(0.22, 1, 0.36, 1),
    border-color 320ms ease,
    box-shadow 320ms ease,
    transform 200ms ease;
  overflow: visible;
}

.prompt-send svg {
  width: 14px;
  height: 14px;
  display: block;
}

.prompt-send svg path {
  stroke: rgba(123, 111, 96, 0.6);
  transition: stroke 320ms ease;
}

.prompt-send--ready {
  background: #6e04bd;
  border-color: rgba(255, 255, 255, 0.5);
  box-shadow:
    0 6px 8px rgba(0, 0, 0, 0.1),
    0 3px 5px rgba(0, 0, 0, 0.08);
}

.prompt-send--ready svg path {
  stroke: #fff;
}

.prompt-send--pressed {
  transform: scale(0.9);
}

.prompt-ripple {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: #6e04bd;
  transform: translate(-50%, -50%) scale(0);
  opacity: 0;
  pointer-events: none;
}

.prompt-ripple--firing {
  animation: prompt-ripple-fire 700ms cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

@keyframes prompt-ripple-fire {
  0% {
    transform: translate(-50%, -50%) scale(0.6);
    opacity: 0.55;
  }
  100% {
    transform: translate(-50%, -50%) scale(4.5);
    opacity: 0;
  }
}

.prompt-artie {
  position: absolute;
  top: -22px;
  right: -22px;
  width: 56px;
  height: 56px;
  background: #fefbf7;
  border: 1.2px solid rgba(0, 0, 0, 0.1);
  border-radius: 17px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  /* Easing for the upgrade-to-active transition. */
  transition: box-shadow 600ms cubic-bezier(0.22, 1, 0.36, 1);
}

.prompt-artie--active {
  box-shadow: 0 0 16px rgba(255, 255, 255, 0.35), -20px 14px 82px rgba(134, 39, 207, 0.8), 10px -5px 43px #ed9101, 0 12px 17px rgba(162, 152, 131, 0.24);
  animation:
    artie-bloom-in 900ms cubic-bezier(0.22, 1, 0.36, 1) 0s 1 forwards,
    artie-pulse 3.4s ease-in-out 900ms infinite;
}

@keyframes artie-bloom-in {
  0% {
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.25);
  }
  60% {
    /* Slightly overshoot so the bloom feels alive */
    box-shadow:
      0 0 22px rgba(255, 255, 255, 0.42),
      -26px 18px 96px rgba(134, 39, 207, 0.85),
      13px -6px 54px rgba(237, 145, 1, 0.95),
      0 12px 17px rgba(162, 152, 131, 0.24);
  }
  100% {
    box-shadow: 0 0 16px rgba(255, 255, 255, 0.35), -20px 14px 82px rgba(134, 39, 207, 0.8), 10px -5px 43px #ed9101, 0 12px 17px rgba(162, 152, 131, 0.24);
  }
}

.prompt-artie svg {
  width: 36px;
  height: 36px;
  display: block;
}

.prompt-dropzone {
  position: absolute;
  inset: 6px;
  border: 2px dashed #b34ffc;
  border-radius: 6px;
  background: rgba(179, 79, 252, 0.04);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b34ffc;
  font-size: 14px;
  font-weight: 600;
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.prompt-dropzone--visible {
  opacity: 1;
}

.preprompt__cursor {
  position: absolute;
  top: 0;
  left: 0;
  width: 300px;
  height: 300px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity 200ms ease,
    transform var(--cursor-dur, 400ms) cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform, opacity;
  z-index: 10;
}

.preprompt__cursor--visible {
  opacity: 1;
}

.preprompt__cursor img,
.preprompt__cursor svg {
  width: 100%;
  height: 100%;
  display: block;
}

.preprompt__pdf {
  position: absolute;
  top: 0;
  left: 0;
  width: 144px;
  height: 144px;
  pointer-events: none;
  opacity: 0;
  transition:
    opacity var(--pdf-fade-dur, 400ms) ease,
    transform var(--pdf-dur, 1500ms) cubic-bezier(0.45, 0.05, 0.55, 0.95);
  will-change: transform, opacity;
  z-index: 9;
}

.preprompt__pdf--visible {
  opacity: 1;
}

.preprompt__pdf img,
.preprompt__pdf svg {
  width: 100%;
  height: 100%;
  display: block;
}

@media (max-width: 960px) {
  .hero {
    --conversation-scale: 0.85;
    --copy-scale: 0.82;
    height: auto !important;
    min-height: 100svh;
    max-height: none !important;
    overflow: visible !important;
    padding-bottom: 24px;
  }
  .hero__nav-links {
    display: none;
  }
  .hero__body {
    display: flex !important;
    flex-direction: column !important;
    align-items: stretch !important;
    padding: 32px 40px 40px;
    gap: 36px;
    min-height: auto !important;
    overflow: visible !important;
  }
  .hero__copy {
    order: 0;
    text-align: left;
    transform-origin: top left;
    width: 100%;
    max-width: 100%;
  }
  .hero__conversation {
    order: 1;
    width: 100% !important;
    max-width: 100% !important;
    height: min(560px, 65vh) !important;
  }
  .conversation-stage {
    transform-origin: bottom center;
  }
  
}

@media (max-width: 639px) {
  .hero {
    --conversation-scale: 0.60;
    padding-left: 16px;
    padding-right: 16px;
    overflow-x: hidden !important;
	min-height: auto;
  }
  .hero__body {
    padding: 24px 16px 32px;
    gap: 0px;
    overflow: hidden !important;
	margin-top: 45px;
  }
  .hero__copy {
    transform: none !important;
  }
  .hero__headline {
    font-size: clamp(30px, 9vw, 45px);
    margin-bottom: 20px;
  }
  .hero__sub {
    font-size: clamp(15px, 3.8vw, 20px);
    max-width: 100%;
    margin-bottom: 24px;
  }
  .hero__conversation {
    height: min(480px, 45vh) !important;
  }
  .hero__categories ul {
    gap: 2px;
	margin: 0 auto;
	justify-content: center;
  }
	.hero__categories-more{
		width: 100%;
		display: block;
		text-align: center;
	}
  .hero__categories li {
    font-size: 10px;
  }
  .msg__screen-image--hoisted.msg__screen-image--visible{
    max-width: 95%;
    left: 5%;
    width: auto;
    bottom: 0px;
  }
  .hero{
    padding-left: 0px !important;
    padding-right: 0px !important;
	padding-bottom: 0px !important;
  }
  .hero__body{
    background: none !important;
    border: none !important;
    padding-bottom: 0px;
    padding-left: 0px;;
    padding-right: 0px;
  }
  .hero__copy{
    background: #fdfdf7;
    padding: 0 24px 35px;
  }
  .hero__conversation{
    background: #f6f5ee;
    padding-left: 12px;
    padding-right: 12px;
    padding-bottom: 15px;
    overflow: hidden !important;
  }
  .hero__categories{
    padding-bottom: 0px;
	border-bottom: 0;
	display: block;
  }
  .btn--cta {
	  font-size: 14px;
	  padding: 9px 28px;
  }
	.conversation-stage{
		margin-top: -80px;
	}
	.hero__categories li:last-child{
		display: none;
	}
}
@media (max-width: 460px) {
  .msg__screen-image--hoisted.msg__screen-image--visible{
    max-width: 110%;
    left: 5%;
    width: auto;
    bottom: 0px;
  }
}
@media (max-width: 410px) {
	.prompt-tag {
	  gap: 4px;
	  padding: 4.5px 6px;
	  font-size: 12px;
	}
	.prompt-box__tags {
	  gap: 4px;
	  padding: 6px 8px;
	}
}