:root {
  --bg: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F7F7F7;
  --text: #1a1a1a;
  --text-secondary: #555555;
  --text-muted: #999999;
  --accent: #012169;
  --accent-soft: rgba(1,33,105,0.10);
  --border: #E0E0E0;
  --border-strong: #CCCCCC;
  --green: #2ECC71;
  --green-soft: rgba(46,204,113,0.10);
  --red: #E74C3C;
  --red-soft: rgba(231,76,60,0.10);
  --radius: 6px;
  --radius-sm: 4px;
}

* { margin: 0; padding: 0; box-sizing: border-box; -webkit-tap-highlight-color: transparent; }

body {
  font-family: 'Roboto', -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100dvh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

.serif { font-family: 'Roboto', -apple-system, sans-serif; }

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

/* Screen management */
.screen { display: none; position: relative; min-height: 100dvh; }
.screen.active { display: flex; flex-direction: column; animation: fade-in 0.35s ease-out; }

/* ===== HEADER ===== */
.header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 2px solid var(--text);
  padding: 14px 20px;
  display: flex; align-items: center; justify-content: space-between;
}
.header-brand {
  font-size: 15px; font-weight: 700; letter-spacing: -0.5px;
  color: var(--text); text-transform: lowercase;
}
.header-brand span { color: var(--accent); }

/* Mode toggle */
.mode-toggle {
  display: flex; gap: 0;
  border: 2px solid var(--text);
  border-radius: 0;
  overflow: hidden;
}
.mode-toggle button {
  padding: 6px 16px; border: none; border-radius: 0;
  font-family: inherit; font-size: 11px; font-weight: 600;
  cursor: pointer; transition: all 0.2s;
  background: transparent; color: var(--text);
  text-transform: uppercase; letter-spacing: 1px;
}
.mode-toggle button + button {
  border-left: 2px solid var(--text);
}
.mode-toggle button.active {
  background: var(--text); color: #FFFFFF;
}

/* ===== WELCOME SPLASH SCREEN ===== */
#welcome-screen {
  justify-content: center; align-items: center;
  padding: 40px 24px;
  background: #FFFFFF;
  min-height: 100dvh;
}
.welcome-content {
  width: 100%; max-width: 560px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center;
}
.welcome-hero {
  margin-bottom: 40px;
  transition: opacity 0.3s ease;
}
.welcome-hero.fade-out {
  opacity: 0;
}
.welcome-line {
  font-family: 'Roboto', -apple-system, sans-serif;
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -2px;
  color: var(--text);
  display: block;
}
.boxed {
  display: inline-block;
  border: 2.5px solid var(--text);
  padding: 2px 12px;
  margin: 4px 2px;
  border-radius: 0;
}
.boxed.highlight {
  border-color: var(--accent);
  background: var(--accent);
  color: #FFFFFF;
}
.welcome-hey {
  margin-top: 24px;
  font-size: clamp(36px, 8vw, 64px);
  font-weight: 700;
  letter-spacing: -2px;
  line-height: 1.15;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 1.4em;
}
.welcome-hey-label {
  color: var(--text);
}
.welcome-hey .boxed {
  font-size: inherit;
  transition: width 0.2s ease;
}
.welcome-statement {
  max-width: 520px;
  margin-bottom: 32px;
  text-align: center;
}
.welcome-statement p {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.5;
  color: var(--accent);
  margin-bottom: 12px;
}
.welcome-statement p:last-of-type:not(.welcome-statement-sub) {
  margin-bottom: 16px;
}
.welcome-statement-sub {
  font-size: 13px !important;
  font-weight: 500 !important;
  color: var(--text-secondary) !important;
  margin-bottom: 0 !important;
}
.welcome-body {
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  max-width: 440px;
  margin-bottom: 40px;
}
.welcome-body strong {
  color: var(--text);
  font-weight: 600;
}
.welcome-cta {
  padding: 16px 48px;
  background: var(--text);
  color: #FFFFFF;
  border: none;
  border-radius: 50px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
  letter-spacing: -0.2px;
}
.welcome-cta:hover {
  background: #333;
  transform: translateY(-1px);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.welcome-cta:active { transform: scale(0.97); }

.welcome-footer {
  margin-top: 40px;
  text-align: center;
}
.welcome-footer-text {
  font-size: 13px;
  line-height: 1.7;
  color: var(--text-secondary);
  margin-bottom: 12px;
}
.welcome-footer-contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.welcome-footer-contacts a {
  font-size: 13px;
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
}
.welcome-footer-contacts a:hover {
  text-decoration: underline;
}

/* ===== ACCESS CODE SCREEN ===== */
#access-screen {
  justify-content: center; align-items: center;
  padding: 40px 24px;
  background: #FFFFFF;
}
.access-box { width: 100%; max-width: 320px; text-align: center; }
.access-logo {
  font-size: 24px; font-weight: 700; margin-bottom: 6px; color: var(--text);
  letter-spacing: -0.5px;
}
.access-logo span { color: var(--accent); }
.access-subtitle {
  font-size: 11px; color: var(--text-muted); margin-bottom: 36px;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.access-input {
  width: 100%; padding: 14px 20px;
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: 0;
  font-family: inherit; font-size: 18px; font-weight: 600;
  color: var(--text);
  text-align: center; letter-spacing: 4px;
  text-transform: uppercase;
  outline: none; transition: border-color 0.2s;
}
.access-input:focus { border-color: var(--accent); }
.access-input::placeholder { color: var(--text-muted); letter-spacing: 2px; font-size: 14px; font-weight: 400; }
.access-btn {
  width: 100%; padding: 14px;
  background: var(--text); color: #FFFFFF;
  border: none; border-radius: 50px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer; margin-top: 16px;
  transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 1px;
}
.access-btn:hover { background: #333; }
.access-btn:active { opacity: 0.8; }
.access-error {
  font-size: 13px; color: var(--red); margin-top: 12px;
  font-weight: 500;
  animation: fade-in 0.3s ease-out;
}

/* ===== LANDING / CAROUSEL ===== */
.carousel-container {
  flex: 1; overflow: hidden; position: relative;
  padding: 28px 20px 0;
}
.carousel-track {
  display: flex; transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  touch-action: pan-y;
}
.carousel-slide { min-width: 100%; padding: 0 4px; }
.partner-card {
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: 0;
  padding: 36px 28px 32px;
  text-align: center;
}
.partner-photo {
  width: 88px; height: 88px; border-radius: 0;
  margin: 0 auto 20px;
  border: 2px solid var(--text);
  object-fit: cover;
  background: var(--surface-2);
}
.partner-role {
  font-size: 11px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 20px;
}
.partner-quote {
  font-family: 'Roboto', -apple-system, sans-serif;
  font-size: 17px; line-height: 1.65; color: var(--text-secondary);
  font-style: italic; margin-bottom: 24px;
}
.partner-signature {
  font-size: 14px; font-weight: 700; color: var(--text);
  letter-spacing: -0.3px;
}

/* Carousel dots */
.carousel-dots {
  display: flex; justify-content: center; gap: 8px;
  padding: 20px 0 28px;
}
.carousel-dot {
  width: 8px; height: 8px; border-radius: 0;
  background: var(--border-strong); opacity: 0.4;
  border: none; cursor: pointer; transition: all 0.3s;
}
.carousel-dot.active {
  opacity: 1; background: var(--text);
  width: 24px;
}

/* Framing section */
.framing-section { padding: 0 20px 28px; }
.framing-text {
  font-size: 15px; line-height: 1.7; color: var(--text-secondary);
  padding: 20px 24px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
}

/* Mode selection cards */
.mode-cards {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px;
  padding: 0 20px 32px;
}
.mode-card {
  background: var(--surface);
  border: 2px solid var(--text);
  border-radius: 0;
  padding: 28px 16px 24px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
}
.mode-card:hover, .mode-card:active {
  background: var(--accent);
  border-color: var(--accent);
  color: #FFFFFF;
}
.mode-card:hover .mode-card-icon,
.mode-card:active .mode-card-icon {
  background: rgba(255,255,255,0.2); color: #FFFFFF;
}
.mode-card:hover .mode-card-title,
.mode-card:active .mode-card-title { color: #FFFFFF; }
.mode-card:hover .mode-card-desc,
.mode-card:active .mode-card-desc { color: rgba(255,255,255,0.85); }
.mode-card-icon {
  width: 40px; height: 40px; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 14px;
  font-size: 18px; font-weight: 700;
  border: 2px solid currentColor;
  transition: all 0.2s;
}
.mode-card[data-mode="truth"] .mode-card-icon {
  color: var(--accent);
}
.mode-card[data-mode="story"] .mode-card-icon {
  color: var(--text);
}
.mode-card-title {
  font-size: 13px; font-weight: 700; margin-bottom: 6px; color: var(--text);
  text-transform: uppercase; letter-spacing: 0.5px;
  transition: color 0.2s;
}
.mode-card-desc {
  font-size: 12px; color: var(--text-muted); line-height: 1.5;
  transition: color 0.2s;
}

/* Contact section */
.contact-section { padding: 0 20px 40px; }
.contact-title {
  font-size: 11px; font-weight: 700; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 2px;
  margin-bottom: 16px;
}
.contact-list { display: flex; flex-direction: column; gap: 0; }
.contact-item {
  font-size: 13px; color: var(--text-secondary);
  display: flex; justify-content: space-between; align-items: center;
  padding: 12px 0;
  border-bottom: 1px solid var(--border);
}
.contact-item:first-child { border-top: 1px solid var(--border); }
.contact-item span:first-child { font-weight: 600; color: var(--text); }
.contact-item span:last-child { color: var(--text-muted); font-size: 12px; }

/* ===== QUIZ SCREEN ===== */
#quiz-screen { padding-bottom: 0; }
.quiz-header { padding: 24px 20px 0; }
.quiz-title {
  font-family: 'Roboto', -apple-system, sans-serif;
  font-size: 24px; font-weight: 700; color: var(--text);
  line-height: 1.2; margin-bottom: 4px;
  letter-spacing: -0.5px;
}
.quiz-subtitle {
  font-size: 12px; color: var(--text-muted); margin-bottom: 20px;
  text-transform: uppercase; letter-spacing: 1px; font-weight: 500;
}
.quiz-progress {
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 8px;
}
.quiz-progress-bar {
  flex: 1; height: 3px;
  background: var(--border);
  border-radius: 0; overflow: hidden;
}
.quiz-progress-fill {
  height: 100%; border-radius: 0;
  background: var(--accent);
  transition: width 0.4s ease;
}
.quiz-progress-text {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  white-space: nowrap; text-transform: uppercase; letter-spacing: 0.5px;
}
.quiz-score {
  font-size: 12px; color: var(--text-muted);
  padding: 0 20px 20px;
  font-weight: 500;
}
.quiz-score span { color: var(--accent); font-weight: 700; }

/* Quiz question area */
.quiz-content {
  flex: 1; padding: 0 20px 24px;
  display: flex; flex-direction: column;
}
.quiz-question {
  font-size: 18px; font-weight: 600; line-height: 1.5;
  margin-bottom: 24px; min-height: 60px;
  letter-spacing: -0.3px;
}
.quiz-options {
  display: flex; flex-direction: column; gap: 8px;
  margin-bottom: 20px;
}
.quiz-option {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
  font-family: inherit; font-size: 14px;
  color: var(--text);
  cursor: pointer; transition: all 0.15s;
  text-align: left; width: 100%;
}
.quiz-option:active { transform: scale(0.99); }
.quiz-option:hover { border-color: var(--text); }
.quiz-option-letter {
  width: 28px; height: 28px;
  display: flex; align-items: center; justify-content: center;
  background: var(--surface-2);
  border-radius: 0;
  font-size: 11px; font-weight: 700;
  color: var(--text-secondary);
  flex-shrink: 0;
  border: 1px solid var(--border);
}
.quiz-option.correct {
  border-color: var(--green);
  background: var(--green-soft);
}
.quiz-option.correct .quiz-option-letter {
  background: var(--green); color: white; border-color: var(--green);
}
.quiz-option.wrong {
  border-color: var(--red);
  background: var(--red-soft);
}
.quiz-option.wrong .quiz-option-letter {
  background: var(--red); color: white; border-color: var(--red);
}
.quiz-option.dimmed { opacity: 0.35; pointer-events: none; }

/* KI comment bubble */
.quiz-comment {
  padding: 16px 18px;
  background: var(--accent-soft);
  border: 2px solid var(--accent);
  border-radius: 0;
  font-size: 14px; line-height: 1.65;
  color: var(--text-secondary);
  animation: fade-in 0.3s ease-out;
  margin-bottom: 16px;
}
.quiz-comment-label {
  font-size: 10px; font-weight: 700; color: var(--accent);
  text-transform: uppercase; letter-spacing: 1.5px;
  margin-bottom: 6px;
}

.quiz-next-btn {
  padding: 12px 32px;
  background: var(--text); color: #FFFFFF;
  border: none; border-radius: 50px;
  font-family: inherit; font-size: 13px; font-weight: 600;
  cursor: pointer; align-self: flex-end;
  transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.quiz-next-btn:hover { background: #333; }
.quiz-next-btn:active { opacity: 0.8; }

/* Quiz result screen */
.quiz-result {
  flex: 1; display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  padding: 40px 24px; text-align: center;
}
.quiz-result-score {
  font-family: 'Roboto', -apple-system, sans-serif;
  font-size: 72px; font-weight: 700;
  color: var(--accent);
  margin-bottom: 8px;
  letter-spacing: -3px;
}
.quiz-result-label {
  font-size: 11px; color: var(--text-muted); margin-bottom: 28px;
  text-transform: uppercase; letter-spacing: 2px; font-weight: 600;
}
.quiz-result-comment {
  font-size: 15px; line-height: 1.7; color: var(--text-secondary);
  max-width: 300px; margin-bottom: 36px;
}
.quiz-to-chat-btn {
  padding: 14px 36px;
  background: var(--text); color: #FFFFFF;
  border: none; border-radius: 50px;
  font-family: inherit; font-size: 14px; font-weight: 600;
  cursor: pointer;
  text-transform: uppercase; letter-spacing: 0.5px;
}
.quiz-to-chat-btn:hover { background: #333; }
.quiz-to-chat-btn:active { opacity: 0.8; }

/* ===== CHAT SCREEN ===== */
#chat-screen { height: 100dvh; }

/* Tab bar */
.chat-tabs {
  display: flex; gap: 0;
  border-bottom: 2px solid var(--text);
  background: var(--bg);
}
.chat-tab {
  flex: 1; padding: 12px;
  border: none; background: none;
  font-family: inherit; font-size: 11px; font-weight: 600;
  color: var(--text-muted); cursor: pointer;
  position: relative; transition: all 0.2s;
  text-transform: uppercase; letter-spacing: 1px;
}
.chat-tab.active { color: var(--text); background: var(--surface-2); }
.chat-tab.active::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--accent);
}

/* Mode indicator */
.mode-indicator {
  display: flex; align-items: center; gap: 8px;
  padding: 10px 20px;
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}
.mode-dot {
  width: 6px; height: 6px; border-radius: 50%;
}
.mode-dot.truth { background: var(--accent); }
.mode-dot.story { background: var(--green); }
.mode-label {
  font-size: 11px; font-weight: 600; color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.5px;
}

/* Chat messages */
.chat-messages {
  flex: 1; overflow-y: auto;
  padding: 16px 20px;
  display: flex; flex-direction: column; gap: 12px;
}
.chat-msg {
  max-width: 85%; padding: 12px 16px;
  font-size: 14px; line-height: 1.65;
  animation: fade-in 0.3s ease-out;
}
.chat-msg.ai {
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: 0 var(--radius) var(--radius) 0;
  align-self: flex-start;
  color: var(--text-secondary);
  border-left: 3px solid var(--accent);
}
.chat-msg.user {
  background: var(--text);
  color: #FFFFFF;
  align-self: flex-end;
  border-radius: var(--radius) 0 0 var(--radius);
  border: none;
}

/* Markdown content inside AI messages */
.chat-msg.ai p { margin-bottom: 8px; }
.chat-msg.ai p:last-child { margin-bottom: 0; }
.chat-msg.ai strong { font-weight: 600; color: var(--text); }
.chat-msg.ai em { font-style: italic; }
.chat-msg.ai ul, .chat-msg.ai ol {
  margin: 8px 0; padding-left: 20px;
}
.chat-msg.ai li { margin-bottom: 4px; }
.chat-msg.ai li:last-child { margin-bottom: 0; }

/* Voice orb section */
.voice-orb-section {
  display: flex; flex-direction: column; align-items: center;
  padding: 16px 20px 8px;
  gap: 8px;
}
.voice-orb-label {
  font-size: 12px; font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.3px;
  transition: color 0.3s;
}
/* Voice orb button (Siri-style) */
.voice-orb {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: none;
  cursor: pointer;
  position: relative;
  background: linear-gradient(135deg, #1a1030, #0d0a1a);
  display: flex; align-items: center; justify-content: center;
  overflow: visible;
  transition: transform 0.2s;
}
.voice-orb:active { transform: scale(0.95); }
.voice-orb svg {
  width: 28px; height: 28px;
  fill: rgba(255,255,255,0.6);
  position: relative; z-index: 3;
  transition: fill 0.3s;
}
.voice-orb .voice-orb-speaker { display: none; }
.voice-orb-glow {
  position: absolute; inset: -10px;
  border-radius: 50%;
  opacity: 0.3;
  background:
    radial-gradient(circle at 30% 25%, rgba(160,60,240,0.9), transparent 50%),
    radial-gradient(circle at 75% 60%, rgba(0,180,210,0.8), transparent 50%),
    radial-gradient(circle at 45% 80%, rgba(255,50,110,0.7), transparent 50%),
    radial-gradient(circle at 55% 35%, rgba(255,255,255,0.8), transparent 25%);
  filter: blur(8px);
  z-index: 0;
  transition: opacity 0.4s;
}
.voice-orb-inner {
  position: absolute; inset: 4px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1030, #0d0a1a);
  z-index: 2;
}
/* Listening state */
.voice-orb.listening {
  transform: scale(1.05);
}
.voice-orb.listening .voice-orb-glow {
  opacity: 1;
  animation: siri-breathe 1.5s ease-in-out infinite;
}
.voice-orb.listening .voice-orb-mic { fill: #fff; }
.voice-orb.listening ~ .voice-orb-label { color: var(--accent); }
/* Playing state */
.voice-orb.playing .voice-orb-mic { display: none; }
.voice-orb.playing .voice-orb-speaker { display: block; fill: #fff; }
.voice-orb.playing .voice-orb-glow {
  opacity: 1;
  animation: siri-shimmer 2s ease-in-out infinite, siri-rotate 6s linear infinite;
}
/* Loading state (waiting for TTS) */
.voice-orb.loading .voice-orb-glow {
  opacity: 0.7;
  animation: siri-pulse-slow 1s ease-in-out infinite;
}

.voice-orb.disabled {
  opacity: 0.35;
  pointer-events: none;
}
@keyframes siri-breathe {
  0%, 100% { inset: -10px; opacity: 0.8; }
  50% { inset: -16px; opacity: 1; }
}
@keyframes siri-shimmer {
  0%, 100% { transform: scale(1); filter: blur(8px); }
  50% { transform: scale(1.1); filter: blur(10px); }
}
@keyframes siri-rotate {
  to { transform: rotate(360deg); }
}
@keyframes siri-pulse-slow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 0.9; }
}

/* Typing indicator */
.typing-indicator {
  display: flex; align-items: center; gap: 5px;
  padding: 14px 18px;
  background: var(--surface-2);
  border: 2px solid var(--border);
  border-radius: 0 var(--radius) var(--radius) 0;
  border-left: 3px solid var(--accent);
  align-self: flex-start;
  animation: fade-in 0.3s ease-out;
}
.typing-indicator .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--text-muted);
  animation: typing-bounce 1.4s infinite ease-in-out;
}
.typing-indicator .dot:nth-child(1) { animation-delay: 0s; }
.typing-indicator .dot:nth-child(2) { animation-delay: 0.2s; }
.typing-indicator .dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes typing-bounce {
  0%, 60%, 100% { transform: translateY(0); opacity: 0.4; }
  30% { transform: translateY(-6px); opacity: 1; }
}

/* Chat input */
.chat-input-area {
  padding: 12px 16px;
  background: var(--bg);
  border-top: 2px solid var(--text);
  display: flex; gap: 8px; align-items: flex-end;
}
.chat-input {
  flex: 1; padding: 10px 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
  font-family: inherit; font-size: 14px;
  color: var(--text);
  outline: none; resize: none;
  max-height: 100px; min-height: 40px;
}
.chat-input:focus { border-color: var(--text); }
.chat-input::placeholder { color: var(--text-muted); }
.chat-send-btn {
  width: 40px; height: 40px;
  background: var(--text);
  border: none; border-radius: 0;
  display: flex; align-items: center; justify-content: center;
  cursor: pointer; flex-shrink: 0;
  transition: all 0.2s;
}
.chat-send-btn:hover { background: #333; }
.chat-send-btn:active { transform: scale(0.92); }
.chat-send-btn svg { width: 16px; height: 16px; fill: #FFFFFF; }

/* Welcome message */
.chat-welcome {
  text-align: center; padding: 48px 20px;
  color: var(--text-muted);
}
.chat-welcome h3 {
  font-family: 'Roboto', -apple-system, sans-serif;
  font-size: 24px; font-weight: 700; color: var(--text);
  margin-bottom: 8px; letter-spacing: -0.5px;
}
.chat-welcome p { font-size: 14px; line-height: 1.6; max-width: 300px; margin: 0 auto; }

/* Suggested questions */
.chat-suggestions {
  display: flex; flex-direction: column; gap: 6px;
  padding: 0 20px 16px;
}
.chat-suggestion {
  padding: 11px 16px;
  background: var(--surface);
  border: 2px solid var(--border);
  border-radius: 0;
  font-family: inherit; font-size: 13px;
  color: var(--text-secondary);
  cursor: pointer; text-align: left;
  transition: all 0.15s;
}
.chat-suggestion:hover, .chat-suggestion:active {
  border-color: var(--text);
  background: var(--surface-2);
}

/* Utility */
.hidden { display: none !important; }

/* Version badge */
.app-version {
  position: fixed;
  bottom: 8px;
  right: 12px;
  font-size: 11px;
  color: var(--text-muted, #999);
  opacity: 0.5;
  pointer-events: none;
  z-index: 9999;
}
