:root {
  --bg-color: #F5F6F8;
  --sidebar-bg: rgba(255, 255, 255, 0.98);
  --panel-bg: rgba(255, 255, 255, 0.75);
  --panel-border: rgba(26, 37, 66, 0.08);
  --text-primary: #1A2542;
  --text-secondary: #5B6478;
  --primary-glow: #FDE7EA;
  --secondary-glow: #EEF0F4;
  --font-title: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  --gold: #C81430;
  --gold-glow: rgba(200, 20, 48, 0.15);
  --cyan: #1A2542;
  --success: #1E7F4F;
  --card-bg: rgba(255, 255, 255, 0.9);
  --card-border: rgba(26, 37, 66, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

button,
a,
input,
textarea,
select {
  -webkit-tap-highlight-color: transparent;
}

button {
  touch-action: manipulation;
  -webkit-user-select: none;
  user-select: none;
}

button:focus-visible,
a:focus-visible,
input:focus-visible {
  outline: 3px solid rgba(200, 20, 48, 0.32);
  outline-offset: 3px;
}

.hidden {
  display: none !important;
}

body {
  background-color: var(--bg-color);
  color: var(--text-primary);
  font-family: var(--font-body);
  overflow: hidden;
  height: 100vh;
  height: 100dvh;
  position: relative;
}

/* Background Animating Grid Pattern */
body::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: 
    linear-gradient(rgba(26, 37, 66, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(26, 37, 66, 0.02) 1px, transparent 1px);
  background-size: 50px 50px;
  background-position: center center;
  z-index: 0;
  pointer-events: none;
  opacity: 0.8;
}

/* Ambient Glow Blobs */
.ambient-glow {
  position: absolute;
  width: 60vw;
  height: 60vw;
  border-radius: 50%;
  filter: blur(160px);
  opacity: 0.09;
  pointer-events: none;
  z-index: 0;
  animation: pulseGlow 12s infinite alternate ease-in-out;
}

.ambient-glow.cyan {
  top: -25vw;
  left: -15vw;
  background: radial-gradient(circle, var(--primary-glow) 0%, transparent 80%);
}

.ambient-glow.gold {
  bottom: -15vw;
  right: -15vw;
  background: radial-gradient(circle, var(--secondary-glow) 0%, transparent 80%);
  animation-delay: 6s;
}

/* App Main Grid Layout */
.app-layout {
  display: flex;
  width: 100vw;
  height: 100vh;
  height: 100dvh;
  overflow: hidden;
  position: relative;
  z-index: 1;
}

.sidebar-scrim {
  position: absolute;
  inset: 0;
  z-index: 90;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(26, 37, 66, 0.32);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

/* ── COLLAPSIBLE SIDEBAR ── */
.sidebar {
  width: 280px;
  height: 100%;
  background: var(--sidebar-bg);
  border-right: 1px solid var(--panel-border);
  display: flex;
  flex-direction: column;
  backdrop-filter: blur(25px);
  -webkit-backdrop-filter: blur(25px);
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  flex-shrink: 0;
}

.sidebar.closed {
  width: 0;
  opacity: 0;
  pointer-events: none;
  border-right-color: transparent;
}

.sidebar-header {
  padding: 24px 20px 16px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.new-chat-btn {
  flex-grow: 1;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: var(--text-primary);
  border-radius: 12px;
  padding: 12px 16px;
  font-family: var(--font-title);
  font-weight: 700;
  font-size: 0.95rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  transition: all 0.2s ease;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.05);
}

.new-chat-btn:hover {
  background: rgba(215, 170, 79, 0.08);
  border-color: rgba(215, 170, 79, 0.3);
  color: var(--gold);
  transform: translateY(-1px);
}

.new-chat-btn:active {
  transform: translateY(0);
}

.mobile-only-btn {
  display: none;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  font-size: 1.25rem;
  cursor: pointer;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
}

/* History Chat Sessions List */
.history-section {
  flex-grow: 1;
  overflow-y: auto;
  padding: 10px 16px;
}

.history-title {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1.5px;
  margin-bottom: 12px;
  padding-left: 8px;
  opacity: 0.8;
}

.sessions-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.session-item {
  background: transparent;
  border: 1px solid transparent;
  color: var(--text-secondary);
  border-radius: 10px;
  padding: 11px 14px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  transition: all 0.2s ease;
  font-size: 0.92rem;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.session-item:hover {
  background: rgba(255, 255, 255, 0.02);
  color: var(--text-primary);
}

.session-item.active {
  background: rgba(215, 170, 79, 0.06);
  border-color: rgba(215, 170, 79, 0.2);
  color: var(--gold);
  font-weight: 500;
}

.session-item i {
  font-size: 0.95rem;
  opacity: 0.8;
}

.session-title-text {
  flex-grow: 1;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  padding-right: 15px;
}

.delete-session-btn {
  position: absolute;
  right: 10px;
  background: transparent;
  border: none;
  color: var(--text-secondary);
  opacity: 0;
  cursor: pointer;
  width: 22px;
  height: 22px;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.15s ease;
}

.session-item:hover .delete-session-btn {
  opacity: 0.6;
}

.delete-session-btn:hover {
  opacity: 1 !important;
  background: rgba(239, 68, 68, 0.15);
  color: #ef4444;
}

.sidebar-footer {
  padding: 20px;
  border-top: 1px solid var(--panel-border);
}

.sidebar-signature {
  margin-bottom: 14px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--panel-border);
  color: var(--text-secondary);
  font-family: var(--font-title);
  font-size: 0.72rem;
  font-weight: 700;
}

.sidebar-signature span {
  display: block;
  margin-top: 4px;
  font-family: var(--font-body);
  font-size: 0.58rem;
  font-weight: 500;
  letter-spacing: 0.35px;
  text-transform: uppercase;
}

.connection-status {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-secondary);
}

.status-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
}

.status-dot.online {
  background-color: var(--success);
  box-shadow: 0 0 8px var(--success);
}

/* ── MAIN WORKSPACE ── */
.chat-workspace {
  flex: 1 1 0;
  min-width: 0;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  position: relative;
  background: var(--bg-color);
}

/* Top sticky bar */
.top-nav-bar {
  height: 72px;
  border-bottom: 1px solid var(--panel-border);
  background: var(--panel-bg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 10;
  flex-shrink: 0;
}

.icon-nav-btn {
  background: transparent;
  border: none;
  color: var(--text-primary);
  font-size: 1.3rem;
  cursor: pointer;
  width: 40px;
  height: 40px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
}

.icon-nav-btn:hover {
  background: rgba(255, 255, 255, 0.05);
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
}

.nav-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.nav-logo-img {
  width: 30px;
  height: 30px;
  object-fit: contain;
  filter: drop-shadow(0 0 8px var(--gold-glow));
}

.nav-title {
  font-family: var(--font-title);
  font-size: 1.45rem;
  font-weight: 800;
  letter-spacing: -0.8px;
}

.nav-title span {
  background: linear-gradient(135deg, var(--gold) 0%, #FF4E67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.nav-kicker {
  margin-top: 5px;
  color: var(--text-secondary);
  font-size: 0.66rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-live-status {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 7px 10px;
  border: 1px solid rgba(30, 127, 79, 0.16);
  border-radius: 999px;
  background: rgba(30, 127, 79, 0.055);
  color: #256f4c;
  font-size: 0.72rem;
  font-weight: 600;
}

.nav-live-status span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #21a66b;
  box-shadow: 0 0 0 4px rgba(33, 166, 107, 0.1);
}

.nav-end-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 10px;
}

.chat-close-nav-btn {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(200, 20, 48, 0.14);
  border-radius: 12px;
  background: rgba(200, 20, 48, 0.055);
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chat-back-nav-btn {
  min-height: 40px;
  padding: 0 13px;
  border: 1px solid rgba(26, 37, 66, 0.1);
  border-radius: 12px;
  background: #fff;
  color: var(--text-primary);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.74rem;
  font-weight: 750;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.2s ease;
}

.chat-back-nav-btn:hover:not(:disabled) {
  background: rgba(26, 37, 66, 0.045);
}

.chat-back-nav-btn:disabled {
  opacity: 0.42;
  cursor: default;
}

.chat-back-nav-btn:active:not(:disabled) {
  transform: scale(0.96);
}

.chat-close-nav-btn:hover {
  background: rgba(200, 20, 48, 0.1);
}

.chat-close-nav-btn:active {
  transform: scale(0.96);
}

.mobile-chat-nav {
  display: none;
}

/* Scrollable scroller workspace */
.chat-scroller {
  flex-grow: 1;
  overflow-y: auto;
  padding: 24px 24px 10px;
  display: flex;
  flex-direction: column;
}

/* Empty State Hero panel */
.chat-empty-state {
  max-width: 960px;
  width: 100%;
  margin: auto auto;
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 32px 0 150px;
  animation: fadeIn 0.8s ease;
}

.hero-logo-box {
  text-align: center;
}

.hero-mark-wrap {
  position: relative;
  width: 82px;
  height: 82px;
  display: grid;
  place-items: center;
  margin: 0 auto 14px;
  border-radius: 28px;
  background: linear-gradient(145deg, #fff 0%, #fde8ec 100%);
  border: 1px solid rgba(200, 20, 48, 0.12);
  box-shadow: 0 16px 36px rgba(200, 20, 48, 0.13);
}

.hero-logo-img {
  width: 62px;
  height: 62px;
  object-fit: contain;
  filter: drop-shadow(0 8px 14px var(--gold-glow));
}

.hero-online-dot {
  position: absolute;
  right: 5px;
  bottom: 7px;
  width: 15px;
  height: 15px;
  border: 3px solid #fff;
  border-radius: 50%;
  background: #21a66b;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 12px;
  padding: 7px 11px;
  border: 1px solid rgba(30, 127, 79, 0.16);
  border-radius: 999px;
  background: rgba(30, 127, 79, 0.055);
  color: #16734a;
  font-family: var(--font-title);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.hero-logo-text {
  font-family: var(--font-title);
  font-size: clamp(2.45rem, 5vw, 4rem);
  line-height: 0.98;
  font-weight: 800;
  letter-spacing: -2px;
}

.hero-logo-text span {
  background: linear-gradient(135deg, var(--gold) 0%, #FF4E67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-subtitle {
  margin: 10px auto 0;
  font-family: var(--font-title);
  font-size: clamp(1rem, 2.2vw, 1.35rem);
  font-weight: 600;
  letter-spacing: -0.3px;
  background: linear-gradient(135deg, var(--gold) 0%, #FF4E67 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-tagline {
  max-width: 720px;
  margin: 16px auto 0;
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text-secondary);
  font-weight: 400;
  letter-spacing: 0;
}

.guide-features {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.guide-feature {
  display: flex;
  align-items: center;
  gap: 11px;
  min-height: 76px;
  padding: 13px 14px;
  border: 1px solid var(--panel-border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 8px 24px rgba(26, 37, 66, 0.045);
}

.guide-feature > i {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: var(--gold);
  background: rgba(200, 20, 48, 0.07);
}

.guide-feature span,
.guide-feature strong,
.guide-feature small {
  display: block;
}

.guide-feature strong {
  font-family: var(--font-title);
  font-size: 0.84rem;
}

.guide-feature small {
  margin-top: 3px;
  color: var(--text-secondary);
  font-size: 0.7rem;
  line-height: 1.35;
}

.suggestions-container h3 {
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--text-secondary);
  margin-bottom: 16px;
  text-align: left;
  opacity: 0.8;
}

.chips-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.chip {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  border-radius: 14px;
  padding: 13px 15px;
  font-family: var(--font-title);
  font-weight: 600;
  font-size: 0.84rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(26, 37, 66, 0.03);
  text-align: left;
}

.chip:hover {
  background: rgba(200, 20, 48, 0.04);
  border-color: rgba(200, 20, 48, 0.25);
  color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 8px 16px rgba(200, 20, 48, 0.08);
}

.chip:active {
  transform: translateY(0);
}

.chip i {
  color: var(--gold);
  font-size: 1.1rem;
}

/* App promo card */
.app-promo-box {
  background: linear-gradient(135deg, #192541 0%, #263657 100%);
  border: 1px solid var(--panel-border);
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 15px 35px rgba(26, 37, 66, 0.05);
}

.promo-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
}

.promo-details {
  padding: 25px 28px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.promo-brand {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.96);
}

.promo-brand img {
  width: 112px;
  height: 47px;
  object-fit: contain;
}

.promo-details .badge {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 30px;
}

.promo-details h3 {
  font-family: var(--font-title);
  font-size: 1.65rem;
  font-weight: 800;
  color: #fff;
}

.promo-details p {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.95rem;
  line-height: 1.5;
}

.coming-soon-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 5px;
}

.coming-soon-row span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font-family: var(--font-title);
  font-size: 0.75rem;
  font-weight: 600;
}

.coming-soon-row strong {
  color: #ff9dad;
  font-family: var(--font-title);
  font-size: 0.72rem;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.promo-image-box {
  position: relative;
  height: 100%;
  min-height: 400px;
  overflow: hidden;
  border-left: 1px solid var(--panel-border);
  display: grid;
  place-items: center;
  padding: 16px 24px;
  background:
    radial-gradient(circle at 78% 20%, rgba(255, 72, 100, 0.2), transparent 34%),
    radial-gradient(circle at 12% 78%, rgba(86, 184, 218, 0.18), transparent 38%),
    linear-gradient(145deg, #111b34 0%, #263b64 100%);
}

.promo-image-box::before,
.promo-image-box::after {
  content: "";
  position: absolute;
  border: 1px solid rgba(255, 255, 255, 0.09);
  border-radius: 50%;
  pointer-events: none;
}

.promo-image-box::before {
  width: 210px;
  height: 210px;
  left: -118px;
  top: -90px;
}

.promo-image-box::after {
  width: 120px;
  height: 120px;
  right: -55px;
  bottom: 38px;
}

.promo-phone {
  position: relative;
  z-index: 1;
  width: min(164px, 68%);
  padding: 18px 7px 9px;
  border-radius: 28px;
  background: #090d18;
  box-shadow: 0 24px 55px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(255, 255, 255, 0.15);
  transition: transform 0.5s ease;
}

.promo-phone::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 5px;
  left: 50%;
  width: 46px;
  height: 7px;
  border-radius: 999px;
  background: #272d3a;
  transform: translateX(-50%);
}

.promo-phone img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 390 / 844;
  object-fit: contain;
  border-radius: 18px;
}

.promo-shot-label {
  position: absolute;
  z-index: 3;
  right: 12px;
  top: 12px;
  padding: 5px 8px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(9, 13, 24, 0.72);
  color: rgba(255, 255, 255, 0.76);
  font-family: var(--font-title);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.45px;
  text-transform: uppercase;
  backdrop-filter: blur(8px);
}

.app-promo-box:hover .promo-phone {
  transform: translateY(-5px);
}

/* Brand ecosystem */
.brand-ecosystem {
  padding: 20px;
  border: 1px solid var(--panel-border);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
}

.brand-ecosystem-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
}

.brand-ecosystem-heading span,
.brand-ecosystem-heading small {
  display: block;
}

.brand-ecosystem-heading span {
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 0.86rem;
  font-weight: 750;
}

.brand-ecosystem-heading small {
  color: var(--text-secondary);
  font-size: 0.67rem;
}

.brand-ecosystem-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.brand-card {
  min-height: 94px;
  padding: 13px 15px;
  border: 1px solid rgba(26, 37, 66, 0.07);
  border-radius: 16px;
  background: #fff;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 9px;
}

.brand-card img {
  display: block;
  max-width: 138px;
  width: 100%;
  height: 48px;
  object-fit: contain;
  object-position: left center;
}

.brand-card-teber img {
  max-width: 116px;
}

.brand-card-mojo img {
  max-width: 145px;
  height: 35px;
  margin-top: 6px;
}

.brand-card span {
  color: var(--text-secondary);
  font-size: 0.63rem;
  font-weight: 650;
  letter-spacing: 0.25px;
}

.credits {
  color: var(--text-secondary);
  font-size: 0.72rem;
}

.simple-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 3px 4px;
}

.chat-brand-strip {
  position: relative;
  z-index: 6;
  flex-shrink: 0;
  max-width: 860px;
  width: calc(100% - 48px);
  margin: 12px auto 0;
  padding: 10px 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  border: 1px solid rgba(26, 37, 66, 0.08);
  border-radius: 16px;
  background: #fff;
  box-shadow: 0 8px 24px rgba(26, 37, 66, 0.045);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  animation: fadeIn 0.35s ease;
}

.chat-brand-unit {
  min-width: 0;
  display: flex;
  align-items: center;
  gap: 9px;
}

.chat-brand-unit img {
  width: 58px;
  height: 30px;
  flex: 0 0 auto;
  object-fit: contain;
}

.chat-brand-unit-teber img {
  width: 42px;
}

.chat-brand-unit span {
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.chat-brand-unit strong {
  color: var(--text-primary);
  font-family: var(--font-title);
  font-size: 0.76rem;
  font-weight: 800;
  line-height: 1.1;
  white-space: nowrap;
}

.chat-brand-unit small {
  color: var(--text-secondary);
  font-size: 0.58rem;
  font-weight: 500;
  line-height: 1.15;
  white-space: nowrap;
}

.chat-brand-divider {
  width: 1px;
  height: 34px;
  flex: 0 0 auto;
  background: rgba(26, 37, 66, 0.1);
}

/* ── DIALOGUE DIALOG STREAM ── */
.chat-stream {
  max-width: 860px;
  width: 100%;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  padding-bottom: 120px; /* Space for the bottom input box */
  animation: fadeIn 0.4s ease;
}

.chat-bubble-row {
  display: flex;
  flex-direction: column;
  width: 100%;
  margin-bottom: 20px;
  animation: fadeInUp 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.chat-bubble-row.user {
  align-items: flex-end;
}

.chat-bubble-row.ai {
  align-items: flex-start;
}

.bubble-meta {
  font-size: 0.72rem;
  color: var(--text-secondary);
  margin-bottom: 6px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 0 4px;
}

.chat-bubble-row.user .bubble-meta {
  flex-direction: row-reverse;
}

.bubble-meta i {
  font-size: 0.85rem;
}

.chat-bubble-row.ai .bubble-meta i {
  color: var(--gold);
}

.chat-bubble {
  max-width: 88%;
  padding: 16px 18px;
  font-size: 0.98rem;
  line-height: 1.62;
  position: relative;
  box-shadow: 0 8px 24px rgba(26, 37, 66, 0.07);
}

.chat-bubble.user {
  background: linear-gradient(135deg, var(--gold) 0%, #A50F26 100%);
  color: #ffffff;
  border-radius: 20px 20px 4px 20px;
  font-weight: 500;
  max-width: 72%;
}

.chat-bubble.ai {
  background: var(--card-bg);
  border: 1px solid var(--card-border);
  color: var(--text-primary);
  border-radius: 20px 20px 20px 4px;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
}

.learning-state-card {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 14px;
  padding: 12px 13px;
  border-radius: 13px;
  color: #087a5b;
  background: #e6f8f1;
  border: 1px solid #9eddc8;
}

.learning-state-icon {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  background: rgba(8, 122, 91, 0.1);
}

.learning-state-card strong,
.learning-state-card span {
  display: block;
}

.learning-state-card strong {
  font-family: var(--font-title);
  font-size: 0.74rem;
  line-height: 1.2;
  letter-spacing: 0.55px;
  text-transform: uppercase;
}

.learning-state-card span {
  margin-top: 3px;
  color: #276858;
  font-size: 0.76rem;
  line-height: 1.35;
}

/* Araştırma devam ediyor: nokta-nokta-nokta nefes alma animasyonu */
.learning-dots::after {
  content: '';
  display: inline-block;
  width: 1.1em;
  text-align: left;
  animation: learningDots 1.2s steps(4, end) infinite;
}

@keyframes learningDots {
  0% { content: ''; }
  25% { content: '.'; }
  50% { content: '..'; }
  75% { content: '...'; }
  100% { content: ''; }
}

/* Cevap az önce araştırılıp DOĞRULANDI (şu anda değil, geçmiş zaman) — farklı renk/ikon,
   "öğreniyor" ile kafa karıştırmasın (aynı yanıtta hem soru hem cevap gelir, "öğreniyor" demek yanlış) */
.learning-state-card.verified {
  color: #1d4ed8;
  background: #eaf1ff;
  border-color: #b9cdfb;
}

.learning-state-card.verified .learning-state-icon {
  background: rgba(29, 78, 216, 0.1);
}

.learning-state-card.verified span {
  color: #33507f;
}

/* Bullet points and styles inside AI bubble */
.chat-bubble.ai ul {
  margin: 10px 0 10px 18px;
}

.chat-bubble.ai li {
  margin-bottom: 6px;
}

.chat-bubble.ai a {
  color: var(--gold);
  text-decoration: none;
  font-weight: 600;
  border-bottom: 1.5px dashed var(--gold);
  padding: 0 2px;
  transition: all 0.2s ease;
}

.chat-bubble.ai a:hover {
  color: var(--gold);
  border-bottom-style: solid;
  background: rgba(200, 20, 48, 0.06);
}

.chat-bubble.ai a i {
  font-size: 0.85rem;
  margin-right: 2px;
}

/* Sources list style underneath AI response text */
.sources-area {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
  border-top: 1px solid var(--panel-border);
  padding-top: 14px;
}

.sources-area-title {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  opacity: 0.7;
}

.source-item-row {
  background: rgba(26, 37, 66, 0.02);
  border: 1px solid rgba(26, 37, 66, 0.06);
  padding: 8px 14px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-primary);
  text-decoration: none;
  transition: all 0.2s ease;
  max-width: 100%;
}

.source-item-row:hover {
  background: rgba(200, 20, 48, 0.04);
  border-color: rgba(200, 20, 48, 0.2);
  color: var(--gold);
}

.source-item-row i {
  color: var(--gold);
  font-size: 0.85rem;
  flex-shrink: 0;
}

.source-item-title {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

/* Pharmacy, Location, Transport Cards inside flow */
.cards-area {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(235px, 1fr));
  gap: 12px;
  margin-top: 16px;
  width: 100%;
}

.interactive-card {
  display: flex;
  flex-direction: column;
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(26, 37, 66, 0.08);
  border-radius: 15px;
  background: #fff;
  box-shadow: 0 8px 20px rgba(26, 37, 66, 0.045);
}

.card-header-area {
  display: flex;
  align-items: center;
  gap: 10px;
}

.card-icon-box {
  width: 36px;
  height: 36px;
  flex: 0 0 36px;
  display: grid;
  place-items: center;
  border-radius: 11px;
  color: var(--gold);
  background: rgba(200, 20, 48, 0.065);
}

.card-title-box {
  min-width: 0;
}

.card-title-box h4 {
  font-family: var(--font-title);
  font-size: 0.88rem;
  line-height: 1.25;
}

.card-title-box p {
  margin-top: 2px;
  color: var(--text-secondary);
  font-size: 0.72rem;
  line-height: 1.35;
}

.card-body-area {
  flex: 1;
  margin-top: 11px;
  color: var(--text-secondary);
  font-size: 0.74rem;
  line-height: 1.5;
}

.card-meta-line {
  margin-top: 8px;
  color: var(--gold);
  font-family: var(--font-title);
  font-size: 0.73rem;
  font-weight: 700;
}

.card-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin-top: 11px;
  padding: 9px 10px;
  border: 0 !important;
  border-radius: 10px;
  background: var(--gold);
  color: #fff !important;
  font-size: 0.72rem;
  text-decoration: none;
}

/* Feedback Buttons under AI bubbles */
.feedback-row {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 12px;
  padding: 0 4px;
}

.feedback-btn {
  background: transparent;
  border: none;
  color: rgba(148, 163, 184, 0.45);
  cursor: pointer;
  font-size: 0.95rem;
  transition: all 0.2s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
}

.feedback-btn:hover {
  color: var(--text-primary);
  background: rgba(255, 255, 255, 0.05);
  transform: scale(1.1);
}

.feedback-btn.active {
  color: var(--gold) !important;
  background: rgba(215, 170, 79, 0.1);
}

.feedback-thanks-text {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--gold);
  animation: fadeIn 0.3s ease;
}

/* Follow-up suggestions list displayed after the latest message bubble */
.dialogue-followups {
  margin-top: 8px;
  padding-left: 4px;
  animation: fadeInUp 0.4s ease 0.2s both;
}

.chips-container.flex-start {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.dialogue-followups .chip {
  width: auto;
  padding: 9px 12px;
  border-radius: 999px;
  font-size: 0.75rem;
}

.dialogue-followups h4 {
  font-family: var(--font-title);
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-secondary);
  letter-spacing: 1px;
  margin-bottom: 12px;
  opacity: 0.7;
}

/* ── STICKY BOTTOM COMPOSER ── */
.composer-container {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 22px 24px 14px;
  background: linear-gradient(to top, var(--bg-color) 70%, transparent);
  z-index: 5;
  display: flex;
  justify-content: center;
  flex-shrink: 0;
}

.composer-box {
  max-width: 860px;
  width: 100%;
}

.chat-form {
  width: 100%;
}

.composer-input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--panel-border);
  border-radius: 20px;
  padding: 8px 10px 8px 24px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 
    0 15px 35px rgba(26, 37, 66, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.composer-input-wrapper:focus-within {
  border-color: rgba(200, 20, 48, 0.45);
  box-shadow: 
    0 0 30px rgba(200, 20, 48, 0.06),
    0 15px 35px rgba(26, 37, 66, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  background: #ffffff;
}

.composer-input-wrapper input {
  flex-grow: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text-primary);
  font-size: 0.98rem;
  font-family: var(--font-body);
  padding: 12px 0;
}

.composer-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 8px;
  color: var(--text-secondary);
  font-size: 0.65rem;
  opacity: 0.72;
}

.composer-input-wrapper input::placeholder {
  color: var(--text-secondary);
  opacity: 0.5;
}

.composer-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

.gps-indicator {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--text-secondary);
  background: rgba(26, 37, 66, 0.02);
  border: 1px solid rgba(26, 37, 66, 0.06);
  padding: 6px 12px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  cursor: default;
  transition: all 0.2s ease;
  white-space: nowrap;
}

.gps-indicator i {
  color: var(--text-secondary);
  transition: color 0.2s ease;
}

.gps-indicator.active {
  color: var(--gold);
  border-color: rgba(215, 170, 79, 0.25);
  background: rgba(215, 170, 79, 0.05);
}

.gps-indicator.active i {
  color: var(--gold);
  filter: drop-shadow(0 0 3px var(--gold-glow));
}

.send-btn {
  background: linear-gradient(135deg, var(--gold) 0%, #A50F26 100%);
  border: none;
  outline: none;
  color: #ffffff;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.25s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 10px rgba(200, 20, 48, 0.25);
  font-size: 1.15rem;
}

.send-btn:hover {
  transform: scale(1.05);
  box-shadow: 0 6px 15px rgba(200, 20, 48, 0.4);
  background: linear-gradient(135deg, #FF667C 0%, var(--gold) 100%);
}

.send-btn:active {
  transform: scale(0.95);
}

/* Autocomplete list placement inside composer container */
.autocomplete-dropdown {
  position: absolute;
  bottom: 115%;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--panel-border);
  border-radius: 14px;
  box-shadow: 0 15px 30px rgba(26, 37, 66, 0.08);
  z-index: 100;
  max-height: 250px;
  overflow-y: auto;
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  padding: 6px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.autocomplete-dropdown.hidden {
  display: none !important;
}

.autocomplete-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  color: var(--text-primary);
  cursor: pointer;
  border-radius: 10px;
  font-size: 0.95rem;
  transition: all 0.15s ease;
  text-align: left;
}

.autocomplete-item:hover, .autocomplete-item.active {
  background: rgba(200, 20, 48, 0.06);
  color: var(--gold);
}

.autocomplete-item i {
  color: var(--text-secondary);
  font-size: 0.85rem;
}

.autocomplete-item:hover i, .autocomplete-item.active i {
  color: var(--gold);
}

/* Animations */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes rotateBrain {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes pulseGlow {
  0% {
    transform: scale(1) translateY(0);
    opacity: 0.07;
  }
  100% {
    transform: scale(1.15) translateY(-20px);
    opacity: 0.11;
  }
}

/* ── RESPONSIVE MOBILE ADJUSTMENTS ── */
@media (max-width: 768px) {
  body {
    overscroll-behavior: none;
  }

  .ambient-glow {
    width: 260px;
    height: 260px;
  }

  .ambient-glow.cyan {
    left: -80px;
    transform-origin: left center;
  }

  .ambient-glow.gold {
    right: 0;
    transform-origin: right center;
  }

  .mobile-hidden {
    display: none !important;
  }

  /* Sidebar overlay drawer */
  .sidebar {
    position: absolute;
    left: -280px;
    top: 0;
    bottom: 0;
    z-index: 100;
    box-shadow: 5px 0 25px rgba(26, 37, 66, 0.2);
  }
  
  .sidebar.open {
    left: 0;
  }
  
  .mobile-only-btn {
    display: flex;
  }

  .chat-scroller {
    padding: 16px;
  }

  .chat-empty-state {
    padding: 18px 0 135px;
    gap: 20px;
  }

  .chat-brand-strip {
    width: calc(100% - 32px);
    margin: 10px auto 0;
    padding: 9px 10px;
    gap: 8px;
    border-radius: 14px;
  }

  .chat-brand-unit {
    gap: 6px;
  }

  .chat-brand-unit img {
    width: 42px;
    height: 25px;
  }

  .chat-brand-unit-teber img {
    width: 31px;
  }

  .chat-brand-unit strong {
    font-size: 0.64rem;
  }

  .chat-brand-unit small {
    font-size: 0.49rem;
  }

  .chat-brand-divider {
    height: 29px;
  }

  .hero-logo-text {
    font-size: 2.65rem;
    letter-spacing: -1.5px;
  }

  .hero-tagline {
    font-size: 0.88rem;
    line-height: 1.55;
  }

  .hero-mark-wrap {
    width: 68px;
    height: 68px;
  }

  .hero-logo-img {
    width: 52px;
    height: 52px;
  }

  .guide-features,
  .chips-grid {
    grid-template-columns: 1fr;
  }

  .guide-feature {
    min-height: 66px;
  }

  .top-nav-bar {
    height: calc(64px + env(safe-area-inset-top));
    padding: env(safe-area-inset-top) max(14px, env(safe-area-inset-right)) 0 max(14px, env(safe-area-inset-left));
    position: relative;
    justify-content: flex-start;
  }

  .top-nav-bar .nav-brand {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
  }

  .top-nav-bar .nav-end-actions {
    margin-left: auto;
  }

  .chat-close-nav-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 12px;
    font-size: 1rem;
    touch-action: manipulation;
  }

  .chat-back-nav-btn {
    width: 40px;
    min-width: 40px;
    height: 40px;
    min-height: 40px;
    padding: 0;
    border-radius: 12px;
    font-size: 0.92rem;
    touch-action: manipulation;
  }

  .chat-back-nav-btn span {
    display: none;
  }

  .chat-close-nav-btn span {
    display: none;
  }

  .mobile-chat-nav {
    min-height: 46px;
    flex: 0 0 46px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    padding: 4px max(12px, env(safe-area-inset-right)) 4px max(12px, env(safe-area-inset-left));
    border-bottom: 1px solid var(--panel-border);
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 4px 14px rgba(26, 37, 66, 0.035);
    z-index: 8;
  }

  .mobile-chat-nav-btn {
    min-width: 72px;
    height: 38px;
    padding: 0 10px;
    border: 0;
    border-radius: 11px;
    background: transparent;
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 700;
    cursor: pointer;
    touch-action: manipulation;
  }

  .mobile-chat-nav-btn:first-child {
    justify-self: start;
  }

  .mobile-chat-nav-btn:last-child {
    justify-self: end;
  }

  .mobile-chat-nav-btn:active:not(:disabled),
  .mobile-chat-nav-btn.active {
    color: var(--gold);
    background: rgba(200, 20, 48, 0.07);
  }

  .mobile-chat-nav-btn:disabled {
    opacity: 0.28;
    cursor: default;
  }

  .mobile-chat-home-btn {
    min-width: 104px;
    border: 1px solid rgba(26, 37, 66, 0.07);
    background: #fff;
  }

  .nav-title {
    font-size: 1.08rem;
  }

  .nav-kicker {
    font-size: 0.54rem;
  }

  .hero-logo-icon {
    font-size: 3rem;
  }

  .promo-inner {
    grid-template-columns: 1fr;
  }

  .promo-details {
    padding: 20px;
    gap: 11px;
  }

  .promo-image-box {
    min-height: 350px;
    height: 350px;
    border-left: none;
    border-top: 1px solid var(--panel-border);
    padding: 10px 18px;
  }

  .promo-phone {
    width: 146px;
  }

  .brand-ecosystem {
    padding: 16px;
  }

  .brand-ecosystem-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 4px;
  }

  .brand-ecosystem-grid {
    grid-template-columns: 1fr;
  }

  .brand-card {
    min-height: 70px;
    flex-direction: row;
    align-items: center;
  }

  .brand-card img,
  .brand-card-mojo img {
    width: 135px;
    height: 44px;
    margin-top: 0;
  }

  .chat-bubble {
    max-width: 94%;
    padding: 14px 16px;
    font-size: 1rem;
  }

  .chat-bubble.user {
    max-width: 88%;
  }

  .cards-area {
    grid-template-columns: 1fr;
  }

  .simple-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .composer-container {
    padding: 12px max(14px, env(safe-area-inset-right)) max(8px, env(safe-area-inset-bottom)) max(14px, env(safe-area-inset-left));
  }

  .composer-input-wrapper {
    min-width: 0;
    padding: 7px 8px 7px 14px;
  }

  .composer-input-wrapper input {
    min-width: 0;
    font-size: 16px;
  }

  .composer-actions {
    flex: 0 0 auto;
    gap: 6px;
  }

  .gps-indicator {
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    justify-content: center;
    padding: 0;
    overflow: hidden;
    font-size: 0;
  }

  .gps-indicator i {
    font-size: 0.82rem;
  }

  .send-btn {
    flex: 0 0 40px;
    width: 40px;
    height: 40px;
  }

  .composer-note {
    font-size: 0.58rem;
  }
}

/* ── MOBILE TOUCH FEEDBACK ── */
@media (hover: none) and (pointer: coarse) {
  .icon-nav-btn,
  .chat-back-nav-btn,
  .chat-close-nav-btn,
  .new-chat-btn,
  .mobile-only-btn,
  .chip,
  .session-item,
  .send-btn,
  .feedback-btn,
  .clarification-option-btn,
  .source-item-row {
    -webkit-tap-highlight-color: transparent;
    transition: transform 120ms ease, background-color 120ms ease, border-color 120ms ease, box-shadow 120ms ease;
  }

  .icon-nav-btn:active,
  .chat-back-nav-btn:active:not(:disabled),
  .chat-close-nav-btn:active,
  .new-chat-btn:active,
  .mobile-only-btn:active,
  .chip:active,
  .session-item:active,
  .feedback-btn:active,
  .clarification-option-btn:active,
  .source-item-row:active {
    transform: scale(0.97);
    background-color: rgba(200, 20, 48, 0.075);
  }

  .send-btn:active {
    transform: scale(0.91);
    box-shadow: 0 2px 6px rgba(200, 20, 48, 0.2);
  }

  .chip:active {
    border-color: rgba(200, 20, 48, 0.3);
    color: var(--gold);
  }

  .sidebar-scrim {
    touch-action: manipulation;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}

/* Chat bubble avatar styling */
.bubble-avatar-img {
  width: 18px;
  height: 18px;
  object-fit: contain;
  border-radius: 4px;
  vertical-align: middle;
  box-shadow: 0 0 5px rgba(215, 170, 79, 0.2);
}

.bubble-avatar-icon {
  font-size: 0.85rem;
  color: var(--text-secondary);
}

/* Clarification Selection Card inside chat bubble */
.clarification-card {
  background: rgba(200, 20, 48, 0.03);
  border: 1px solid rgba(200, 20, 48, 0.12);
  border-radius: 14px;
  padding: 14px;
  margin-top: 14px;
  animation: fadeIn 0.4s ease;
  width: 100%;
}

.clarification-header {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-title);
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 12px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.clarification-header i {
  font-size: 0.95rem;
  filter: drop-shadow(0 0 2px var(--gold-glow));
}

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

.clarification-option-btn {
  background: rgba(26, 37, 66, 0.02);
  border: 1px solid rgba(26, 37, 66, 0.06);
  color: var(--text-primary);
  padding: 12px 14px;
  border-radius: 10px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: left;
  transition: all 0.2s ease;
  width: 100%;
  font-family: var(--font-body);
  font-size: 0.92rem;
}

.clarification-option-btn:hover {
  background: rgba(200, 20, 48, 0.04);
  border-color: rgba(200, 20, 48, 0.2);
  color: var(--gold);
  transform: translateX(3px);
}

.opt-left {
  display: flex;
  align-items: center;
  gap: 10px;
}

.opt-left i {
  color: var(--gold);
  font-size: 0.92rem;
  width: 16px;
  text-align: center;
}

.clarification-option-btn i.fa-chevron-right {
  font-size: 0.75rem;
  color: var(--text-secondary);
  transition: transform 0.2s ease;
}

.clarification-option-btn:hover i.fa-chevron-right {
  color: var(--gold);
  transform: translateX(2px);
}

/* ── MINIMAL PORTAL PASS ── */
body {
  background: #f7f8fa;
}

body::before {
  display: none;
}

.top-nav-bar,
.mobile-chat-nav {
  background: rgba(255, 255, 255, 0.96);
}

.chat-scroller {
  padding-top: 18px;
}

.chat-empty-state {
  max-width: 560px;
  gap: 18px;
  padding-top: 40px;
}

.hero-logo-text {
  font-size: clamp(2rem, 5vw, 3rem);
  letter-spacing: -1.7px;
}

.hero-tagline {
  max-width: 480px;
  margin-top: 12px;
  font-size: 0.94rem;
}

.suggestions-container h3 {
  margin-bottom: 12px;
  text-align: center;
  font-size: 0.72rem;
}

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

.chip {
  min-height: 54px;
  padding: 11px 13px;
  border-radius: 12px;
  box-shadow: none;
  font-size: 0.78rem;
}

.chip:hover {
  transform: none;
  box-shadow: none;
}

.simple-footer {
  justify-content: center;
  padding-top: 2px;
}

.credits {
  font-size: 0.64rem;
}

.composer-input-wrapper {
  border-radius: 16px;
  box-shadow: 0 10px 24px rgba(26, 37, 66, 0.06);
}

@media (max-width: 768px) {
  .chat-empty-state {
    gap: 16px;
    padding-top: 28px;
  }

  .hero-logo-text {
    font-size: 2.25rem;
  }

  .hero-tagline {
    max-width: 330px;
    font-size: 0.84rem;
  }

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

  .simple-footer {
    align-items: center;
    text-align: center;
  }
}
