/* ── TA6 public demo — page-specific styling ────────────────────────────────
   Additive only: filler.css/filler.js are untouched and drive everything
   else on this page (canvas, fields, voice panel, action bar, toasts). */

/* ── Disclaimer banner ───────────────────────────────────────────────────── */
#ta6-banner {
  width: 100%;
  flex-shrink: 0;
  background: #fff7e6;
  border-bottom: 1px solid #f0d999;
  color: #7a5c00;
  font-size: 12.5px;
  line-height: 1.5;
  padding: 10px 24px;
  text-align: center;
}

/* ── Gate modal ───────────────────────────────────────────────────────────── */
#ta6-gate-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 9500;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

#ta6-gate-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.55);
  backdrop-filter: blur(3px);
}

#ta6-gate-card {
  position: relative;
  background: #fff;
  border-radius: 16px;
  padding: 32px 30px;
  max-width: 440px;
  width: 100%;
  box-shadow: 0 24px 64px rgba(0,0,0,0.22);
  text-align: center;
}

.ta6-gate-icon { font-size: 34px; margin-bottom: 8px; }

#ta6-gate-card h3 {
  font-size: 20px;
  font-weight: 700;
  color: #1a1a2e;
  margin: 0 0 4px;
}

.ta6-gate-sub {
  font-size: 13px;
  color: #64748b;
  margin: 0 0 18px;
}

#ta6-gate-paths {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 18px;
  text-align: left;
}

.ta6-gate-path {
  display: grid;
  grid-template-columns: auto 1fr;
  column-gap: 10px;
  align-items: start;
  border: 1.5px solid #e2e8f0;
  border-radius: 10px;
  padding: 10px 12px;
  cursor: pointer;
  transition: border-color 0.15s, background 0.15s;
}

.ta6-gate-path:has(input:checked) {
  border-color: #4a90e2;
  background: #f0f6fe;
}

.ta6-gate-path input[type="radio"] {
  grid-row: 1 / 3;
  margin-top: 3px;
}

.ta6-gate-path-title {
  font-size: 14px;
  font-weight: 700;
  color: #1a1a2e;
}

.ta6-gate-path-desc {
  font-size: 12px;
  color: #64748b;
}

#ta6-gate-form { text-align: left; }

#ta6-gate-email-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  color: #475569;
  margin-bottom: 6px;
}

#ta6-gate-email {
  width: 100%;
  box-sizing: border-box;
  padding: 11px 12px;
  border: 1.5px solid #cbd5e1;
  border-radius: 8px;
  font-size: 14px;
  font-family: inherit;
  margin-bottom: 6px;
}

#ta6-gate-email:focus {
  outline: none;
  border-color: #4a90e2;
  box-shadow: 0 0 0 2px rgba(74,144,226,0.2);
}

#ta6-gate-error {
  display: none;
  font-size: 12.5px;
  color: #dc2626;
  margin-bottom: 8px;
}

#ta6-gate-error.visible { display: block; }

#ta6-gate-submit-btn {
  width: 100%;
  background: #1a1a2e;
  color: #fff;
  font-weight: 700;
  font-size: 15px;
  border: none;
  border-radius: 10px;
  padding: 13px 20px;
  margin-top: 6px;
  cursor: pointer;
  transition: background 0.15s;
}

#ta6-gate-submit-btn:hover:not(:disabled) { background: #2d2d4e; }
#ta6-gate-submit-btn:disabled { opacity: 0.7; cursor: wait; }

/* ── Print footer (injected by filler.js only when MS_PRINT_FOOTER_HTML is set) ── */
.print-disclaimer {
  margin-top: 24px;
  padding-top: 12px;
  border-top: 1px solid #ccc;
  font-size: 10px;
  color: #666;
  line-height: 1.5;
}
