:root {
  --bg: #0f0d0b;
  --bg-deep: #18130e;
  --surface: #14110d;
  --surface-strong: #18140f;
  --surface-dark: #0b0907;
  --ink: #f5ebd8;
  --muted: #c2b397;
  --line: rgba(208, 170, 96, 0.22);
  --gold: #d4a24c;
  --gold-soft: rgba(212, 162, 76, 0.14);
  --plum: #a97f42;
  --plum-deep: #7c5b2d;
  --shadow: none;
  --radius-xl: 0;
  --radius-lg: 0;
  --radius-md: 0;
  --radius-sm: 0;
}

* {
  box-sizing: border-box;
}

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

body {
  position: relative;
  overflow-x: hidden;
  min-height: 100dvh;
  padding-bottom: 54px;
  display: flex;
  flex-direction: column;
  background:
    linear-gradient(rgba(7, 9, 12, 0.72), rgba(7, 9, 12, 0.78)),
    url("/static/images/hero-background.jpg") center center / cover no-repeat fixed,
    var(--bg);
  color: var(--ink);
  font-family: "Manrope", "Segoe UI", sans-serif;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background:
    radial-gradient(circle at top right, rgba(17, 91, 112, 0.22), transparent 32%),
    radial-gradient(circle at bottom left, rgba(212, 162, 76, 0.12), transparent 28%);
  pointer-events: none;
  z-index: 0;
}

button,
textarea {
  font: inherit;
}

button {
  appearance: none;
}

body.modal-open {
  overflow: hidden;
}

.ambient {
  display: none;
}

.ambient-one {
  width: 20rem;
  height: 20rem;
  top: -6rem;
  right: -6rem;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.18), transparent 70%);
}

.ambient-two {
  width: 16rem;
  height: 16rem;
  left: -4rem;
  bottom: 4rem;
  background: radial-gradient(circle, rgba(212, 162, 76, 0.12), transparent 72%);
}

.app-shell {
  flex: 1;
  position: relative;
  z-index: 1;
  width: 100%;
  margin: 0 auto;
  min-height: 100vh;
  min-height: 100dvh;
  padding: 0;
  display: flex;
  flex-direction: column;
}

.top-banner {
  width: 100%;
  background: #ffffff;
  padding: 14px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Inter, Roboto, sans-serif;
  position: relative;
  z-index: 50;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
  box-sizing: border-box;
}

.topbar,
.layout-grid {
  width: min(1240px, calc(100% - 32px));
  margin-right: auto;
  margin-left: auto;
}

.topbar {
  margin-top: 20px;
}

.top-banner-left {
  display: flex;
  align-items: center;
  gap: 28px;
}

.top-banner-logo {
  display: flex;
  align-items: center;
  flex: none;
}

.top-banner-logo img {
  width: auto;
  height: 42px;
  display: block;
}

.top-banner-nav,
.top-banner-right,
.top-banner-arrows {
  display: flex;
  align-items: center;
}

.top-banner-nav {
  gap: 24px;
}

.top-banner-info {
  appearance: none;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.top-banner-nav a,
.top-banner-info {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: color 0.2s;
  white-space: nowrap;
}

.top-banner-nav a:hover,
.top-banner-nav a:focus-visible,
.top-banner-info:hover,
.top-banner-info:focus-visible {
  color: #000000;
  outline: none;
}

.top-banner-nav a svg,
.top-banner-info svg {
  width: 20px;
  height: 20px;
  flex: none;
}

.top-banner-right {
  gap: 14px;
}

.top-banner-contact {
  width: 116px;
  height: 38px;
  padding: 0;
  border: 1.5px solid #cccccc;
  border-radius: 999px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333333;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.2s;
  white-space: nowrap;
}

.top-banner-contact:hover,
.top-banner-contact:focus-visible {
  border-color: #333333;
  color: #000000;
  outline: none;
}

.top-banner-arrows {
  gap: 8px;
}

.top-banner-arrows a {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f77f00;
  color: #ffffff;
  text-decoration: none;
  transition: background 0.2s;
}

.top-banner-arrows a:hover,
.top-banner-arrows a:focus-visible {
  background: #e06f00;
  outline: none;
}

.top-banner-arrows a svg {
  width: 18px;
  height: 18px;
}

@media (max-width: 720px) {
  .top-banner {
    padding: 10px 16px;
    gap: 12px;
  }

  .top-banner-left {
    gap: 16px;
  }

  .top-banner-nav {
    gap: 14px;
  }

  .top-banner-info span {
    display: none;
  }

  .top-banner-right {
    gap: 10px;
  }

  .top-banner-contact {
    width: 98px;
    height: 32px;
    padding: 0;
    font-size: 13px;
  }

  .top-banner-arrows a {
    width: 30px;
    height: 30px;
  }
}

.info-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.info-modal[hidden] {
  display: none;
}

.info-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 5, 7, 0.72);
  backdrop-filter: blur(5px);
}

.info-modal-panel {
  position: relative;
  z-index: 1;
  width: min(860px, 100%);
  max-height: min(82vh, 760px);
  overflow-y: auto;
  padding: clamp(24px, 4vw, 38px);
  border: 1px solid rgba(212, 162, 76, 0.24);
  border-radius: 18px;
  background: #11100d;
  color: var(--ink);
  box-shadow: 0 24px 90px rgba(0, 0, 0, 0.5);
  scrollbar-color: rgba(212, 162, 76, 0.72) rgba(255, 248, 235, 0.06);
  scrollbar-width: thin;
}

.info-modal-panel::-webkit-scrollbar {
  width: 10px;
}

.info-modal-panel::-webkit-scrollbar-track {
  background: rgba(255, 248, 235, 0.06);
}

.info-modal-panel::-webkit-scrollbar-thumb {
  border: 2px solid #11100d;
  border-radius: 999px;
  background: rgba(212, 162, 76, 0.72);
}

.info-modal-panel::-webkit-scrollbar-thumb:hover {
  background: var(--gold);
}

.info-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid rgba(212, 162, 76, 0.22);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.info-modal-close:hover,
.info-modal-close:focus-visible {
  outline: none;
  border-color: rgba(212, 162, 76, 0.55);
  color: var(--gold);
}

.info-modal-kicker {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-modal h2,
.info-modal h3,
.info-modal h4,
.info-modal p {
  margin-top: 0;
}

.info-modal h2 {
  margin-bottom: 14px;
  max-width: 14ch;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.1rem, 5vw, 3.5rem);
  line-height: 0.95;
  letter-spacing: 0;
}

.info-modal h3 {
  margin: 26px 0 12px;
  color: var(--gold);
  font-size: 0.86rem;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.info-modal h4 {
  margin-bottom: 6px;
  color: var(--ink);
  font-size: 0.94rem;
}

.info-modal p,
.business-list {
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.65;
}

.workflow-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.workflow-list article {
  min-height: 122px;
  padding: 14px;
  border: 1px solid rgba(212, 162, 76, 0.16);
  border-radius: 12px;
  background: rgba(255, 248, 235, 0.035);
}

.workflow-list article p {
  margin-bottom: 0;
}

.business-list {
  margin: 0;
  padding-left: 20px;
}

.business-list li + li {
  margin-top: 10px;
}

.business-list strong {
  color: var(--ink);
}

.topbar {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 18px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}

.eyebrow,
.section-label,
.empty-eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.73rem;
  font-weight: 800;
}

.eyebrow,
.section-label {
  color: var(--gold);
}

.topbar h1,
.statement-card h2,
.chat-header h2,
.empty-state h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 600;
  letter-spacing: -0.04em;
}

.topbar h1 {
  max-width: 15ch;
  font-size: clamp(1.8rem, 3.4vw, 3rem);
  line-height: 0.9;
}

.topbar-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  max-width: 22rem;
}

.topbar-note {
  margin: 0;
  padding: 10px 12px;
  border: 1px solid rgba(212, 162, 76, 0.18);
  background: rgba(10, 12, 16, 0.48);
  font-size: 0.75rem;
  line-height: 1.55;
  color: var(--muted);
}

.layout-grid {
  display: grid;
  grid-template-columns: 260px minmax(0, 1fr);
  gap: 26px;
  align-items: start;
  padding-top: 18px;
  margin-bottom: 48px;
}

.intro-panel {
  display: grid;
  gap: 12px;
  align-content: start;
  position: sticky;
  top: 18px;
}

.intro-card,
.chat-frame {
  border: 1px solid var(--line);
  border-radius: 0;
  background: rgba(10, 12, 16, 0.18);
  box-shadow: none;
  backdrop-filter: blur(6px);
}

.intro-card {
  padding: 0 0 14px;
  border-width: 0 0 1px;
}

.statement-card {
  padding: 0 0 14px;
  background: transparent;
}

.statement-card h2 {
  margin-top: 8px;
  font-size: clamp(1.75rem, 2.9vw, 2.55rem);
  line-height: 0.92;
}

.statement-card p,
.card-kicker,
.note-list,
.chat-subtitle,
.composer-label,
.empty-state p,
.message-text {
  color: var(--muted);
}

.statement-card p {
  margin: 0;
  font-size: 0.83rem;
  line-height: 1.7;
  max-width: 28ch;
}

.metrics-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
}

.metric {
  min-height: 70px;
  padding: 10px;
  border-radius: var(--radius-md);
  background: rgba(255, 248, 235, 0.04);
  border: 1px solid rgba(212, 162, 76, 0.1);
  display: grid;
  align-content: space-between;
}

.metric-value {
  font-size: 1.05rem;
  font-weight: 800;
  color: var(--gold);
}

.metric-label {
  font-size: 0.72rem;
  color: var(--muted);
}

.card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 8px;
  margin-bottom: 10px;
}

.card-kicker,
.chat-subtitle {
  margin: 0;
  font-size: 0.76rem;
  color: rgba(245, 235, 216, 0.5);
}

.prompt-grid {
  display: grid;
  gap: 6px;
}

.prompt-card,
.ghost-button,
.primary-button,
.status-pill {
  border-radius: 0;
}

.prompt-card {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid rgba(212, 162, 76, 0.14);
  background: transparent;
  color: var(--ink);
  text-align: left;
  cursor: pointer;
  transition: color 120ms ease, border-color 120ms ease, padding-left 120ms ease;
  font-size: 0.84rem;
}

.prompt-card:hover,
.prompt-card:focus-visible {
  padding-left: 6px;
  border-color: rgba(212, 162, 76, 0.34);
  color: var(--gold);
  outline: none;
}

.note-list {
  margin: 0;
  padding-left: 18px;
  line-height: 1.5;
  font-size: 0.84rem;
}

.chat-panel {
  min-width: 0;
}

.chat-frame {
  min-height: calc(100vh - 52px);
  min-height: calc(100dvh - 52px);
  display: grid;
  grid-template-rows: auto minmax(0, 1fr) auto;
  overflow: hidden;
  background: rgba(10, 12, 16, 0.16);
}

.chat-header {
  padding: 14px 18px 12px;
  border-bottom: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.2);
}

.chat-heading {
  display: block;
}

.chat-header h2 {
  margin: 0;
  font-size: clamp(1.15rem, 1.8vw, 1.45rem);
  line-height: 1;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-family: "Manrope", "Segoe UI", sans-serif;
  font-weight: 800;
  color: var(--gold);
}

.site-footer {
  width: 100%;
  margin-top: auto;
  padding: 32px 0;
  background: #11100d;
  color: #ffffff;
  text-align: center;
}

.site-footer-inner {
  width: min(1280px, calc(100% - 32px));
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
}

.site-footer a {
  color: #d5c5ad;
  text-decoration: underline;
  transition: color 0.2s;
}

.site-footer a:hover,
.site-footer a:focus-visible {
  color: var(--gold);
  outline: none;
}

.site-footer-built,
.site-footer-copy {
  margin: 0;
  color: #8f8371;
  font-size: 0.875rem;
}

.site-footer-brand {
  margin: 0;
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
}

.site-footer-copy {
  margin-top: 0;
}

.site-footer-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 4px;
  font-size: 0.875rem;
}

.site-footer-links a {
  font-weight: 400;
}

.site-footer-links span {
  color: #5f574b;
}

.welcome-banner {
  padding: 14px 18px;
  border-bottom: 1px solid rgba(212, 162, 76, 0.12);
  background: rgba(10, 12, 16, 0.12);
}

.welcome-banner-label {
  margin: 0 0 6px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 800;
  color: var(--gold);
}

.welcome-banner-text {
  margin: 0;
  max-width: 52rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.55;
}

.messages-wrap {
  position: relative;
  min-height: 320px;
  background:
    linear-gradient(180deg, rgba(255, 248, 235, 0.04), transparent 1px),
    rgba(10, 12, 16, 0.08);
  background-size: 100% 36px;
}

.empty-state {
  position: absolute;
  inset: 0;
  padding: 18px;
  display: grid;
  align-content: center;
  justify-items: start;
  gap: 8px;
  pointer-events: none;
}

.empty-state[hidden] {
  display: none;
}

.empty-eyebrow {
  color: rgba(212, 162, 76, 0.78);
  margin-top: 0;
}

.empty-state h3 {
  max-width: 13ch;
  font-size: clamp(1.7rem, 3vw, 2.5rem);
  line-height: 0.94;
}

.empty-state p {
  max-width: 34rem;
  margin: 0;
  line-height: 1.5;
  font-size: 0.9rem;
}

.messages {
  position: relative;
  z-index: 1;
  height: 100%;
  padding: 18px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.message {
  max-width: min(760px, 92%);
  padding: 12px 14px;
  border-radius: 2px;
  animation: rise-in 180ms ease;
}

.message.assistant {
  background: rgba(255, 248, 235, 0.02);
  border: 1px solid rgba(212, 162, 76, 0.14);
}

.message.user {
  margin-left: auto;
  background: #c9963e;
  border: 1px solid rgba(212, 162, 76, 0.9);
}

.message-role {
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.13em;
  font-size: 0.68rem;
  font-weight: 800;
}

.message.assistant .message-role {
  color: var(--gold);
}

.message.user .message-role,
.message.user .message-text {
  color: #16110d;
}

.message-text {
  margin: 0;
  white-space: pre-wrap;
  line-height: 1.55;
  font-size: 0.92rem;
  color: var(--ink);
}

.message-text strong {
  font-weight: 800;
}

.message-text em {
  font-style: italic;
}

.composer {
  padding: 12px 18px 18px;
  border-top: 1px solid var(--line);
  background: rgba(10, 12, 16, 0.16);
}

.chat-actions {
  display: flex;
  justify-content: flex-end;
  padding: 0 18px 18px;
  background: rgba(10, 12, 16, 0.16);
}

.chat-reset {
  align-self: auto;
}

.composer-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.76rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: rgba(245, 235, 216, 0.54);
}

.composer-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  align-items: end;
}

#chatInput {
  width: 100%;
  min-height: 54px;
  max-height: 180px;
  resize: none;
  padding: 14px 16px;
  border: 1px solid rgba(212, 162, 76, 0.18);
  border-radius: 0;
  background: rgba(10, 12, 16, 0.22);
  color: var(--ink);
  box-shadow: none;
}

#chatInput:focus {
  outline: 2px solid rgba(212, 162, 76, 0.16);
  border-color: rgba(212, 162, 76, 0.5);
}

#chatInput:disabled {
  background: rgba(255, 248, 235, 0.03);
}

.status-pill,
.ghost-button,
.primary-button {
  border: none;
  font-weight: 800;
}

.status-pill {
  padding: 9px 13px;
  background: var(--gold-soft);
  color: var(--gold);
  font-size: 0.8rem;
}

.ghost-button {
  padding: 10px 0;
  background: transparent;
  color: var(--ink);
  border: 0;
  border-bottom: 1px solid rgba(212, 162, 76, 0.22);
  cursor: pointer;
  font-size: 0.82rem;
  align-self: flex-end;
}

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

.primary-button {
  min-width: 108px;
  padding: 12px 18px;
  background: var(--gold);
  color: #16110d;
  cursor: pointer;
  box-shadow: none;
  font-size: 0.9rem;
}

.primary-button:hover,
.primary-button:focus-visible,
.ghost-button:hover,
.ghost-button:focus-visible {
  outline: none;
  transform: translateY(-1px);
}

.primary-button:disabled {
  cursor: wait;
  opacity: 0.72;
}

@keyframes rise-in {
  from {
    opacity: 0;
    transform: translateY(8px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 1180px) {
  .topbar {
    align-items: flex-start;
    flex-direction: column;
  }

  .topbar h1 {
    max-width: 18ch;
  }

  .topbar-meta {
    max-width: none;
    width: 100%;
  }

  .layout-grid {
    grid-template-columns: 1fr;
  }

  .intro-panel {
    position: static;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
  }

  .chat-frame {
    min-height: 68vh;
    min-height: 68dvh;
  }
}

@media (max-width: 760px) {
  .topbar,
  .layout-grid {
    width: min(100% - 16px, 1400px);
  }

  .topbar {
    padding-bottom: 12px;
    gap: 12px;
  }

  .topbar h1 {
    max-width: 12ch;
    font-size: clamp(1.55rem, 8vw, 2.3rem);
    line-height: 0.95;
  }

  .topbar-meta,
  .card-heading {
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
  }

  .intro-card,
  .chat-header,
  .welcome-banner,
  .messages,
  .composer,
  .chat-actions {
    padding-left: 14px;
    padding-right: 14px;
  }

  .layout-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    padding-top: 14px;
    align-items: start;
  }

  .intro-panel {
    position: static;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .statement-card {
    padding-bottom: 10px;
  }

  .statement-card p,
  .welcome-banner-text,
  .message-text {
    font-size: 0.88rem;
  }

  .prompt-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
  }

  .prompt-card {
    min-height: 72px;
    padding: 10px 12px;
    font-size: 0.8rem;
    border: 1px solid rgba(212, 162, 76, 0.16);
    background: rgba(10, 12, 16, 0.12);
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
  }

  .metrics-card {
    grid-template-columns: 1fr;
  }

  .chat-frame {
    min-height: auto;
    width: 100%;
    margin-left: 0;
  }

  .messages-wrap {
    min-height: 260px;
  }

  .welcome-banner {
    padding-top: 10px;
    padding-bottom: 10px;
  }

  .welcome-banner-text {
    max-width: none;
  }

  .composer-row {
    grid-template-columns: 1fr;
  }

  #chatInput {
    min-height: 108px;
    padding: 13px 14px;
  }

  .primary-button {
    width: 100%;
    min-width: 0;
  }

  .message {
    max-width: 100%;
    padding: 11px 12px;
  }

  .empty-state {
    padding: 18px 14px;
  }

  .info-modal {
    padding: 12px;
  }

  .workflow-list {
    grid-template-columns: 1fr;
  }

  .site-footer {
    padding-top: 18px;
  }

  .site-footer-links {
    justify-content: center;
    flex-wrap: wrap;
  }
}

@media (max-width: 680px) {
  .statement-card {
    display: none;
  }

  .chat-header {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .chat-header h2 {
    font-size: 1rem;
    letter-spacing: 0.12em;
  }

  .welcome-banner {
    padding-top: 9px;
    padding-bottom: 9px;
  }

  .welcome-banner-label {
    margin-bottom: 4px;
    font-size: 0.68rem;
  }

  .welcome-banner-text {
    font-size: 0.82rem;
    line-height: 1.45;
  }

  .messages-wrap {
    min-height: 240px;
  }

  .prompt-grid[data-collapsed="true"] {
    grid-template-columns: 1fr;
  }

  .prompt-card {
    min-height: 0;
  }
}

@media (max-width: 480px) {
  .app-shell {
    padding-top: 0;
  }

  .topbar,
  .layout-grid {
    width: calc(100% - 12px);
  }

  .topbar {
    gap: 10px;
    padding-bottom: 10px;
  }

  .topbar-note {
    padding: 9px 10px;
    font-size: 0.72rem;
  }

  .layout-grid {
    gap: 14px;
    padding-top: 12px;
  }

  .intro-card,
  .chat-header,
  .welcome-banner,
  .messages,
  .composer,
  .chat-actions {
    padding-left: 12px;
    padding-right: 12px;
  }

  .chat-header {
    padding-top: 12px;
    padding-bottom: 10px;
  }

  .chat-frame {
    width: 100%;
    min-height: 24rem;
  }

  .welcome-banner {
    padding-top: 8px;
    padding-bottom: 8px;
  }

  .messages {
    padding-top: 14px;
    padding-bottom: 14px;
    gap: 8px;
  }

  .message {
    width: 100%;
  }

  .composer {
    padding-top: 10px;
    padding-bottom: 12px;
  }

  .composer-label,
  .welcome-banner-label,
  .message-role,
  .eyebrow,
  .section-label,
  .empty-eyebrow {
    letter-spacing: 0.1em;
  }

  #chatInput {
    min-height: 88px;
    max-height: 152px;
    font-size: 16px;
  }

  .ghost-button,
  .primary-button {
    min-height: 46px;
  }

  .prompt-grid {
    grid-template-columns: 1fr;
  }
}
