@import url(https://fonts.googleapis.com/css2?family=Lora:ital,wght@0,400;0,500;0,600;1,400;1,500&family=DM+Sans:opsz,wght@9..40,300;9..40,400;9..40,500;9..40,700&display=swap);
:root {
  --c-bg: #1c1c1c;
  --c-bg-elevated: #232323;
  --c-bubble-penny: #262626;
  --c-bubble-user: #0f0f0f;
  --c-surface-card: #2a2a2a;
  --c-border: #2c2c2c;
  --c-border-subtle: #353535;
  --c-red: #da3648;
  --c-red-hover: #e54858;
  --c-rose: #d4a89a;
  --c-rose-muted: #b89388;
  --c-text: #f5f4f0;
  --c-text-secondary: #8a8580;
  --c-text-tertiary: #5c5650;
  --font-serif: Lora, Georgia, Times New Roman, serif;
  --font-sans: DM Sans, system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --bubble-radius: 14px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  height: 100%;
  background: #1c1c1c;
  color: #f5f4f0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

body {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  line-height: 1.5;
}

img,
svg {
  display: block;
  max-width: 100%;
}

button,
input,
textarea,
select {
  font: inherit;
  color: inherit;
  background: none;
  border: 0;
  margin: 0;
  padding: 0;
}

button {
  cursor: pointer;
}

a {
  color: inherit;
  text-decoration: none;
}

[hidden] {
  display: none !important;
}

html.is-embedded,
html.is-embedded body {
  background: transparent;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: #f5f4f0;
  line-height: 1.2;
}

h1 {
  font-size: 42px;
}

h2 {
  font-size: 28px;
}

h3 {
  font-size: 22px;
}

h4 {
  font-size: 18px;
}

h5 {
  font-size: 17px;
}

h6 {
  font-size: 15px;
}

p {
  margin: 0;
  line-height: 1.55;
}

em, i {
  font-style: italic;
  color: #d4a89a;
}

strong {
  font-weight: 500;
}

::-moz-selection {
  background: #d4a89a;
  color: #1c1c1c;
}

::selection {
  background: #d4a89a;
  color: #1c1c1c;
}

.penny-shell {
  display: grid;
  grid-template-columns: 62% 38%;
  height: 100vh;
  min-height: 600px;
  background: #1c1c1c;
  color: #f5f4f0;
  overflow: hidden;
}
@media (min-width: 1700px) {
  .penny-shell {
    grid-template-columns: 1fr 480px;
  }
}
@media (max-width: 1079px) {
  .penny-shell {
    grid-template-columns: 1fr;
  }
}

.penny-shell__divider {
  width: 1px;
  background: #2c2c2c;
  pointer-events: none;
}

.penny-shell--standalone {
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.02);
}

.chat-panel {
  display: flex;
  flex-direction: column;
  height: 100vh;
  background: #1c1c1c;
  border-right: 1px solid #2c2c2c;
  overflow: hidden;
}
@media (max-width: 1079px) {
  .chat-panel {
    border-right: 0;
  }
}

.chat-panel__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 0 56px;
  border-bottom: 1px solid #2c2c2c;
  flex-shrink: 0;
  gap: 16px;
}
@media (max-width: 768px) {
  .chat-panel__header {
    padding: 0 20px;
    height: 76px;
  }
}

.chat-panel__brand {
  display: flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.chat-panel__brand-text {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.chat-panel__brand-name {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 22px;
  color: #f5f4f0;
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.1;
}

.chat-panel__brand-status {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4a89a;
  font-weight: 500;
  line-height: 1.2;
  transition: color 220ms;
}
.chat-panel__brand-status::before {
  content: "";
  display: inline-block;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: currentColor;
  margin-right: 6px;
  vertical-align: middle;
  opacity: 0.85;
  animation: status-pulse 2.4s ease-in-out infinite;
}

@keyframes status-pulse {
  0%, 100% {
    opacity: 0.4;
  }
  50% {
    opacity: 1;
  }
}
.chat-panel__actions {
  display: flex;
  align-items: center;
  gap: 4px;
  flex-shrink: 0;
}

@media (min-width: 1080px) {
  .chat-panel__sidebar-toggle {
    display: none;
  }
}

.chat-panel__caption {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8580;
  font-weight: 400;
}

.chat-panel__scroll {
  flex: 1;
  overflow-y: auto;
  padding: 56px 56px 24px;
  scrollbar-width: thin;
  scrollbar-color: #3d3d3d transparent;
}
.chat-panel__scroll::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.chat-panel__scroll::-webkit-scrollbar-thumb {
  background: #3d3d3d;
  border-radius: 999px;
}
.chat-panel__scroll::-webkit-scrollbar-track {
  background: transparent;
}
@media (max-width: 768px) {
  .chat-panel__scroll {
    padding: 32px 20px 16px;
  }
}

.chat-panel__stream {
  display: flex;
  flex-direction: column;
  gap: 48px;
  max-width: 720px;
  margin: 0 auto;
}
@media (max-width: 768px) {
  .chat-panel__stream {
    gap: 32px;
  }
}

.sidebar {
  display: flex;
  flex-direction: column;
  height: 100vh;
  max-width: 480px;
  width: 100%;
  background: #1c1c1c;
  overflow: hidden;
}
@media (max-width: 1079px) {
  .sidebar {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    height: 100vh;
    width: min(420px, 100%);
    z-index: 30;
    border-left: 1px solid #2c2c2c;
    box-shadow: -16px 0 60px rgba(0, 0, 0, 0.45);
    transform: translateX(100%);
    transition-property: transform;
    transition-duration: 220ms;
    transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
  }
}
@media (max-width: 1079px) and (prefers-reduced-motion: reduce) {
  .sidebar {
    transition-duration: 0.01ms;
  }
}
@media (max-width: 1079px) {
  .sidebar--open {
    transform: translateX(0);
  }
}
@media (max-width: 1079px) {
  .sidebar--closed {
    transform: translateX(100%);
    pointer-events: none;
  }
}

.sidebar-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
  z-index: 25;
}
@media (min-width: 1080px) {
  .sidebar-backdrop {
    display: none !important;
  }
}

.sidebar__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 88px;
  padding: 32px 36px 24px;
  border-bottom: 1px solid #2c2c2c;
  flex-shrink: 0;
}
@media (max-width: 768px) {
  .sidebar__header {
    height: 76px;
    padding: 24px 24px 18px;
  }
}

.sidebar__title {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8580;
}

.sidebar__header-right {
  display: flex;
  align-items: center;
  gap: 8px;
}

.sidebar__progress {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4a89a;
  font-variant-numeric: tabular-nums;
}

@media (min-width: 1080px) {
  .sidebar__close {
    display: none;
  }
}

.sidebar__body {
  flex: 1;
  overflow-y: auto;
  padding: 0 36px;
  scrollbar-width: thin;
  scrollbar-color: #3d3d3d transparent;
}
.sidebar__body::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}
.sidebar__body::-webkit-scrollbar-thumb {
  background: #3d3d3d;
  border-radius: 999px;
}
.sidebar__body::-webkit-scrollbar-track {
  background: transparent;
}
@media (max-width: 768px) {
  .sidebar__body {
    padding: 0 24px;
  }
}

.sidebar__row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid #2c2c2c;
}
.sidebar__row:last-child {
  border-bottom: 0;
}

.sidebar__row-label {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #f5f4f0;
}

.sidebar__row-value {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #f5f4f0;
  text-align: right;
  max-width: 60%;
  line-height: 1.45;
}

.sidebar__row-value--empty {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 300;
  line-height: 1.5;
  color: #5c5650;
}

.sidebar__row-edit {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #d4a89a;
  margin-left: 12px;
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: outline-color 120ms;
}
.sidebar__row-edit:focus-visible {
  outline-color: #d4a89a;
}
.sidebar__row-edit {
  transition: color 120ms;
}
.sidebar__row-edit:hover {
  color: #b89388;
}

.sidebar__section {
  border-top: 1px solid #2c2c2c;
  padding: 32px 0 24px;
}
.sidebar__section:first-of-type {
  border-top: 0;
  padding-top: 8px;
}

.sidebar__section-title {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8580;
  margin-bottom: 16px;
}

.sidebar__totals {
  border-top: 1px solid #2c2c2c;
  padding: 28px 36px;
  flex-shrink: 0;
  background: #1c1c1c;
}
@media (max-width: 768px) {
  .sidebar__totals {
    padding: 22px 24px;
  }
}

.penny-mark {
  --mark-size: 32px;
  --mark-color: #d4a89a;
  --mark-stroke: 1.25px;
  position: relative;
  width: var(--mark-size);
  height: var(--mark-size);
  flex-shrink: 0;
  display: inline-block;
  border-radius: 50%;
  background: transparent;
  border: var(--mark-stroke) solid var(--mark-color);
}
.penny-mark::before, .penny-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}
.penny-mark::before {
  width: 30%;
  height: 30%;
  background: var(--mark-color);
}
.penny-mark::after {
  width: 165%;
  height: 165%;
  background: conic-gradient(from -90deg, transparent 0deg 8deg, var(--mark-color) 8deg 12deg, transparent 12deg 38deg, var(--mark-color) 38deg 42deg, transparent 42deg 68deg, var(--mark-color) 68deg 72deg, transparent 72deg 98deg, var(--mark-color) 98deg 102deg, transparent 102deg 128deg, var(--mark-color) 128deg 132deg, transparent 132deg 158deg, var(--mark-color) 158deg 162deg, transparent 162deg 188deg, var(--mark-color) 188deg 192deg, transparent 192deg 218deg, var(--mark-color) 218deg 222deg, transparent 222deg 248deg, var(--mark-color) 248deg 252deg, transparent 252deg 278deg, var(--mark-color) 278deg 282deg, transparent 282deg 308deg, var(--mark-color) 308deg 312deg, transparent 312deg 338deg, var(--mark-color) 338deg 342deg, transparent 342deg 360deg);
  mask: radial-gradient(circle, transparent calc(50% - 4px), #000 calc(50% - 3px), #000 50%, transparent calc(50% + 1px));
  -webkit-mask: radial-gradient(circle, transparent calc(50% - 4px), #000 calc(50% - 3px), #000 50%, transparent calc(50% + 1px));
  animation: penny-mark-rotate 28s linear infinite;
}

.penny-mark--small {
  --mark-size: 22px;
}

.penny-mark--filled {
  background: #da3648;
  border-color: #da3648;
}
.penny-mark--filled::before {
  background: #ffffff;
}
.penny-mark--filled::after {
  display: none;
}

@keyframes penny-mark-rotate {
  from {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  to {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
@media (prefers-reduced-motion: reduce) {
  .penny-mark::after {
    animation: none;
  }
}
.message {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.message--penny {
  align-items: flex-start;
}

.message--user {
  align-items: flex-end;
}

.message__eyebrow {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8580;
}

.message__bubble {
  max-width: 640px;
  background: #262626;
  border-radius: 14px;
  padding: 22px 28px;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 18px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  color: #f5f4f0;
  position: relative;
  line-height: 1.55;
}
.message__bubble em {
  color: #d4a89a;
  font-style: italic;
  font-weight: 400;
}

.message__bubble--user {
  background: #0f0f0f;
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  padding: 18px 26px;
  max-width: 480px;
}

.message__bubble--enter {
  animation: message-rise 340ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}

@keyframes message-rise {
  from {
    opacity: 0;
    transform: translateY(6px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .message__bubble--enter {
    animation: none;
  }
}
.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
  max-width: 640px;
}

.pill-group__continue {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #d4a89a;
  margin-top: 16px;
  outline: 2px solid transparent;
  outline-offset: 4px;
  transition: outline-color 120ms;
}
.pill-group__continue:focus-visible {
  outline-color: #d4a89a;
}
.pill-group__continue {
  transition: color 120ms, transform 120ms;
}
.pill-group__continue:hover {
  color: #b89388;
}
.pill-group__continue:active {
  transform: translateX(2px);
}

.pill {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
  color: #f5f4f0;
  background: transparent;
  border: 1px solid #353535;
  border-radius: 999px;
  padding: 12px 22px;
  white-space: nowrap;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: outline-color 120ms;
}
.pill:focus-visible {
  outline-color: #da3648;
}
.pill {
  transition-property: border-color, background, color, transform;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .pill {
    transition-duration: 0.01ms;
  }
}
.pill {
  position: relative;
  overflow: hidden;
}
.pill:hover {
  border-color: #da3648;
}
.pill::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(218, 54, 72, 0.08);
  opacity: 0;
  transition-property: opacity;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .pill::after {
    transition-duration: 0.01ms;
  }
}
.pill:hover::after {
  opacity: 1;
}
.pill--selected, .pill[aria-pressed=true] {
  background: #da3648;
  border-color: #da3648;
  color: #ffffff;
}
.pill--selected::after, .pill[aria-pressed=true]::after {
  display: none;
}
.pill--selected:hover, .pill[aria-pressed=true]:hover {
  background: #e54858;
}
.pill--multi {
  padding-right: 40px;
}
.pill--multi::before {
  content: "";
  position: absolute;
  top: 50%;
  right: 16px;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  border: 1px solid #353535;
  transform: translateY(-50%);
  transition-property: background, border-color;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .pill--multi::before {
    transition-duration: 0.01ms;
  }
}
.pill--multi.pill--selected::before {
  background: #ffffff;
  border-color: #ffffff;
  box-shadow: inset 0 0 0 3px #da3648;
}

.pill--ghost {
  border-color: #353535;
  color: #8a8580;
}
.pill--ghost:hover {
  border-color: #d4a89a;
  color: #d4a89a;
}

.pill--small {
  padding: 8px 16px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
}

.slider {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 24px;
  max-width: 480px;
}

.slider__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
}

.slider__label {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8580;
}

.slider__value {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  color: #d4a89a;
  line-height: 1;
  font-variant-numeric: tabular-nums;
}

.slider__input {
  -webkit-appearance: none;
  -moz-appearance: none;
       appearance: none;
  width: 100%;
  height: 4px;
  background: linear-gradient(to right, #da3648 0%, #da3648 var(--slider-fill, 30%), #353535 var(--slider-fill, 30%), #353535 100%);
  border-radius: 999px;
  outline: none;
}
.slider__input::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #da3648;
  cursor: grab;
  -webkit-transition-property: transform;
  transition-property: transform;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .slider__input::-webkit-slider-thumb {
    transition-duration: 0.01ms;
  }
}
.slider__input::-moz-range-thumb {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #ffffff;
  border: 4px solid #da3648;
  cursor: grab;
}
.slider__input:active::-webkit-slider-thumb {
  cursor: grabbing;
  transform: scale(1.08);
}
.slider__input:active::-moz-range-thumb {
  cursor: grabbing;
  transform: scale(1.08);
}

.slider__legend {
  display: flex;
  justify-content: space-between;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #5c5650;
  font-variant-numeric: tabular-nums;
}

.slider__continue {
  align-self: flex-start;
  margin-top: 8px;
}

.typing {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 22px;
}

.typing__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #d4a89a;
  opacity: 0.35;
  animation: typing-bounce 1.2s ease-in-out infinite;
}
.typing__dot:nth-child(1) {
  animation-delay: 0s;
}
.typing__dot:nth-child(2) {
  animation-delay: 0.2s;
}
.typing__dot:nth-child(3) {
  animation-delay: 0.4s;
}

@keyframes typing-bounce {
  0%, 60%, 100% {
    transform: translateY(0);
    opacity: 0.35;
  }
  30% {
    transform: translateY(-6px);
    opacity: 1;
  }
}
@media (prefers-reduced-motion: reduce) {
  .typing__dot {
    animation: none;
    opacity: 0.7;
  }
}
.budget {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  max-width: 640px;
}

.budget__presets {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.budget__preset {
  text-align: left;
  padding: 18px 20px;
  border: 1px solid #353535;
  border-radius: 14px;
  background: #262626;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 120ms;
}
.budget__preset:focus-visible {
  outline-color: #da3648;
}
.budget__preset {
  transition-property: border-color, background;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .budget__preset {
    transition-duration: 0.01ms;
  }
}
.budget__preset:hover {
  border-color: #d4a89a;
}
.budget__preset[aria-pressed=true] {
  border-color: #da3648;
  background: linear-gradient(180deg, #262626 0%, rgba(218, 54, 72, 0.05) 100%);
}

.budget__preset-label {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8a8580;
  margin-bottom: 8px;
  display: block;
}

.budget__preset-name {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  color: #f5f4f0;
  line-height: 1.2;
}

.budget__preset-meta {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #8a8580;
  margin-top: 6px;
}

.budget__sliders {
  display: grid;
  gap: 24px;
  padding: 20px;
  border: 1px solid #2c2c2c;
  border-radius: 14px;
  background: rgba(0, 0, 0, 0.25);
}

.budget__cap-row {
  display: grid;
  grid-template-columns: 110px 1fr 110px;
  gap: 16px;
  align-items: center;
}

.budget__cap-label {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8580;
}

.budget__cap-value {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #d4a89a;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.style-mix {
  display: grid;
  gap: 16px;
  margin-top: 24px;
  max-width: 640px;
}

.style-mix__group {
  border: 1px solid #2c2c2c;
  border-radius: 14px;
  padding: 20px 22px;
  background: rgba(0, 0, 0, 0.18);
}

.style-mix__group-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 12px;
}

.style-mix__group-title {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d4a89a;
}

.style-mix__group-total {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.5;
  color: #8a8580;
  font-variant-numeric: tabular-nums;
}

.style-mix__row {
  display: grid;
  grid-template-columns: 1fr auto 60px;
  gap: 12px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid #2c2c2c;
}
.style-mix__row:last-child {
  border-bottom: 0;
}

.style-mix__row-name {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  color: #f5f4f0;
}

.style-mix__row-color {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.5;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #8a8580;
}

.style-mix__row-qty {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 500;
  line-height: 1.5;
  color: #d4a89a;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.style-mix__rationale {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  font-style: italic;
  color: #d4a89a;
  line-height: 1.55;
}

.style-mix__refine {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  margin-top: 8px;
}

.style-mix__refine-input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #353535;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: #f5f4f0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition-property: border-color;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .style-mix__refine-input {
    transition-duration: 0.01ms;
  }
}
.style-mix__refine-input:focus {
  outline: none;
  border-color: #da3648;
}
.style-mix__refine-input::-moz-placeholder {
  color: #5c5650;
}
.style-mix__refine-input::placeholder {
  color: #5c5650;
}

.recommendation {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 4px;
}

.recommendation__row {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 14px;
  align-items: flex-start;
  padding-bottom: 16px;
  border-bottom: 1px solid #2c2c2c;
}
.recommendation__row:last-child {
  border-bottom: 0;
}

.recommendation__name-wrap {
  display: flex;
  align-items: baseline;
  gap: 10px;
  flex-wrap: wrap;
}

.recommendation__name {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 17px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  color: #f5f4f0;
}

.recommendation__sale {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4a89a;
}

.recommendation__meta {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #5c5650;
  margin-top: 4px;
}

.recommendation__why {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  font-style: italic;
  color: #d4a89a;
  margin-top: 8px;
  line-height: 1.55;
}
.recommendation__why em {
  color: #b89388;
}

.recommendation__price {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  color: #f5f4f0;
  flex-shrink: 0;
  font-variant-numeric: tabular-nums;
}

.recommendation__swap {
  display: flex;
  gap: 12px;
  align-items: center;
  margin-top: 8px;
  flex-wrap: wrap;
}

.recommendation__alt {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #d4a89a;
  border: 1px dashed #3d3d3d;
  border-radius: 999px;
  padding: 6px 12px;
  transition-property: border-color, color;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .recommendation__alt {
    transition-duration: 0.01ms;
  }
}
.recommendation__alt:hover {
  border-color: #d4a89a;
}

.recommendation--muted .recommendation__name,
.recommendation--muted .recommendation__price {
  color: #8a8580;
}
.recommendation--muted .recommendation__sale {
  color: #8a8580;
}

.refine-tray {
  display: grid;
  gap: 14px;
  margin-top: 24px;
  max-width: 640px;
  border: 1px solid #2c2c2c;
  border-radius: 14px;
  padding: 22px 24px;
  background: rgba(0, 0, 0, 0.22);
}

.refine-tray__title {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8580;
}

.refine-tray__field {
  display: flex;
  gap: 10px;
  align-items: stretch;
}

.refine-tray__input {
  flex: 1;
  padding: 12px 16px;
  border: 1px solid #353535;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.35);
  color: #f5f4f0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition-property: border-color;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .refine-tray__input {
    transition-duration: 0.01ms;
  }
}
.refine-tray__input:focus {
  outline: none;
  border-color: #da3648;
}
.refine-tray__input::-moz-placeholder {
  color: #5c5650;
}
.refine-tray__input::placeholder {
  color: #5c5650;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 24px;
  border-radius: 999px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
  letter-spacing: 0.04em;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 120ms;
}
.button:focus-visible {
  outline-color: #da3648;
}
.button {
  transition-property: background, color, transform, box-shadow;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .button {
    transition-duration: 0.01ms;
  }
}
.button {
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  white-space: nowrap;
}
.button:active {
  transform: translateY(1px);
}
.button:disabled {
  cursor: not-allowed;
  opacity: 0.55;
}
.button--primary {
  background: #da3648;
  color: #ffffff;
  border: 1px solid #da3648;
}
.button--primary:hover:not(:disabled) {
  background: #e54858;
}
.button--primary:disabled {
  background: #2a2a2a;
  color: #5c5650;
  border-color: #353535;
}
.button--ghost {
  background: transparent;
  color: #f5f4f0;
  border: 1px solid #353535;
}
.button--ghost:hover:not(:disabled) {
  border-color: #d4a89a;
  color: #d4a89a;
}
.button--link {
  background: transparent;
  color: #d4a89a;
  padding: 4px 8px;
  border: 0;
}
.button--link:hover {
  color: #b89388;
}
.button--full {
  width: 100%;
}
.button--large {
  padding: 18px 28px;
  font-size: 15px;
}

.icon-button {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #8a8580;
  background: transparent;
  border: 1px solid transparent;
  outline: 2px solid transparent;
  outline-offset: 3px;
  transition: outline-color 120ms;
}
.icon-button:focus-visible {
  outline-color: #da3648;
}
.icon-button {
  transition-property: color, background, border-color;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .icon-button {
    transition-duration: 0.01ms;
  }
}
.icon-button svg {
  display: block;
}
.icon-button:hover {
  color: #d4a89a;
  border-color: #353535;
  background: rgba(255, 255, 255, 0.02);
}
.icon-button:active {
  background: rgba(255, 255, 255, 0.04);
}
.icon-button:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.totals {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.totals__label {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8a8580;
}

.totals__amount {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 28px;
  font-weight: 400;
  line-height: 1.5;
  color: #d4a89a;
  font-variant-numeric: tabular-nums;
  line-height: 1.1;
  transition: color 220ms;
}

.totals__amount--placeholder {
  color: #b89388;
  font-weight: 300;
  font-size: 22px;
}

.totals__breakdown {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 4px 16px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #8a8580;
  margin-top: 12px;
}

.totals__breakdown-cat {
  color: #8a8580;
}

.totals__breakdown-val {
  color: #f5f4f0;
  text-align: right;
  font-variant-numeric: tabular-nums;
}

.totals__cta {
  margin-top: 20px;
}

.toast-stack {
  position: fixed;
  bottom: 24px;
  right: 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  z-index: 80;
  pointer-events: none;
}

.toast {
  pointer-events: all;
  background: #262626;
  border: 1px solid #2c2c2c;
  border-radius: 12px;
  padding: 14px 18px;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #f5f4f0;
  box-shadow: 0 1px 0 #2c2c2c;
  max-width: 360px;
  animation: toast-rise 340ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
.toast em {
  color: #d4a89a;
}

.toast--success {
  border-color: #8fa882;
}

.toast--error {
  border-color: #e57878;
}

@keyframes toast-rise {
  from {
    transform: translateY(8px);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}
.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 32px 24px;
  background: rgba(0, 0, 0, 0.62);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}
@media (max-width: 640px) {
  .modal {
    align-items: flex-end;
    padding: 0;
  }
}

.modal__panel {
  position: relative;
  width: 100%;
  max-width: 460px;
  background: #262626;
  border: 1px solid #2c2c2c;
  border-radius: 18px;
  padding: 36px 36px 28px;
  box-shadow: 0 18px 60px rgba(0, 0, 0, 0.35);
  display: flex;
  flex-direction: column;
  gap: 16px;
  animation: modal-rise 340ms cubic-bezier(0.22, 0.61, 0.36, 1) both;
}
@media (max-width: 640px) {
  .modal__panel {
    max-width: 100%;
    border-radius: 18px 18px 0 0;
    padding: 28px 24px 24px;
  }
}

.modal__close {
  position: absolute;
  top: 14px;
  right: 14px;
}

.modal__title {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  line-height: 1.55;
  letter-spacing: 0;
  color: #f5f4f0;
  margin: 0;
  line-height: 1.2;
}
.modal__title em {
  color: #d4a89a;
  font-style: italic;
}

.modal__lede {
  font-family: "Lora", Georgia, "Times New Roman", serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.55;
  letter-spacing: 0;
  color: #8a8580;
  line-height: 1.55;
}
.modal__lede em {
  color: #d4a89a;
  font-style: italic;
}

.modal__field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.modal__input {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid #353535;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.35);
  color: #f5f4f0;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  transition-property: border-color;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .modal__input {
    transition-duration: 0.01ms;
  }
}
.modal__input:focus {
  outline: none;
  border-color: #da3648;
}
.modal__input::-moz-placeholder {
  color: #5c5650;
}
.modal__input::placeholder {
  color: #5c5650;
}

.modal__actions {
  display: flex;
  justify-content: flex-end;
  gap: 12px;
  margin-top: 8px;
}

.modal__hint {
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.5;
  color: #e57878;
  margin-top: 4px;
}
.modal__hint--success {
  color: #8fa882;
}

@keyframes modal-rise {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@media (prefers-reduced-motion: reduce) {
  .modal__panel {
    animation: none;
  }
}
.chat-input {
  flex-shrink: 0;
  border-top: 1px solid #2c2c2c;
  padding: 18px 56px 22px;
  background: #1c1c1c;
  display: flex;
  gap: 12px;
  align-items: flex-end;
}
@media (max-width: 768px) {
  .chat-input {
    padding: 14px 20px 18px;
  }
}

.chat-input__field {
  flex: 1;
  display: block;
  min-height: 50px;
  max-height: 180px;
  padding: 14px 18px;
  border: 1px solid #353535;
  border-radius: 14px;
  background: #262626;
  color: #f5f4f0;
  resize: none;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 15px;
  font-weight: 400;
  line-height: 1.5;
  line-height: 1.45;
  transition-property: border-color, background;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .chat-input__field {
    transition-duration: 0.01ms;
  }
}
.chat-input__field::-moz-placeholder {
  color: #8a8580;
  font-style: italic;
}
.chat-input__field::placeholder {
  color: #8a8580;
  font-style: italic;
}
.chat-input__field:focus {
  outline: none;
  border-color: #da3648;
}
.chat-input__field:disabled {
  background: #262626;
  color: #8a8580;
  cursor: not-allowed;
  border-color: #2c2c2c;
  opacity: 0.85;
}

.chat-input__send {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #da3648;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  outline: 2px solid transparent;
  outline-offset: 2px;
  transition: outline-color 120ms;
}
.chat-input__send:focus-visible {
  outline-color: #da3648;
}
.chat-input__send {
  transition-property: background, transform;
  transition-duration: 220ms;
  transition-timing-function: cubic-bezier(0.22, 0.61, 0.36, 1);
}
@media (prefers-reduced-motion: reduce) {
  .chat-input__send {
    transition-duration: 0.01ms;
  }
}
.chat-input__send svg {
  display: block;
}
.chat-input__send:hover:not(:disabled) {
  background: #e54858;
}
.chat-input__send:active:not(:disabled) {
  transform: translateY(1px);
}
.chat-input__send:disabled {
  background: #2a2a2a;
  color: #5c5650;
  cursor: not-allowed;
}

.chat-input--disabled .chat-input__field {
  background: #262626;
}

.planner {
  min-height: 100vh;
  background: #1c1c1c;
  display: flex;
  align-items: stretch;
}

.planner__shell {
  flex: 1;
  display: grid;
  grid-template-columns: 62% 38%;
  height: 100vh;
  min-height: 600px;
}
@media (min-width: 1700px) {
  .planner__shell {
    grid-template-columns: 1fr 480px;
  }
}
@media (max-width: 1079px) {
  .planner__shell {
    grid-template-columns: 1fr;
    height: 100vh;
  }
}

.planner__chat {
  min-height: 100vh;
}

@media (min-width: 1080px) {
  .planner__sidebar {
    border-left: 1px solid #2c2c2c;
    min-height: 100vh;
  }
}

.penny-voice em {
  color: #d4a89a;
  font-style: italic;
}

.planner__step-tag {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 4px 10px;
  border-radius: 999px;
  background: rgba(218, 54, 72, 0.08);
  color: #d4a89a;
  font-family: "DM Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #d4a89a;
  font-weight: 500;
}

/*# sourceMappingURL=app.css.map*/