/* Local Fonts (Zero Tracking) */
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 400; font-display: swap; src: url('../../fonts/inter-regular.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 500; font-display: swap; src: url('../../fonts/inter-500.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 600; font-display: swap; src: url('../../fonts/inter-600.woff2') format('woff2'); }
@font-face { font-family: 'Inter'; font-style: normal; font-weight: 700; font-display: swap; src: url('../../fonts/inter-700.woff2') format('woff2'); }

@font-face { font-family: 'Lora'; font-style: normal; font-weight: 400; font-display: swap; src: url('../../fonts/lora-regular.woff2') format('woff2'); }
@font-face { font-family: 'Lora'; font-style: normal; font-weight: 500; font-display: swap; src: url('../../fonts/lora-500.woff2') format('woff2'); }
@font-face { font-family: 'Lora'; font-style: normal; font-weight: 600; font-display: swap; src: url('../../fonts/lora-600.woff2') format('woff2'); }

/* Theme Variables */
:root {
  --font-display: 'Lora', Georgia, serif;
  --font-body: 'Inter', system-ui, sans-serif;
  --font-mono: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
  
  --color-bg: #e4e9e6; 
  --color-surface: #ffffff;
  --color-border: rgba(22, 163, 74, 0.25);
  --color-text: #14532d;
  --color-accent: #16a34a; 
  --radius: 0.625rem;
  --tr: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-card: 0 1px 3px rgba(22,163,74,0.06), 0 4px 16px rgba(22,163,74,0.04);
  --shadow-hover: 0 4px 20px rgba(22,163,74,0.10);
  --color-redact: #111827;
  
  --toast-bg: #14532d;
  --toast-text: #ffffff;
}

[data-theme="dark"] {
  --color-bg: #0f1a14;
  --color-surface: #16241b;
  --color-border: rgba(74, 222, 128, 0.12);
  --color-text: #bbf7d0;
  --color-accent: #4ade80; 
  --shadow-card: 0 1px 3px rgba(0,0,0,0.30), 0 4px 16px rgba(0,0,0,0.25);
  --shadow-hover: 0 4px 20px rgba(0,0,0,0.35);
  --color-redact: #000000;
  
  --toast-bg: #bbf7d0;
  --toast-text: #0f1a14;
}

/* Custom Components & Utilities */
.toolbar-btn { width: 36px; height: 36px; border-radius: 0.5rem; border: 1px solid var(--color-border); background: var(--color-surface); cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background var(--tr), border-color var(--tr); color: var(--color-text); flex-shrink: 0; }
.toolbar-btn:hover { border-color: var(--color-accent); background: rgba(22, 163, 74, 0.06); }
[data-theme="dark"] .toolbar-btn:hover { background: rgba(74, 222, 128, 0.08); }

.select-wrap { position: relative; display: inline-flex; align-items: center; }
.toolbar-select { height: 36px; border-radius: 0.5rem; border: 1px solid var(--color-border); background: var(--color-surface); color: var(--color-text); padding: 0 2.1rem 0 2.2rem; font-size: 0.8125rem; font-weight: 500; font-family: var(--font-body); appearance: none; cursor: pointer; transition: border-color var(--tr), background var(--tr); width: 130px; }
.toolbar-select:hover, .toolbar-select:focus { border-color: var(--color-accent); outline: none; }
.sel-icon-l, .sel-icon-r { position: absolute; pointer-events: none; opacity: 0.65; color: var(--color-text); }
.sel-icon-l { left: 0.65rem; } .sel-icon-r { right: 0.65rem; }

.btn-primary { background: #14532d; color: #fff; border-radius: var(--radius); font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; padding: 0.75rem 2rem; border: none; cursor: pointer; transition: background var(--tr), transform var(--tr), box-shadow var(--tr); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-primary:hover:not(:disabled) { background: #064e3b; box-shadow: 0 4px 16px rgba(20, 83, 45, 0.25); }
.btn-primary:active:not(:disabled) { transform: scale(0.98); }
.btn-primary:disabled { opacity: 0.45; cursor: not-allowed; background: var(--color-text); }
[data-theme="dark"] .btn-primary:hover:not(:disabled) { background: #15803d; }

.btn-secondary { background: transparent; color: var(--color-text); border: 1px solid var(--color-border); border-radius: var(--radius); font-family: var(--font-body); font-weight: 500; font-size: 0.875rem; padding: 0.625rem 1.25rem; cursor: pointer; transition: background var(--tr), border-color var(--tr); display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.btn-secondary:hover:not(:disabled) { background: rgba(22, 163, 74, 0.05); border-color: var(--color-accent); }
.btn-secondary:disabled { opacity: 0.45; cursor: not-allowed; }
[data-theme="dark"] .btn-secondary:hover:not(:disabled) { background: rgba(255,255,255,0.05); }

.btn-confirm { background: #d97706; color: #fff; border: none; border-radius: var(--radius); font-family: var(--font-body); font-weight: 600; font-size: 0.9375rem; padding: 0.75rem 1.5rem; cursor: pointer; transition: background var(--tr), transform var(--tr); display: inline-flex; align-items: center; gap: 0.5rem; }
.btn-confirm:hover { background: #b45309; }
.btn-confirm:active { transform: scale(0.98); }
[data-theme="dark"] .btn-confirm { background: #f59e0b; color: #111827; }
[data-theme="dark"] .btn-confirm:hover { background: #d97706; }

.drop-zone { border: 3px dashed #15803d; border-radius: var(--radius); cursor: pointer; transition: border-color var(--tr), background var(--tr); padding: 4rem 2rem; display: flex; flex-direction: column; align-items: center; gap: 1rem; text-align: center; position: relative; background: var(--color-surface); }
.drop-zone.drag-active { border-color: var(--color-accent); background: rgba(22, 163, 74, 0.08); }
[data-theme="dark"] .drop-zone { border-color: rgba(74, 222, 128, 0.45); border-width: 2px; }
[data-theme="dark"] .drop-zone.drag-active { background: rgba(74, 222, 128, 0.08); border-color: var(--color-accent); }

.progress-fill { width: 0%; transition: width 0.4s ease; }

.workspace { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-card); display: flex; flex-direction: column; overflow: hidden; }
.workspace-header { padding: 1rem 1.5rem; border-bottom: 1px solid var(--color-border); background: rgba(22, 163, 74, 0.02); }
.workspace-body { padding: 1.5rem; background: var(--color-bg); display: flex; flex-direction: column; align-items: center; }

.pdf-toolbar { display: flex; flex-wrap: wrap; align-items: center; justify-content: center; gap: 0.75rem; margin-bottom: 1rem; background: var(--color-surface); padding: 0.5rem 1rem; border-radius: 99px; border: 1px solid var(--color-border); box-shadow: 0 2px 8px rgba(0,0,0,0.04); position: sticky; top: 80px; z-index: 20; }
@media (max-width: 640px) { .pdf-toolbar { border-radius: 0.75rem; } }

.pdf-pagination { display: flex; align-items: center; gap: 0.5rem; }
.page-btn { background: transparent; border: none; color: var(--color-text); cursor: pointer; display: flex; align-items: center; justify-content: center; width: 28px; height: 28px; border-radius: 50%; transition: background 0.2s; }
.page-btn:hover:not(:disabled) { background: rgba(22, 163, 74, 0.1); color: var(--color-accent); }
.page-btn:disabled { opacity: 0.3; cursor: not-allowed; }
.page-info { font-size: 0.875rem; font-weight: 600; font-variant-numeric: tabular-nums; }
.toolbar-divider { width: 1px; height: 20px; background: var(--color-border); display: none; }
@media (min-width: 640px) { .toolbar-divider { display: block; } }

.mode-toggle { display: flex; align-items: center; background: var(--color-bg); border: 1px solid var(--color-border); border-radius: 99px; padding: 2px; }
.mode-btn { display: inline-flex; align-items: center; gap: 0.3rem; padding: 0.4rem 0.8rem; font-size: 0.75rem; font-weight: 600; font-family: var(--font-body); border: none; background: transparent; color: var(--color-text); cursor: pointer; transition: all 0.2s; opacity: 0.6; border-radius: 99px; }
.mode-btn.active { background: var(--color-surface); opacity: 1; box-shadow: 0 1px 3px rgba(0,0,0,0.1); color: var(--color-accent); }
[data-theme="dark"] .mode-btn.active { background: rgba(74, 222, 128, 0.15); box-shadow: none; }

.pdf-container { position: relative; display: inline-block; max-width: 100%; box-shadow: 0 4px 20px rgba(0,0,0,0.1); border-radius: 4px; overflow: hidden; user-select: none; background: white; touch-action: none; }
[data-theme="dark"] .pdf-container { box-shadow: 0 4px 20px rgba(0,0,0,0.5); }

.draw-box { position: absolute; background: var(--color-redact); display: none; pointer-events: none; z-index: 10; opacity: 0.8; border: 1px solid rgba(255,255,255,0.5); }
.redacted-box { position: absolute; background: var(--color-redact); z-index: 5; display: flex; align-items: center; justify-content: center; border: 1px solid rgba(255,255,255,0.15); }
.redacted-box::after { content: attr(data-label); color: rgba(255,255,255,0.5); font-size: 0.6rem; font-weight: 700; letter-spacing: 0.1em; pointer-events: none; text-align: center; padding: 2px; }
.redacted-box.global-mask { border: 1px solid rgba(245, 158, 11, 0.4); background: repeating-linear-gradient(45deg, var(--color-redact), var(--color-redact) 10px, rgba(17,24,39,0.95) 10px, rgba(17,24,39,0.95) 20px); }
[data-theme="dark"] .redacted-box.global-mask { background: repeating-linear-gradient(45deg, var(--color-redact), var(--color-redact) 10px, rgba(20,20,20,0.95) 10px, rgba(20,20,20,0.95) 20px); }
.redacted-box.global-mask::after { color: rgba(245, 158, 11, 0.65); }

.workspace-footer { padding: 1rem 1.5rem; border-top: 1px solid var(--color-border); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }

.custom-checkbox { display: inline-flex; align-items: center; gap: 0.4rem; cursor: pointer; font-size: 0.75rem; font-weight: 600; opacity: 0.85; background: var(--color-bg); border: 1px solid var(--color-border); padding: 0.35rem 0.6rem; border-radius: 99px; transition: all 0.2s; }
.custom-checkbox:hover { opacity: 1; border-color: var(--color-accent); }
.checkbox-box { width: 14px; height: 14px; border: 2px solid var(--color-border); border-radius: 3px; display: flex; align-items: center; justify-content: center; transition: all 0.2s; background: var(--color-surface); flex-shrink: 0; }
.custom-checkbox input:checked + .checkbox-box { background: var(--color-accent); border-color: var(--color-accent); }
.checkbox-icon { color: white; opacity: 0; transform: scale(0.5); transition: all 0.2s; }
.custom-checkbox input:checked + .checkbox-box .checkbox-icon { opacity: 1; transform: scale(1); }
[data-theme="dark"] .custom-checkbox { background: rgba(0,0,0,0.2); }

.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(15,25,20,0.7); backdrop-filter: blur(4px); z-index: 100; display: none; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s ease; }
.modal-overlay.active { display: flex; opacity: 1; }
.modal-box { background: var(--color-surface); border: 1px solid var(--color-border); border-radius: var(--radius); box-shadow: var(--shadow-hover); display: flex; flex-direction: column; transform: translateY(20px); transition: transform 0.3s ease; }
.modal-overlay.active .modal-box { transform: translateY(0); }
.modal-header { padding: 1.25rem 1.5rem; border-bottom: 1px solid var(--color-border); display: flex; align-items: center; justify-content: space-between; }
.modal-title { font-family: var(--font-display); font-size: 1.125rem; font-weight: 700; display: flex; align-items: center; gap: 0.5rem; color: var(--color-accent); }
.modal-close { background: transparent; border: none; color: var(--color-text); opacity: 0.5; cursor: pointer; width: 32px; height: 32px; display: flex; align-items: center; justify-content: center; border-radius: 0.375rem; transition: background 0.2s; }
.modal-close:hover { background: rgba(22, 163, 74, 0.05); opacity: 1; }
[data-theme="dark"] .modal-close:hover { background: rgba(255,255,255,0.05); }
.modal-body { padding: 1.5rem; overflow-y: auto; font-size: 0.9375rem; line-height: 1.6; opacity: 0.9; }

.fade-up { animation: fadeUp 0.4s ease both; }
@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

.btn-payload { background: transparent; color: var(--color-text); border: 1px dashed var(--color-border); border-radius: var(--radius); font-size: 0.75rem; font-weight: 500; padding: 0.4rem 0.5rem; cursor: pointer; transition: all 0.2s; margin-bottom: 0.5rem; display: flex; justify-content: center; align-items: center; gap: 0.4rem; opacity: 0.8; }
.btn-payload:hover { border-style: solid; border-color: var(--color-accent); color: var(--color-accent); opacity: 1; background: rgba(22,163,74,0.05); }
[data-theme="dark"] .btn-payload:hover { background: rgba(74,222,128,0.05); }

.credit-input { width: 100%; padding: 0.75rem 1rem; border-radius: 0.5rem; border: 1px solid var(--color-border); background: var(--color-bg); color: var(--color-text); font-family: var(--font-mono); font-size: 0.875rem; outline: none; transition: border-color 0.2s; letter-spacing: 0.5px; font-weight: 600; }
.credit-input:focus { border-color: var(--color-accent); box-shadow: 0 0 0 2px rgba(22,163,74,0.1); }

/* Pre-flight Modal States */
.pf-success-box { background: #f0fdf4; border: 1px solid rgba(22,163,74,0.2); color: #166534; border-radius: var(--radius); padding: 0.875rem 1rem; display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 1.25rem; }
[data-theme="dark"] .pf-success-box { background: #052e16; color: #4ade80; border-color: rgba(74,222,128,0.2); }
.pf-error-box { background: #fef2f2; border: 1px solid rgba(185,28,28,0.2); color: #b91c1c; border-radius: var(--radius); padding: 0.875rem 1rem; display: flex; align-items: flex-start; gap: 0.75rem; font-size: 0.875rem; margin-bottom: 1.25rem; }
[data-theme="dark"] .pf-error-box { background: #1f0a0a; color: #f87171; }

.toast-hidden {
  position: fixed; bottom: 2rem; right: 2rem; transform: translateY(100px); 
  background: var(--toast-bg); color: var(--toast-text); padding: 0.75rem 1.5rem; 
  border-radius: 0.5rem; font-size: 0.875rem; font-weight: 600; box-shadow: 0 10px 25px rgba(0,0,0,0.2); 
  opacity: 0; transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275); z-index: 9999; 
  display: flex; align-items: center; gap: 0.5rem; pointer-events: none; 
}
.toast-hidden.show { transform: translateY(0); opacity: 1; }

.animate-spin { animation: spin 1s linear infinite; }
@keyframes spin { 100% { transform: rotate(360deg); } }
