/* ===================================================
   ANCETRA — APP SHELL
   Nav, buttons, vault pages, forms, chat UI.
   All colour/type tokens defined in theme.css.
   =================================================== */

/* ============================================================
   NAV
   ============================================================ */

.app-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(250,247,242,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  padding: 0 2rem;
  height: 64px;
  display: flex;
  align-items: center;
}

.app-nav-inner {
  max-width: 1100px;
  margin: 0 auto;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-brand {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--fg);
  text-decoration: none;
  letter-spacing: -0.02em;
  transition: opacity 0.2s;
}

.nav-brand:hover { opacity: 0.7; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--fg-muted);
  text-decoration: none;
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.nav-link:hover {
  color: var(--fg);
  background: rgba(26,26,26,0.04);
}

.nav-link.nav-cta {
  background: var(--fg);
  color: var(--bg);
  font-weight: 600;
  padding: 0.45rem 1rem;
  border-radius: var(--radius-sm);
  transition: opacity 0.2s, transform 0.15s;
}

.nav-link.nav-cta:hover {
  opacity: 0.85;
  background: var(--fg);
  color: var(--bg);
  transform: translateY(-1px);
}

.nav-user {
  font-size: 0.82rem;
  color: var(--fg-muted);
  padding: 0.4rem 0.75rem;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: 50px;
  font-weight: 500;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--fg);
  color: var(--bg);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s, transform 0.15s var(--ease-spring), box-shadow 0.2s;
  white-space: nowrap;
  letter-spacing: -0.01em;
}

.btn-primary:hover {
  opacity: 0.88;
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; box-shadow: none; }
.btn-primary--large { padding: 0.9rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }

/* Amber variant */
.btn-primary--accent {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  color: var(--fg);
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.95rem;
  padding: 0.7rem 1.5rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  border: 1px solid var(--border-mid);
  cursor: pointer;
  transition: border-color 0.2s, background 0.2s, transform 0.15s;
}

.btn-secondary:hover {
  border-color: var(--border-accent);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.btn-secondary--large { padding: 0.9rem 2rem; font-size: 1rem; border-radius: var(--radius-lg); }

.btn-ghost {
  display: inline-flex;
  align-items: center;
  color: var(--fg-muted);
  font-size: 0.88rem;
  font-weight: 500;
  text-decoration: none;
  padding: 0.6rem 1rem;
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.btn-ghost:hover {
  color: var(--fg);
  background: rgba(26,26,26,0.04);
}

/* ============================================================
   APP MAIN
   ============================================================ */

.app-main {
  min-height: calc(100vh - 64px);
  background: var(--bg);
}

/* ============================================================
   PAGE CONTAINER
   ============================================================ */

.page-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 3.5rem 2rem 6rem;
}

.page-container--narrow {
  max-width: 700px;
}

.page-header {
  margin-bottom: 3rem;
}

.page-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
  color: var(--fg);
  margin-bottom: 0.75rem;
}

.page-lede {
  font-size: 1.05rem;
  color: var(--fg-muted);
  line-height: 1.75;
  max-width: 560px;
  margin-bottom: 1.5rem;
}

.back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--fg-muted);
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 1.75rem;
  transition: color 0.2s;
}

.back-link:hover { color: var(--fg); }

.vault-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-top: 1.5rem;
}

/* ============================================================
   VAULT GRID
   ============================================================ */

.vault-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.25rem;
  margin-bottom: 2rem;
}

.vault-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  text-decoration: none;
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.25s var(--ease-smooth), transform 0.25s var(--ease-smooth), border-color 0.25s;
}

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

.vault-card-icon {
  font-size: 2.2rem;
  flex-shrink: 0;
  line-height: 1;
  margin-top: 0.15rem;
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  border-radius: var(--radius-md);
  border: 1px solid rgba(201,168,76,0.15);
}

.vault-card-body {
  flex: 1;
  min-width: 0;
}

.vault-card-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--fg);
  margin-bottom: 0.35rem;
  line-height: 1.3;
}

.vault-card-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  margin-bottom: 0.6rem;
  line-height: 1.55;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.vault-card-date {
  font-size: 0.76rem;
  color: var(--fg-faint);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.vault-card-arrow {
  color: var(--accent);
  font-size: 1.1rem;
  flex-shrink: 0;
  align-self: center;
  opacity: 0.5;
  transition: opacity 0.2s, transform 0.2s;
}

.vault-card:hover .vault-card-arrow {
  opacity: 1;
  transform: translateX(4px);
}

.vault-list-actions {
  margin-top: 0.75rem;
}

/* ============================================================
   EMPTY STATE
   ============================================================ */

.empty-state {
  text-align: center;
  padding: 5rem 2rem;
  color: var(--fg-muted);
}

.empty-state--inline {
  text-align: left;
  padding: 2.5rem;
  background: var(--bg-elevated);
  border: 1px dashed var(--border-mid);
  border-radius: var(--radius-lg);
}

.empty-icon {
  font-size: 3.5rem;
  margin-bottom: 1.25rem;
  display: block;
}

.empty-state h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.6rem;
  color: var(--fg);
  margin-bottom: 0.6rem;
}

.empty-state p {
  margin-bottom: 1.75rem;
  line-height: 1.7;
  max-width: 420px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================================
   FORM STYLES
   ============================================================ */

.app-form {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
}

.form-label {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--fg);
  letter-spacing: 0.01em;
}

.required {
  color: var(--accent);
}

.form-input,
.form-textarea {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 1rem;
  transition: border-color 0.2s, box-shadow 0.2s;
  outline: none;
  resize: vertical;
  line-height: 1.6;
}

.form-input:focus,
.form-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--fg-faint);
}

.form-input-file {
  padding: 0.6rem 0;
  color: var(--fg-muted);
  font-size: 0.9rem;
}

.form-hint {
  font-size: 0.82rem;
  color: var(--fg-muted);
  line-height: 1.55;
}

.form-error {
  background: rgba(200,60,60,0.06);
  border: 1px solid rgba(200,60,60,0.2);
  color: #C43C3C;
  padding: 0.8rem 1rem;
  border-radius: var(--radius-md);
  font-size: 0.9rem;
}

.form-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding-top: 0.5rem;
}

.auth-alt-link {
  margin-top: 1.5rem;
  text-align: center;
  font-size: 0.9rem;
  color: var(--fg-muted);
}

.auth-alt-link a {
  color: var(--accent-deep);
  text-decoration: none;
  font-weight: 600;
}

.auth-alt-link a:hover { text-decoration: underline; }

/* ============================================================
   RECORDER WIDGET
   ============================================================ */

.recorder-widget {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
}

.recorder-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.65rem 1.25rem;
  border-radius: var(--radius-sm);
  border: none;
  cursor: pointer;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9rem;
  transition: opacity 0.2s, transform 0.15s;
}

.recorder-btn--record {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border: 1px solid var(--border-accent);
}

.recorder-btn--record:hover { opacity: 0.85; transform: translateY(-1px); }

.recorder-btn--stop {
  background: rgba(200,60,60,0.08);
  color: #C43C3C;
  border: 1px solid rgba(200,60,60,0.2);
}

.recorder-status {
  margin-top: 0.75rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  min-height: 1.2em;
}

/* Waveform visualizer */
.waveform-canvas {
  width: 100%;
  height: 52px;
  border-radius: var(--radius-sm);
  background: var(--bg-warm);
  margin-top: 1rem;
  display: none;
}

.waveform-canvas.active { display: block; }

/* ============================================================
   RECORDINGS LIST
   ============================================================ */

.recordings-section {
  margin-top: 3rem;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.4rem;
  color: var(--fg);
  margin-bottom: 1.25rem;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--border);
  letter-spacing: -0.01em;
}

.recordings-list {
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
}

.recording-row {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.35rem 1.5rem;
  display: grid;
  grid-template-columns: 40px 1fr;
  grid-template-rows: auto auto;
  column-gap: 1rem;
  row-gap: 0.75rem;
  align-items: start;
  box-shadow: var(--shadow-sm);
  transition: box-shadow 0.2s, border-color 0.2s;
}

.recording-row:hover {
  box-shadow: var(--shadow-md);
  border-color: var(--border-accent);
}

.recording-status {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 700;
  flex-shrink: 0;
}

.recording-status--ready {
  background: rgba(80,170,90,0.12);
  color: #3D8A45;
  border: 1px solid rgba(80,170,90,0.2);
}

.recording-status--pending {
  background: var(--accent-soft);
  color: var(--accent-deep);
  border: 1px solid var(--border-accent);
}

.recording-info { flex: 1; }

.recording-title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.02rem;
  color: var(--fg);
  margin-bottom: 0.25rem;
  line-height: 1.35;
}

.recording-meta {
  font-size: 0.8rem;
  color: var(--fg-muted);
}

.recording-player {
  grid-column: 2;
}

.recording-player audio {
  width: 100%;
  height: 40px;
  border-radius: var(--radius-sm);
  accent-color: var(--accent);
  opacity: 0.9;
}

.recording-transcript {
  grid-column: 2;
}

.transcript-toggle {
  font-size: 0.85rem;
  color: var(--accent-deep);
  font-weight: 600;
  cursor: pointer;
  list-style: none;
  outline: none;
  transition: opacity 0.2s;
}

.transcript-toggle:hover { opacity: 0.75; }
.transcript-toggle::-webkit-details-marker { display: none; }

.transcript-text {
  margin-top: 0.75rem;
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.8;
  white-space: pre-wrap;
  background: var(--bg-warm);
  border-left: 3px solid var(--accent);
  padding: 1rem 1.25rem;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
}

/* ============================================================
   VAULT CTA CARD
   ============================================================ */

.vault-cta-row {
  margin-top: 3rem;
}

.vault-cta-card {
  background: linear-gradient(135deg, #FDF8EE 0%, #FAF2E0 100%);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-xl);
  padding: 2.25rem 2rem;
  display: flex;
  align-items: center;
  gap: 1.75rem;
  flex-wrap: wrap;
  box-shadow: var(--shadow-accent);
}

.vault-cta-icon {
  font-size: 2.8rem;
  flex-shrink: 0;
  width: 60px;
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vault-cta-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.25rem;
  color: var(--fg);
  margin-bottom: 0.3rem;
  line-height: 1.3;
}

.vault-cta-card p {
  font-size: 0.9rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

.vault-cta-card .btn-primary {
  margin-left: auto;
  white-space: nowrap;
}

/* ============================================================
   CONVERSATION LAYOUT
   ============================================================ */

.converse-layout {
  display: grid;
  grid-template-columns: 300px 1fr;
  height: calc(100vh - 64px);
}

.converse-sidebar {
  border-right: 1px solid var(--border);
  padding: 2rem 1.75rem;
  background: var(--bg-elevated);
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.converse-vault-info {
  text-align: center;
}

.converse-vault-icon {
  font-size: 3rem;
  margin-bottom: 0.85rem;
  display: block;
  width: 72px;
  height: 72px;
  margin-left: auto;
  margin-right: auto;
  background: var(--accent-soft);
  border: 1px solid var(--border-accent);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
}

.converse-vault-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
  margin-top: 0.85rem;
  line-height: 1.25;
}

.converse-vault-desc {
  font-size: 0.88rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.converse-hint {
  background: var(--bg-warm);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 1rem 1.1rem;
}

.converse-hint-text {
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.65;
}

.converse-no-transcripts {
  background: rgba(26,26,26,0.02);
  border: 1px dashed var(--border-mid);
  border-radius: var(--radius-md);
  padding: 1rem;
  font-size: 0.85rem;
  color: var(--fg-muted);
  line-height: 1.6;
}

/* ============================================================
   CHAT AREA
   ============================================================ */

.converse-chat {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  background: var(--bg);
}

.chat-messages {
  flex: 1;
  overflow-y: auto;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  scroll-behavior: smooth;
}

.chat-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  flex: 1;
  text-align: center;
  color: var(--fg-muted);
  padding: 4rem 2rem;
  gap: 1.25rem;
}

.chat-empty-icon {
  font-size: 3.5rem;
  opacity: 0.45;
  display: block;
}

.chat-empty p {
  font-size: 1rem;
  color: var(--fg-muted);
  max-width: 300px;
  line-height: 1.65;
}

.chat-starter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  justify-content: center;
  max-width: 520px;
}

.starter-pill {
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: 50px;
  padding: 0.5rem 1.1rem;
  color: var(--fg-muted);
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  font-family: var(--font-body);
  transition: border-color 0.2s, color 0.2s, background 0.2s, transform 0.15s;
}

.starter-pill:hover {
  border-color: var(--border-accent);
  color: var(--fg);
  background: var(--accent-soft);
  transform: translateY(-1px);
}

.chat-message {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
  max-width: 70%;
}

.chat-message--user {
  align-self: flex-end;
  align-items: flex-end;
}

.chat-message--assistant {
  align-self: flex-start;
  align-items: flex-start;
}

.chat-bubble {
  padding: 0.9rem 1.2rem;
  border-radius: 18px;
  font-size: 0.95rem;
  line-height: 1.7;
}

.chat-message--user .chat-bubble {
  background: var(--fg);
  color: var(--bg);
  border-bottom-right-radius: 5px;
  box-shadow: var(--shadow-sm);
}

.chat-message--assistant .chat-bubble {
  background: var(--bg-card);
  color: var(--fg);
  border: 1px solid var(--border);
  border-bottom-left-radius: 5px;
  box-shadow: var(--shadow-sm);
}

/* Typing indicator */
.chat-bubble--typing {
  display: flex;
  gap: 5px;
  align-items: center;
  padding: 1rem 1.2rem;
}

.chat-bubble--typing span {
  width: 7px;
  height: 7px;
  background: var(--fg-muted);
  border-radius: 50%;
  animation: typingDot 1.2s ease-in-out infinite;
}

.chat-bubble--typing span:nth-child(2) { animation-delay: 0.2s; }
.chat-bubble--typing span:nth-child(3) { animation-delay: 0.4s; }

@keyframes typingDot {
  0%, 80%, 100% { opacity: 0.3; transform: scale(0.8); }
  40% { opacity: 1; transform: scale(1); }
}

.chat-time {
  font-size: 0.7rem;
  color: var(--fg-faint);
  padding: 0 0.3rem;
}

/* ============================================================
   CHAT INPUT
   ============================================================ */

.chat-input-row {
  padding: 1rem 1.5rem 1.5rem;
  border-top: 1px solid var(--border);
  background: var(--bg-elevated);
  display: flex;
  align-items: flex-end;
  gap: 0.75rem;
}

.chat-textarea {
  flex: 1;
  background: var(--bg-card);
  border: 1px solid var(--border-mid);
  border-radius: var(--radius-md);
  padding: 0.8rem 1rem;
  color: var(--fg);
  font-family: var(--font-body);
  font-size: 0.95rem;
  resize: none;
  outline: none;
  line-height: 1.55;
  min-height: 50px;
  max-height: 160px;
  overflow-y: auto;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.chat-textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}

.chat-textarea::placeholder {
  color: var(--fg-faint);
}

.chat-textarea:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.chat-send-btn {
  width: 46px;
  height: 46px;
  border-radius: var(--radius-md);
  background: var(--fg);
  border: none;
  color: var(--bg);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: opacity 0.2s, transform 0.15s;
}

.chat-send-btn:hover { opacity: 0.85; transform: translateY(-1px); }
.chat-send-btn:active { transform: translateY(0); }
.chat-send-btn:disabled { opacity: 0.35; cursor: not-allowed; transform: none; }

/* ============================================================
   AUTH PAGES
   ============================================================ */

.auth-card {
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 2.5rem 2.5rem;
  box-shadow: var(--shadow-md);
  max-width: 440px;
  margin: 3rem auto;
}

.auth-card-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.75rem;
  color: var(--fg);
  margin-bottom: 0.5rem;
  letter-spacing: -0.015em;
}

.auth-card-subtitle {
  font-size: 0.9rem;
  color: var(--fg-muted);
  margin-bottom: 2rem;
  line-height: 1.6;
}

/* ============================================================
   RESPONSIVE — APP
   ============================================================ */

@media (max-width: 768px) {
  .converse-layout {
    grid-template-columns: 1fr;
    grid-template-rows: auto 1fr;
    height: auto;
    min-height: calc(100vh - 64px);
  }

  .converse-sidebar {
    border-right: none;
    border-bottom: 1px solid var(--border);
    padding: 1.25rem 1.5rem;
    gap: 1rem;
  }

  .converse-vault-info {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    text-align: left;
  }

  .converse-vault-icon {
    margin: 0;
    flex-shrink: 0;
  }

  .converse-chat {
    height: 70vh;
  }

  .chat-message {
    max-width: 88%;
  }

  .vault-cta-card {
    flex-direction: column;
    align-items: flex-start;
  }

  .vault-cta-card .btn-primary {
    margin-left: 0;
  }

  .recording-row {
    grid-template-columns: 36px 1fr;
  }

  .recording-player,
  .recording-transcript {
    grid-column: 2;
  }

  .page-container {
    padding: 2.5rem 1.5rem 4rem;
  }
}

@media (max-width: 480px) {
  .vault-grid {
    grid-template-columns: 1fr;
  }

  .nav-links .nav-link:not(.nav-cta) {
    display: none;
  }

  .nav-user { display: none; }

  .app-nav { padding: 0 1.25rem; }

  .recording-row {
    grid-template-columns: 1fr;
  }

  .recording-status {
    display: none;
  }

  .recording-player,
  .recording-transcript {
    grid-column: 1;
  }

  .auth-card {
    padding: 2rem 1.5rem;
    border-radius: var(--radius-lg);
  }
}
