/* Handler — styles
   Near-black base, cool blue-teal accent. System fonts. Mobile-first, single column. */

:root {
  --bg: #0b0f12;
  --bg-raised: #11171c;
  --bg-card: #141c22;
  --border: #1f2a32;
  --text: #e8edf0;
  --text-dim: #9fb0ba;
  --accent: #2dd4bf;
  --accent-deep: #14b8a6;
  --accent-ink: #04211d;
  --max: 42rem;
}

/* Light theme — toggled by the header lightbulb (js/site.js), persisted in
   localStorage. Dark is the default (no data-theme attribute). */
:root[data-theme="light"] {
  --bg: #f6f8f9;
  --bg-raised: #ffffff;
  --bg-card: #ffffff;
  --border: #dce4e9;
  --text: #16232c;
  --text-dim: #51636f;
  --accent: #0d9488;
  --accent-deep: #0b7a70;
  --accent-ink: #ffffff;
}

* { box-sizing: border-box; }

[hidden] { display: none !important; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  font-size: 1.0625rem;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }

.wrap {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* ---------- Header ----------
   Transparent while at the top of the page; frosted white (5% opacity)
   glass once the user scrolls (.scrolled is toggled in js/site.js). */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
.site-header.scrolled {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom-color: rgba(255, 255, 255, 0.08);
}
:root[data-theme="light"] .site-header.scrolled {
  background: rgba(255, 255, 255, 0.75);
  border-bottom-color: rgba(0, 0, 0, 0.08);
}

.theme-toggle {
  background: none;
  border: none;
  color: var(--text-dim);
  cursor: pointer;
  padding: 0.35rem;
  display: flex;
  align-items: center;
}
.theme-toggle svg { width: 1.2rem; height: 1.2rem; }
.theme-toggle:hover { color: var(--accent); }
:root[data-theme="light"] .theme-toggle { color: var(--accent); }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.75rem 1.25rem;
  max-width: 64rem;
  margin: 0 auto;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: -0.02em;
  color: var(--text);
}
.logo:hover { text-decoration: none; }
.logo .dot { color: var(--accent); }

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--text);
  font-size: 1.1rem;
  padding: 0.35rem 0.6rem;
  cursor: pointer;
}

.site-nav { display: flex; align-items: center; gap: 1.25rem; }
.site-nav a {
  color: var(--text-dim);
  font-size: 0.95rem;
  font-weight: 500;
}
.site-nav a:hover { color: var(--text); text-decoration: none; }
.site-nav a.nav-cta {
  color: var(--accent-ink);
  background: var(--accent);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-weight: 700;
}
.site-nav a.nav-cta:hover { background: var(--accent-deep); }
.site-nav a[aria-current="page"] { color: var(--text); }

@media (max-width: 720px) {
  .nav-toggle { display: block; margin-left: auto; }
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--bg-raised);
    border-bottom: 1px solid var(--border);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: 0.9rem 1.25rem; border-top: 1px solid var(--border); }
  .site-nav a.nav-cta { border-radius: 0; text-align: center; }
}

/* ---------- Hero ----------
   Full-bleed AC-unit illustration under a theme-matched gradient. The image
   layer is fixed-attachment for a parallax effect (disabled on small screens,
   where fixed backgrounds are janky). Negative top margin pulls the section
   up behind the transparent sticky header. */
.hero {
  position: relative;
  margin-top: -3.8rem;
  padding: 9.5rem 0 4rem;
  background:
    radial-gradient(ellipse at 70% 10%, rgba(45, 212, 191, 0.12), transparent 55%),
    linear-gradient(180deg, rgba(11, 15, 18, 0.78) 0%, rgba(11, 15, 18, 0.88) 55%, var(--bg) 96%),
    url("../images/hero-unit.jpg") center 25% / cover no-repeat;
  background-attachment: scroll, scroll, fixed;
}
.hero .trust-strip { border-top-color: rgba(255, 255, 255, 0.12); }
:root[data-theme="light"] .hero {
  background:
    radial-gradient(ellipse at 70% 10%, rgba(13, 148, 136, 0.1), transparent 55%),
    linear-gradient(180deg, rgba(246, 248, 249, 0.72) 0%, rgba(246, 248, 249, 0.88) 55%, var(--bg) 96%),
    url("../images/hero-unit.jpg") center 25% / cover no-repeat;
  background-attachment: scroll, scroll, fixed;
}
:root[data-theme="light"] .hero .trust-strip { border-top-color: rgba(0, 0, 0, 0.12); }
@media (max-width: 720px) {
  .hero, :root[data-theme="light"] .hero { background-attachment: scroll; }
}

.hero-contact {
  margin: -0.9rem 0 1.9rem;
  font-size: 0.95rem;
}
.hero-contact a { font-weight: 600; }

h1 {
  font-size: clamp(1.9rem, 5.5vw, 2.75rem);
  line-height: 1.15;
  letter-spacing: -0.025em;
  margin: 0 0 1rem;
}

.hero .sub {
  color: var(--text-dim);
  font-size: 1.125rem;
  margin: 0 0 1.75rem;
}

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-bottom: 2rem; }

.btn {
  display: inline-block;
  padding: 0.8rem 1.4rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 1rem;
}
.btn-primary { background: var(--accent); color: var(--accent-ink); }
.btn-primary:hover { background: var(--accent-deep); text-decoration: none; }
.btn-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: var(--bg-raised);
}
.btn-secondary:hover { border-color: var(--accent); text-decoration: none; }

.trust-strip {
  color: var(--text-dim);
  font-size: 0.9rem;
  border-top: 1px solid var(--border);
  padding-top: 1.25rem;
}

/* ---------- Sections ---------- */
section, .page-body { padding: 2.5rem 0; }

h2 {
  font-size: clamp(1.4rem, 4vw, 1.75rem);
  line-height: 1.25;
  letter-spacing: -0.02em;
  margin: 0 0 1rem;
}

h3 { font-size: 1.1rem; margin: 1.75rem 0 0.4rem; }
h3 + p { margin-top: 0; }

p { color: var(--text-dim); }
p strong, li strong { color: var(--text); }

.section-alt {
  background: var(--bg-raised);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

/* ---------- Pricing ---------- */
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  margin: 1.5rem 0;
}
.price {
  font-size: 2.5rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--text);
}
.price small { font-size: 1.1rem; font-weight: 500; color: var(--text-dim); }
.price-note { font-size: 0.95rem; }
.guarantee {
  border-left: 3px solid var(--accent);
  padding-left: 1rem;
  margin: 1.25rem 0;
}
.fine { font-size: 0.9rem; font-style: italic; }

/* ---------- FAQ ---------- */
.faq details {
  border-bottom: 1px solid var(--border);
  padding: 0.25rem 0;
}
.faq summary {
  cursor: pointer;
  font-weight: 600;
  color: var(--text);
  padding: 0.85rem 0;
  list-style: none;
  position: relative;
  padding-right: 1.75rem;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  position: absolute;
  right: 0.25rem;
  color: var(--accent);
  font-weight: 700;
}
.faq details[open] summary::after { content: "–"; }
.faq details p { margin: 0 0 1rem; }

/* ---------- Steps (How it works) ---------- */
.steps { counter-reset: step; list-style: none; padding: 0; margin: 2rem 0; }
.steps li {
  counter-increment: step;
  position: relative;
  padding: 0 0 1.75rem 3.25rem;
}
.steps li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0.1rem;
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  background: var(--bg-card);
  border: 1px solid var(--accent);
  color: var(--accent);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.steps li p { margin: 0.15rem 0 0; }
.steps li strong { color: var(--text); }

.callout {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: 10px;
  padding: 1.25rem 1.5rem;
  margin: 2rem 0;
}
.callout p { margin: 0; }

/* ---------- Form ---------- */
.demo-form {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 1.75rem;
  margin: 2rem 0;
}
.demo-form h3 { margin-top: 0; }
.demo-form label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin: 1rem 0 0.35rem;
}
.demo-form input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}
.demo-form input:focus {
  outline: none;
  border-color: var(--accent);
}
.demo-form button {
  margin-top: 1.25rem;
  width: 100%;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.form-success { display: none; }
.form-success p { color: var(--text); font-weight: 500; }

/* ---------- Closing CTA ---------- */
.closing { text-align: center; padding: 3.5rem 0; }
.closing .demo-number {
  display: block;
  font-size: clamp(1.6rem, 6vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  color: var(--accent);
  margin: 1.25rem 0 0.25rem;
}
.closing .demo-label { color: var(--text-dim); font-size: 0.95rem; }

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 2.5rem 0 6rem; /* clearance for sticky bar */
  font-size: 0.9rem;
}
.site-footer .tagline { color: var(--text); font-weight: 600; margin-bottom: 0.75rem; }
.site-footer p { margin: 0.5rem 0; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 1rem; margin: 1rem 0; }
.footer-nav a { color: var(--text-dim); }

/* ---------- Sticky CTA bar ---------- */
.sticky-cta {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  padding: 0.75rem 1rem calc(0.75rem + env(safe-area-inset-bottom));
  background: rgba(17, 23, 28, 0.96);
  backdrop-filter: blur(8px);
  border-top: 1px solid var(--border);
}
:root[data-theme="light"] .sticky-cta { background: rgba(255, 255, 255, 0.94); }
.sticky-cta .btn { padding: 0.65rem 1.2rem; font-size: 0.95rem; white-space: nowrap; }
.sticky-cta .sticky-note {
  color: var(--text-dim);
  font-size: 0.85rem;
}
@media (max-width: 480px) {
  .sticky-cta .sticky-note { display: none; }
  .sticky-cta .btn { flex: 1; text-align: center; }
}

/* ---------- Chatbot widget ---------- */
.hb-bubble {
  position: fixed;
  right: 1rem;
  bottom: calc(4.75rem + env(safe-area-inset-bottom));
  z-index: 70;
  width: 3.5rem;
  height: 3.5rem;
  border-radius: 50%;
  border: none;
  background: var(--accent);
  color: var(--accent-ink);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 24px rgba(0, 0, 0, 0.45);
}
.hb-bubble:hover { background: var(--accent-deep); }
.hb-bubble svg { width: 1.6rem; height: 1.6rem; }

.hb-panel {
  position: fixed;
  right: 1rem;
  bottom: calc(9rem + env(safe-area-inset-bottom));
  z-index: 70;
  width: min(45rem, calc(100vw - 2rem));
  height: min(90rem, calc(100vh - 11rem));
  max-height: min(90rem, calc(100vh - 11rem));
  display: flex;
  flex-direction: column;
  background: var(--bg-raised);
  border: 1px solid var(--border);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.55);
  overflow: hidden;
}
.hb-panel[hidden] { display: none; }

.hb-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 0.85rem 1rem;
  border-bottom: 1px solid var(--border);
  background: var(--bg-card);
}
.hb-head strong { font-size: 1rem; }
.hb-sub { display: block; color: var(--text-dim); font-size: 0.78rem; }
.hb-close {
  background: none;
  border: none;
  color: var(--text-dim);
  font-size: 1.4rem;
  line-height: 1;
  cursor: pointer;
  padding: 0.25rem;
}
.hb-close:hover { color: var(--text); }

.hb-tabs {
  display: flex;
  background: var(--bg-card);
  border-bottom: 1px solid var(--border);
}
.hb-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 0.6rem 0.5rem;
  cursor: pointer;
}
.hb-tab:hover { color: var(--text); }
.hb-tab.active { color: var(--accent); border-bottom-color: var(--accent); }

.hb-log {
  flex: 1;
  overflow-y: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  min-height: 8rem;
}
.hb-msg {
  max-width: 85%;
  padding: 0.55rem 0.8rem;
  border-radius: 12px;
  font-size: 0.92rem;
  line-height: 1.45;
  white-space: pre-wrap;
  overflow-wrap: break-word;
}
.hb-msg.bot { background: var(--bg-card); border: 1px solid var(--border); align-self: flex-start; color: var(--text); }
.hb-msg.user { background: var(--accent); color: var(--accent-ink); align-self: flex-end; }
.hb-msg.note { background: none; color: var(--text-dim); font-size: 0.8rem; align-self: center; text-align: center; padding: 0.1rem; }
.hb-msg.typing { color: var(--text-dim); font-style: italic; }

.hb-controls {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem;
  border-top: 1px solid var(--border);
  background: var(--bg-card);
}
.hb-mic {
  flex: none;
  width: 2.6rem;
  height: 2.6rem;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--accent);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hb-mic svg { width: 1.15rem; height: 1.15rem; }
.hb-mic:hover { border-color: var(--accent); }
.hb-mic.live {
  background: #e5484d;
  border-color: #e5484d;
  color: #fff;
  animation: hb-pulse 1.4s ease-in-out infinite;
}
.hb-mic:disabled { opacity: 0.4; cursor: not-allowed; }
@keyframes hb-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(229, 72, 77, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(229, 72, 77, 0); }
}

.hb-form { display: flex; flex: 1; gap: 0.5rem; }
.hb-form input {
  flex: 1;
  min-width: 0;
  padding: 0.6rem 0.8rem;
  border-radius: 999px;
  border: 1px solid var(--border);
  background: var(--bg);
  color: var(--text);
  font-size: 0.92rem;
  font-family: inherit;
}
.hb-form input:focus { outline: none; border-color: var(--accent); }
.hb-form button {
  flex: none;
  border: none;
  border-radius: 999px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 0.9rem;
  padding: 0 1rem;
  cursor: pointer;
  font-family: inherit;
}
.hb-form button:hover { background: var(--accent-deep); }
.hb-form button:disabled, .hb-form input:disabled { opacity: 0.4; cursor: not-allowed; }

/* ---------- Admin page ---------- */
.admin-note {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-left: 3px solid #e5a53d;
  border-radius: 10px;
  padding: 1rem 1.25rem;
  font-size: 0.92rem;
  margin: 1.5rem 0;
}
.admin-status { font-size: 0.95rem; }
.admin-status .ok { color: var(--accent); font-weight: 700; }
.admin-status .missing { color: #e5a53d; font-weight: 700; }

/* ---------- Get Started header button (far right, after the lightbulb) ---------- */
.nav-get-started {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 0.45rem 0.9rem;
  border-radius: 8px;
  font-weight: 700;
  font-size: 0.95rem;
  white-space: nowrap;
}
.nav-get-started:hover { background: var(--accent); color: var(--accent-ink); text-decoration: none; }

/* ---------- Hero lead form ---------- */
.hero-lead {
  display: flex;
  gap: 0.5rem;
  max-width: 27rem;
  margin: -0.9rem 0 1.9rem;
}
.hero-lead input {
  flex: 1;
  min-width: 0;
  padding: 0.65rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-raised);
  color: var(--text);
  font-size: 0.95rem;
  font-family: inherit;
}
.hero-lead input:focus { outline: none; border-color: var(--accent); }
.hero-lead button {
  border: none;
  border-radius: 8px;
  background: var(--accent);
  color: var(--accent-ink);
  font-weight: 700;
  font-size: 0.92rem;
  padding: 0 1.1rem;
  cursor: pointer;
  font-family: inherit;
  white-space: nowrap;
}
.hero-lead button:hover { background: var(--accent-deep); }
.hero-lead-done { margin: -0.9rem 0 1.9rem; color: var(--accent); font-weight: 600; }

/* ---------- Auth (login/signup) page ---------- */
.auth-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: calc(100vh - 3.8rem);
}
.auth-left {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2.5rem 1.5rem 4rem;
}
.auth-card { width: 100%; max-width: 24rem; }
.auth-card h1 { font-size: 1.65rem; margin-bottom: 0.4rem; }
.auth-sub { margin-top: 0; }
.auth-tabs { display: flex; border-bottom: 1px solid var(--border); margin: 1.25rem 0 1rem; }
.auth-tab {
  flex: 1;
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  color: var(--text-dim);
  font-family: inherit;
  font-size: 0.95rem;
  font-weight: 600;
  padding: 0.6rem;
  cursor: pointer;
}
.auth-tab.active { color: var(--accent); border-bottom-color: var(--accent); }
.auth-card label { display: block; font-size: 0.9rem; font-weight: 600; margin: 1rem 0 0.35rem; }
.auth-card input {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: var(--bg-card);
  color: var(--text);
  font-size: 1rem;
  font-family: inherit;
}
.auth-card input:focus { outline: none; border-color: var(--accent); }
.auth-card .btn { width: 100%; margin-top: 1.25rem; border: none; cursor: pointer; font-family: inherit; }
.auth-msg { font-size: 0.9rem; min-height: 1.3rem; margin: 0.75rem 0 0; }
.auth-msg.err { color: #e5484d; }
.auth-msg.ok { color: var(--accent); }

.auth-right {
  background: var(--bg-raised);
  border-left: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 3rem 2rem;
}
.testimonial-box { max-width: 26rem; }
.testimonial { transition: opacity 0.4s ease; }
.testimonial.fading { opacity: 0; }
.testimonial blockquote {
  margin: 0 0 1rem;
  font-size: 1.35rem;
  line-height: 1.5;
  letter-spacing: -0.01em;
  color: var(--text);
}
.testimonial blockquote::before { content: "\201C"; color: var(--accent); }
.testimonial blockquote::after { content: "\201D"; color: var(--accent); }
.testimonial cite { color: var(--text-dim); font-style: normal; font-size: 0.95rem; }
.testimonial-dots { display: flex; gap: 0.4rem; margin-top: 1.5rem; }
.testimonial-dots span {
  width: 0.5rem; height: 0.5rem; border-radius: 50%;
  background: var(--border); cursor: pointer;
}
.testimonial-dots span.on { background: var(--accent); }
@media (max-width: 860px) {
  .auth-wrap { grid-template-columns: 1fr; }
  .auth-right { display: none; }
}

/* ---------- Dashboard ---------- */
.dash-head { display: flex; align-items: center; justify-content: space-between; gap: 1rem; flex-wrap: wrap; }
.dash-head h1 { margin-bottom: 0.25rem; }
.dash-actions { display: flex; gap: 0.6rem; align-items: center; flex-wrap: wrap; }
.dash-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(9rem, 1fr));
  gap: 1rem;
  margin: 1.5rem 0;
}
.stat-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1rem 1.25rem;
}
.stat-card .stat-n { font-size: 1.8rem; font-weight: 800; letter-spacing: -0.02em; color: var(--text); }
.stat-card .stat-l { font-size: 0.85rem; color: var(--text-dim); }

.dash-table { width: 100%; border-collapse: collapse; }
.dash-table th, .dash-table td {
  text-align: left;
  padding: 0.6rem 0.75rem;
  border-bottom: 1px solid var(--border);
  font-size: 0.92rem;
}
.dash-table th { color: var(--text-dim); font-weight: 600; font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; }
.dash-table tbody tr { cursor: pointer; }
.dash-table tbody tr:hover { background: var(--bg-card); }
.dash-table .empty td { color: var(--text-dim); cursor: default; }
.badge {
  display: inline-block;
  padding: 0.15rem 0.6rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
}
.badge.ok { background: rgba(45, 212, 191, 0.15); color: var(--accent); }
.badge.no { background: rgba(229, 72, 77, 0.15); color: #e5484d; }

.detail-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 1.5rem;
  margin: 1.5rem 0;
}
.detail-card h3 { margin-top: 0; }
.detail-meta { display: grid; grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr)); gap: 0.75rem; margin-bottom: 1rem; }
.detail-meta div { font-size: 0.95rem; }
.detail-meta .k { color: var(--text-dim); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.04em; display: block; }
.transcript {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 1rem;
  max-height: 24rem;
  overflow-y: auto;
  white-space: pre-wrap;
  font-size: 0.9rem;
  color: var(--text-dim);
}

/* ---------- Admin lists ---------- */
.admin-gate { max-width: 24rem; }
