/* ============================================
   SPAZAI.COM — STYLESHEET
   Default: Light mode. Dark mode via .dark class on <body>.
   ============================================ */

/* ---- LIGHT MODE (default) ---- */
:root {
  --bg:           #f8f7f4;
  --bg2:          #f0efe9;
  --bg3:          #e8e6df;
  --surface:      #ffffff;
  --surface2:     #f2f0eb;
  --border:       rgba(0,0,0,0.08);
  --border-bright:rgba(0,0,0,0.14);
  --text:         #1a1814;
  --text-muted:   #5c5850;
  --text-faint:   #a8a49e;
  --accent:       #b8873a;
  --accent2:      #d4a055;
  --accent-glow:  rgba(184,135,58,0.12);
  --green:        #16a34a;
  --green-dim:    rgba(22,163,74,0.1);
  --header-bg:    rgba(248,247,244,0.88);
  --shadow:       0 4px 24px rgba(0,0,0,0.08);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.12);
  --orb1-color:   rgba(184,135,58,0.25);
  --orb2-color:   rgba(120,100,220,0.12);
  --orb3-color:   rgba(184,135,58,0.1);
  --grid-line:    rgba(0,0,0,0.04);
  --radius:       14px;
  --radius-lg:    20px;
  --radius-xl:    28px;
  --font-display: 'DM Serif Display', Georgia, serif;
  --font-body:    'DM Sans', system-ui, sans-serif;
  --transition:   0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- DARK MODE ---- */
body.dark {
  --bg:           #0d0d0f;
  --bg2:          #131316;
  --bg3:          #1a1a1e;
  --surface:      #1e1e23;
  --surface2:     #252530;
  --border:       rgba(255,255,255,0.07);
  --border-bright:rgba(255,255,255,0.14);
  --text:         #f0efe8;
  --text-muted:   #9997a0;
  --text-faint:   #4a4852;
  --accent:       #c9a96e;
  --accent2:      #e8c98a;
  --accent-glow:  rgba(201,169,110,0.15);
  --green:        #4ade80;
  --green-dim:    rgba(74,222,128,0.12);
  --header-bg:    rgba(13,13,15,0.85);
  --shadow:       0 4px 24px rgba(0,0,0,0.5);
  --shadow-lg:    0 12px 48px rgba(0,0,0,0.6);
  --orb1-color:   rgba(201,169,110,0.4);
  --orb2-color:   rgba(100,80,200,0.3);
  --orb3-color:   rgba(201,169,110,0.15);
  --grid-line:    rgba(255,255,255,0.025);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  transition: background 0.3s ease, color 0.3s ease;
}

/* ---- HEADER ---- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border);
  background: var(--header-bg);
  transition: background 0.3s ease, border-color 0.3s ease;
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--text);
  text-decoration: none;
}

.logo-icon {
  color: var(--accent);
  font-size: 1.1rem;
  animation: spinStar 8s linear infinite;
}

@keyframes spinStar {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}

.logo-badge {
  font-family: var(--font-body);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  border: 1px solid rgba(184,135,58,0.35);
  padding: 2px 7px;
  border-radius: 99px;
  margin-left: 2px;
}

body.dark .logo-badge { border-color: rgba(201,169,110,0.35); }

.header-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  transition: color var(--transition);
}
.nav-link:hover { color: var(--text); }

/* ---- THEME TOGGLE ---- */
.theme-toggle {
  background: var(--surface2);
  border: 1px solid var(--border-bright);
  border-radius: 99px;
  width: 52px;
  height: 28px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background var(--transition), border-color var(--transition);
  flex-shrink: 0;
  padding: 0;
  overflow: hidden;
}

.theme-toggle:hover {
  border-color: var(--accent);
}

.theme-icon-sun,
.theme-icon-moon {
  position: absolute;
  font-size: 0.85rem;
  transition: opacity 0.25s ease, transform 0.25s ease;
  line-height: 1;
}

/* Light mode: show sun, hide moon */
.theme-icon-sun  { opacity: 1; transform: translateY(0); }
.theme-icon-moon { opacity: 0; transform: translateY(8px); }

/* Dark mode: show moon, hide sun */
body.dark .theme-icon-sun  { opacity: 0; transform: translateY(-8px); }
body.dark .theme-icon-moon { opacity: 1; transform: translateY(0); }

.nav-cta {
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.875rem;
  padding: 8px 18px;
  border-radius: 99px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition);
}
body.dark .nav-cta { color: #1a1000; }
.nav-cta:hover {
  background: var(--accent2);
  transform: translateY(-1px);
}

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.orb1 {
  width: 600px; height: 600px;
  top: -100px; left: -150px;
  background: radial-gradient(circle, var(--orb1-color) 0%, transparent 70%);
  animation: orbFloat1 12s ease-in-out infinite;
}

.orb2 {
  width: 500px; height: 500px;
  bottom: -100px; right: -100px;
  background: radial-gradient(circle, var(--orb2-color) 0%, transparent 70%);
  animation: orbFloat2 15s ease-in-out infinite;
}

.orb3 {
  width: 400px; height: 400px;
  top: 50%; left: 55%;
  background: radial-gradient(circle, var(--orb3-color) 0%, transparent 70%);
  animation: orbFloat3 10s ease-in-out infinite;
}

@keyframes orbFloat1 {
  0%,100% { transform: translate(0,0) scale(1); }
  50% { transform: translate(40px, 30px) scale(1.05); }
}
@keyframes orbFloat2 {
  0%,100% { transform: translate(0,0); }
  50% { transform: translate(-30px, -40px); }
}
@keyframes orbFloat3 {
  0%,100% { transform: translate(-50%,-50%) scale(1); }
  50% { transform: translate(-50%,-50%) scale(1.1); }
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--grid-line) 1px, transparent 1px),
    linear-gradient(90deg, var(--grid-line) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black, transparent);
}

.hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 720px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
  animation: heroReveal 0.8s cubic-bezier(0.4,0,0.2,1) both;
}

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

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  border: 1px solid var(--border-bright);
  padding: 6px 16px;
  border-radius: 99px;
  background: rgba(0,0,0,0.03);
}
body.dark .hero-eyebrow { background: rgba(255,255,255,0.03); }

.status-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  flex-shrink: 0;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%,100% { opacity: 1; }
  50% { opacity: 0.7; box-shadow: 0 0 16px var(--green); }
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.02em;
  color: var(--text);
}

.hero-title em {
  font-style: italic;
  color: var(--accent);
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 520px;
}

/* ---- PROMPT BOX ---- */
.prompt-wrapper {
  width: 100%;
  max-width: 660px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 14px;
}

.prompt-box {
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: flex-end;
  padding: 14px 14px 14px 20px;
  gap: 10px;
  box-shadow: var(--shadow-lg);
  transition: border-color var(--transition), box-shadow var(--transition);
}

.prompt-box:focus-within {
  border-color: var(--accent);
  box-shadow: var(--shadow-lg), 0 0 0 3px var(--accent-glow);
}

.prompt-input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--text);
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.6;
  resize: none;
  min-height: 28px;
  max-height: 200px;
  overflow-y: auto;
  scrollbar-width: none;
}

.prompt-input::placeholder { color: var(--text-faint); }
.prompt-input::-webkit-scrollbar { display: none; }

.prompt-submit {
  width: 42px; height: 42px;
  border-radius: 10px;
  background: var(--accent);
  border: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}
body.dark .prompt-submit { color: #1a1000; }

.prompt-submit:hover {
  background: var(--accent2);
  transform: scale(1.05);
}
.prompt-submit:active { transform: scale(0.97); }

.prompt-disclaimer {
  font-size: 0.72rem;
  color: var(--text-faint);
  text-align: center;
}

/* ---- SUGGESTED PROMPTS ---- */
.suggested-prompts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;
}

.suggestion-chip {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 99px;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 400;
  padding: 7px 14px;
  cursor: pointer;
  transition: all var(--transition);
  white-space: nowrap;
  box-shadow: var(--shadow);
}

.suggestion-chip:hover {
  border-color: var(--accent);
  color: var(--text);
  transform: translateY(-1px);
}

/* ---- TRUST BAR ---- */
.trust-bar {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 18px 24px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  background: var(--bg2);
}

.trust-bar > span {
  font-size: 0.7rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-faint);
}

.trust-logos {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: center;
}

.trust-logo {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--text-muted);
  opacity: 0.7;
}

.trust-logo-link {
  text-decoration: none;
  transition: opacity var(--transition), color var(--transition);
}
.trust-logo-link:hover {
  opacity: 1;
  color: var(--accent);
}

.trust-sep { color: var(--text-faint); }

/* ---- RESPONSE OVERLAY ---- */
.response-overlay {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(0,0,0,0.4);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: overlayFade 0.3s ease both;
}
body.dark .response-overlay { background: rgba(0,0,0,0.7); }

.response-overlay.active { display: flex; }

@keyframes overlayFade {
  from { opacity: 0; }
  to { opacity: 1; }
}

.response-panel {
  background: var(--surface);
  border: 1px solid var(--border-bright);
  border-radius: var(--radius-xl);
  width: 100%;
  max-width: 680px;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  animation: panelSlide 0.4s cubic-bezier(0.34,1.56,0.64,1) both;
  scrollbar-width: thin;
  scrollbar-color: var(--surface2) transparent;
}

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

.response-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 22px;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  background: var(--surface);
  z-index: 10;
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}

.response-model-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.response-close {
  background: var(--surface2);
  border: 1px solid var(--border);
  border-radius: 8px;
  width: 34px; height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.response-close:hover {
  border-color: var(--border-bright);
  color: var(--text);
}

/* ---- THINKING STATE ---- */
.thinking-state { padding: 32px 28px; }

.thinking-steps {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.thinking-step {
  display: flex;
  align-items: center;
  gap: 12px;
  opacity: 0.3;
  transition: opacity 0.4s ease;
}

.thinking-step.active { opacity: 1; }
.thinking-step.done   { opacity: 0.6; }

.step-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--text-faint);
  flex-shrink: 0;
  transition: background 0.3s ease;
}

.thinking-step.active .step-dot {
  background: var(--accent);
  box-shadow: 0 0 10px var(--accent-glow);
  animation: stepPulse 0.8s ease-in-out infinite;
}
.thinking-step.done .step-dot { background: var(--green); }

@keyframes stepPulse {
  0%,100% { transform: scale(1); }
  50% { transform: scale(1.3); }
}

.thinking-step span {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.thinking-step.active span { color: var(--text); }

/* ---- RESPONSE CONTENT ---- */
.response-content {
  padding: 28px;
  display: flex;
  gap: 16px;
}

.response-avatar {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--accent) 0%, #8a5a00 100%);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  margin-top: 2px;
  color: #fff;
}

.response-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.response-intro {
  font-size: 0.975rem;
  line-height: 1.75;
  color: var(--text);
}

/* ---- COFFEE NUDGE ---- */
.coffee-nudge {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--accent-glow);
  border: 1px solid rgba(184,135,58,0.2);
  border-radius: var(--radius);
  padding: 14px 16px;
  animation: fadeUp 0.4s ease both;
}
body.dark .coffee-nudge { border-color: rgba(201,169,110,0.2); }

.coffee-emoji { font-size: 1.3rem; flex-shrink: 0; margin-top: 1px; }

.coffee-text {
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.coffee-link-inline {
  color: var(--accent);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.coffee-link-inline:hover { color: var(--accent2); }

/* ---- CONTENT PAYLOAD ---- */
.content-payload { animation: fadeUp 0.5s ease both; }

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

/* ---- FAKE PROGRESS BAR ---- */
.fake-render {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.render-label {
  font-size: 0.78rem;
  color: var(--text-faint);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 12px;
  font-weight: 500;
}

.render-steps { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }

.render-step-text {
  font-size: 0.8rem;
  color: var(--text-faint);
  font-family: 'Courier New', monospace;
  animation: renderText 0.3s ease both;
}

@keyframes renderText {
  from { opacity: 0; transform: translateX(-4px); }
  to { opacity: 1; transform: translateX(0); }
}

.progress-track {
  background: var(--border);
  border-radius: 99px;
  height: 4px;
  overflow: hidden;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 99px;
  width: 0%;
  transition: width 0.15s ease;
  box-shadow: 0 0 10px var(--accent-glow);
}

.render-reveal { margin-top: 16px; }

/* ---- WRAP-UP ---- */
.response-wrapup {
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text);
}

/* ---- CLOSING CTA ---- */
.closing-cta {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  padding-top: 8px;
  border-top: 1px solid var(--border);
}

.closing-text {
  font-size: 0.95rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.coffee-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--accent);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 11px 22px;
  border-radius: 99px;
  text-decoration: none;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: 0 4px 20px var(--accent-glow);
}
body.dark .coffee-btn { color: #1a1000; }
.coffee-btn:hover {
  background: var(--accent2);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px var(--accent-glow);
}

/* ---- FEATURES ---- */
.features {
  padding: 100px 24px;
  background: var(--bg2);
  border-top: 1px solid var(--border);
}

.features-inner {
  max-width: 1000px;
  margin: 0 auto;
  text-align: center;
}

.features-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--text);
  margin-bottom: 12px;
}

.features-sub {
  color: var(--text-muted);
  font-size: 1rem;
  margin-bottom: 56px;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 20px;
}

.feature-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 28px 24px;
  text-align: left;
  transition: border-color var(--transition), transform var(--transition), box-shadow var(--transition);
  box-shadow: var(--shadow);
}

.feature-card:hover {
  border-color: var(--accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-lg);
}

.feature-icon { font-size: 1.8rem; margin-bottom: 14px; }

.feature-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 8px;
}

.feature-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.65;
}

/* ---- FOOTER ---- */
.site-footer {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 40px 24px;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--text-muted);
}
.footer-logo .logo-icon { color: var(--accent); }

.footer-links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.85rem;
  transition: color var(--transition);
}
.footer-links a:hover { color: var(--accent); }

.footer-fine {
  font-size: 0.72rem;
  color: var(--text-faint);
  max-width: 500px;
  line-height: 1.6;
}

/* ---- MEDIA PLAYER STYLES ---- */
.media-caption {
  font-size: 0.75rem;
  color: var(--text-faint);
  margin-top: 8px;
  font-style: italic;
}

.media-error {
  font-size: 0.8rem;
  color: var(--text-faint);
  padding: 16px;
  background: var(--bg3);
  border-radius: 8px;
  font-family: 'Courier New', monospace;
}

.media-image-wrap { border-radius: var(--radius); overflow: hidden; }

.media-image {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  border: 1px solid var(--border);
}

.media-video-wrap { border-radius: var(--radius); overflow: hidden; }

.media-video {
  width: 100%;
  border-radius: var(--radius);
  display: block;
  background: #000;
  border: 1px solid var(--border);
  max-height: 360px;
}

.payload-audio-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.audio-header { display: flex; align-items: flex-start; gap: 12px; }
.audio-icon { font-size: 1.6rem; flex-shrink: 0; }

.audio-title {
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text);
  line-height: 1.4;
}

.audio-subtitle {
  font-size: 0.78rem;
  color: var(--text-faint);
  margin-top: 3px;
}

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

.audio-loading-bar {
  background: var(--border);
  border-radius: 99px;
  height: 4px;
  overflow: hidden;
}

.audio-loading-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--accent), var(--accent2));
  border-radius: 99px;
  width: 0%;
  transition: width 0.35s ease;
}

.audio-loading-label {
  font-size: 0.75rem;
  color: var(--text-faint);
  font-family: 'Courier New', monospace;
}

.audio-player-wrap { animation: fadeUp 0.4s ease both; }
.media-audio { width: 100%; border-radius: 8px; accent-color: var(--accent); }

.payload-poem-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px 28px;
}

.poem-title {
  font-family: var(--font-display);
  font-size: 0.85rem;
  color: var(--accent);
  letter-spacing: 0.06em;
  margin-bottom: 14px;
  text-align: center;
}

.payload-poem {
  font-family: var(--font-display);
  font-size: 1.05rem;
  line-height: 2;
  color: var(--text);
  font-style: italic;
}

.payload-text-wrap {
  background: var(--bg3);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 20px;
}

.text-response-title {
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 12px;
}

.payload-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text);
}

/* ---- RESPONSIVE ---- */
@media (max-width: 640px) {
  .header-nav .nav-link { display: none; }
  .trust-logos { gap: 8px; }
  .response-content { padding: 20px; gap: 12px; }
  .response-avatar { display: none; }
}

/* ---- SCREEN READER ONLY ---- */
.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ---- FAQ SECTION ---- */
.faq-section {
  background: var(--bg);
  border-top: 1px solid var(--border);
  padding: 60px 24px;
}

.faq-inner {
  max-width: 720px;
  margin: 0 auto;
}

.faq-section h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--text);
  margin-bottom: 28px;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item {
  border-bottom: 1px solid var(--border);
  padding: 18px 0;
}

.faq-item:first-child { border-top: 1px solid var(--border); }

.faq-item dt {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 6px;
}

.faq-item dd {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.7;
  margin: 0;
}

/* ---- LOGO IMAGE ---- */
.logo-img {
  height: 32px;
  width: auto;
  max-width: 160px;
  display: block;
  object-fit: contain;
}
