/**
 * MASTER CODEX FINANCIAL - CSS Layer
 * ===================================
 * A comprehensive UX enhancement layer implementing 140 micro-interactions
 * for the Marlowe Management Analyzer financial application.
 * 
 * All classes are namespaced with .cdx- to prevent conflicts.
 * Mobile-first with iOS/Safari optimizations.
 * 
 * @version 1.0.0
 * @author Marlowe Partners
 */

/* ==========================================================================
   PART 1: MOBILE-FIRST & iOS OPTIMIZATIONS
   ========================================================================== */

/* Remove grey tap highlight on iOS */
.cdx-interactive,
.cdx-btn,
.cdx-link,
.cdx-fab,
button,
a,
[role="button"] {
  -webkit-tap-highlight-color: transparent;
  cursor: pointer;
  touch-action: manipulation;
}

/* Safe area insets for iPhone notch/home bar */
.cdx-fixed-bottom {
  padding-bottom: env(safe-area-inset-bottom);
}

.cdx-fixed-top {
  padding-top: env(safe-area-inset-top);
}

/* ==========================================================================
   PART 2: THE EFFICIENCY LAYER - CSS Components
   ========================================================================== */

/* Feature 2: Quick Actions FAB (Floating Action Button) */
.cdx-fab {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  left: 1.5rem;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 165, 0, 0.3);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 20px rgba(255, 165, 0, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483640;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cdx-fab:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 30px rgba(0, 0, 0, 0.5), 0 0 30px rgba(255, 165, 0, 0.2);
}

.cdx-fab:active {
  transform: scale(0.95);
}

.cdx-fab-icon {
  width: 24px;
  height: 24px;
  color: #f5a623;
}

/* Feature 3: Command Palette Modal */
.cdx-command-palette {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.8);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 15vh;
  z-index: 2147483647;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s, visibility 0.2s;
}

.cdx-command-palette.cdx-active {
  opacity: 1;
  visibility: visible;
}

.cdx-command-palette-box {
  width: 90%;
  max-width: 600px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 16px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  transform: translateY(-20px) scale(0.95);
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.cdx-command-palette.cdx-active .cdx-command-palette-box {
  transform: translateY(0) scale(1);
}

.cdx-command-input {
  width: 100%;
  padding: 1.25rem 1.5rem;
  font-size: 1.125rem;
  background: transparent;
  border: none;
  border-bottom: 1px solid rgba(255, 165, 0, 0.1);
  color: #fff;
  outline: none;
}

.cdx-command-input::placeholder {
  color: rgba(255, 255, 255, 0.4);
}

.cdx-command-results {
  max-height: 400px;
  overflow-y: auto;
}

.cdx-command-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem 1.5rem;
  cursor: pointer;
  transition: background 0.15s;
}

.cdx-command-item:hover,
.cdx-command-item.cdx-selected {
  background: rgba(255, 165, 0, 0.1);
}

.cdx-command-item-icon {
  width: 20px;
  height: 20px;
  color: #f5a623;
  opacity: 0.7;
}

.cdx-command-item-text {
  flex: 1;
  color: #fff;
}

.cdx-command-item-shortcut {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 4px;
}

/* Feature 10: Toast System */
.cdx-toast-container {
  position: fixed;
  bottom: calc(5rem + env(safe-area-inset-bottom));
  right: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 2147483646;
  pointer-events: none;
}

.cdx-toast {
  padding: 1rem 1.5rem;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 12px;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
  color: #fff;
  font-size: 0.9375rem;
  max-width: 350px;
  pointer-events: auto;
  animation: cdx-toast-in 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.cdx-toast.cdx-toast-out {
  animation: cdx-toast-out 0.3s cubic-bezier(0.4, 0, 0.2, 1) forwards;
}

.cdx-toast-success {
  border-color: rgba(34, 197, 94, 0.5);
}

.cdx-toast-error {
  border-color: rgba(239, 68, 68, 0.5);
}

.cdx-toast-warning {
  border-color: rgba(234, 179, 8, 0.5);
}

@keyframes cdx-toast-in {
  from {
    opacity: 0;
    transform: translateX(100%) scale(0.8);
  }
  to {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
}

@keyframes cdx-toast-out {
  from {
    opacity: 1;
    transform: translateX(0) scale(1);
  }
  to {
    opacity: 0;
    transform: translateX(100%) scale(0.8);
  }
}

/* Feature 17: Recent View Widget */
.cdx-recent-widget {
  position: fixed;
  bottom: calc(5rem + env(safe-area-inset-bottom));
  left: 1.5rem;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 1px solid rgba(255, 165, 0, 0.2);
  border-radius: 12px;
  padding: 1rem;
  min-width: 200px;
  z-index: 2147483640;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all 0.2s;
}

.cdx-recent-widget.cdx-active {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cdx-recent-title {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 0.75rem;
}

.cdx-recent-item {
  display: block;
  padding: 0.5rem 0;
  color: #fff;
  text-decoration: none;
  font-size: 0.875rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  transition: color 0.15s;
}

.cdx-recent-item:last-child {
  border-bottom: none;
}

.cdx-recent-item:hover {
  color: #f5a623;
}

/* Feature 18: Onboarding Checklist */
.cdx-onboarding {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 90%;
  max-width: 450px;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 1px solid rgba(255, 165, 0, 0.3);
  border-radius: 20px;
  padding: 2rem;
  z-index: 2147483647;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
}

.cdx-onboarding-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cdx-onboarding-subtitle {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  margin-bottom: 1.5rem;
}

.cdx-onboarding-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.02);
  border-radius: 12px;
  margin-bottom: 0.75rem;
  cursor: pointer;
  transition: background 0.15s;
}

.cdx-onboarding-item:hover {
  background: rgba(255, 165, 0, 0.05);
}

.cdx-onboarding-check {
  width: 24px;
  height: 24px;
  border: 2px solid rgba(255, 165, 0, 0.5);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.2s;
}

.cdx-onboarding-item.cdx-complete .cdx-onboarding-check {
  background: #f5a623;
  border-color: #f5a623;
}

.cdx-onboarding-check-icon {
  width: 14px;
  height: 14px;
  color: #000;
  opacity: 0;
  transition: opacity 0.2s;
}

.cdx-onboarding-item.cdx-complete .cdx-onboarding-check-icon {
  opacity: 1;
}

.cdx-onboarding-text {
  color: #fff;
  font-size: 0.9375rem;
}

.cdx-onboarding-dismiss {
  margin-top: 1.5rem;
  width: 100%;
  padding: 1rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.875rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cdx-onboarding-dismiss:hover {
  border-color: rgba(255, 165, 0, 0.5);
  color: #f5a623;
}

/* Feature 22: Zen Mode */
.cdx-zen-mode header,
.cdx-zen-mode nav,
.cdx-zen-mode aside,
.cdx-zen-mode footer,
.cdx-zen-mode .sidebar,
.cdx-zen-mode [class*="sidebar"],
.cdx-zen-mode [class*="nav"] {
  display: none !important;
}

.cdx-zen-mode main,
.cdx-zen-mode article,
.cdx-zen-mode .cdx-zen-content {
  max-width: 75ch !important;
  margin: 0 auto !important;
  padding: 2rem !important;
}

/* Feature 31: Night Shift Overlay */
.cdx-night-shift {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(255, 180, 100, 0.08);
  pointer-events: none;
  z-index: 2147483645;
  mix-blend-mode: multiply;
}

/* Feature 32: Pulse Loader */
.cdx-pulse {
  animation: cdx-pulse 1.5s ease-in-out infinite;
}

@keyframes cdx-pulse {
  0%, 100% {
    opacity: 1;
  }
  50% {
    opacity: 0.5;
  }
}

/* Feature 33: Skeleton UI */
.cdx-skeleton {
  background: linear-gradient(
    90deg,
    rgba(255, 255, 255, 0.05) 25%,
    rgba(255, 255, 255, 0.1) 50%,
    rgba(255, 255, 255, 0.05) 75%
  );
  background-size: 200% 100%;
  animation: cdx-skeleton-shimmer 1.5s infinite;
  border-radius: 8px;
}

.cdx-skeleton-text {
  height: 1em;
  margin-bottom: 0.5em;
}

.cdx-skeleton-title {
  height: 1.5em;
  width: 60%;
  margin-bottom: 1em;
}

.cdx-skeleton-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
}

.cdx-skeleton-card {
  height: 200px;
}

@keyframes cdx-skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }
  100% {
    background-position: -200% 0;
  }
}

/* Feature 42: Print Styles */
@media print {
  .cdx-fab,
  .cdx-toast-container,
  .cdx-command-palette,
  .cdx-recent-widget,
  .cdx-back-top,
  .cdx-feedback-widget,
  header,
  nav,
  footer,
  aside,
  .sidebar,
  [class*="sidebar"],
  [class*="nav"] {
    display: none !important;
  }
  
  body {
    background: #fff !important;
    color: #000 !important;
  }
  
  main, article {
    width: 100% !important;
    max-width: 100% !important;
    margin: 0 !important;
    padding: 0 !important;
  }
  
  a {
    color: #000 !important;
    text-decoration: underline !important;
  }
  
  a[href^="http"]::after {
    content: " (" attr(href) ")";
    font-size: 0.8em;
    color: #666;
  }
}

/* Feature 44: Feedback Widget */
.cdx-feedback-widget {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  right: 1.5rem;
  display: flex;
  gap: 0.5rem;
  z-index: 2147483640;
}

.cdx-feedback-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 165, 0, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s;
}

.cdx-feedback-btn:hover {
  transform: scale(1.1);
  border-color: rgba(255, 165, 0, 0.5);
}

.cdx-feedback-btn.cdx-active {
  background: #f5a623;
  border-color: #f5a623;
}

.cdx-feedback-btn svg {
  width: 20px;
  height: 20px;
  color: #f5a623;
}

.cdx-feedback-btn.cdx-active svg {
  color: #000;
}

/* ==========================================================================
   PART 2: THE POLISH LAYER - CSS Styles
   ========================================================================== */

/* Feature 51: Hover Lift */
.cdx-lift {
  transition: transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.2s;
}

.cdx-lift:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Feature 52: Active Press */
.cdx-press:active {
  transform: scale(0.98);
}

/* Feature 53: Focus Glow */
.cdx-focus-glow:focus,
input:focus,
textarea:focus,
select:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(245, 166, 35, 0.25);
}

/* Feature 54: Skeleton Animation (enhanced) */
.cdx-shimmer {
  position: relative;
  overflow: hidden;
}

.cdx-shimmer::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    90deg,
    transparent 0%,
    rgba(255, 255, 255, 0.1) 50%,
    transparent 100%
  );
  animation: cdx-shimmer-slide 1.5s infinite;
}

@keyframes cdx-shimmer-slide {
  0% {
    transform: translateX(-100%);
  }
  100% {
    transform: translateX(100%);
  }
}

/* Feature 55: Menu Slide */
.cdx-menu-slide {
  opacity: 0;
  transform: translateY(-10px);
  transition: opacity 0.2s, transform 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  pointer-events: none;
}

.cdx-menu-slide.cdx-active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

/* Feature 56: Cursor Hand */
.cdx-clickable,
button,
[role="button"],
a,
label[for],
input[type="checkbox"],
input[type="radio"],
select {
  cursor: pointer;
}

/* Feature 57: Link Fade */
.cdx-link-fade,
a {
  transition: color 0.2s, opacity 0.2s;
}

.cdx-link-fade:hover,
a:hover {
  opacity: 0.8;
}

/* Feature 58: Sticky Header */
.cdx-sticky {
  position: sticky;
  top: 0;
  z-index: 100;
  background: inherit;
}

/* Feature 59: Toast Pop Animation (defined above in toast section) */

/* Feature 60: Progress Bar (Scroll Indicator) */
.cdx-progress-bar {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  background: linear-gradient(90deg, #f5a623, #ff8c00);
  z-index: 2147483647;
  transition: width 0.1s;
  box-shadow: 0 0 10px rgba(245, 166, 35, 0.5);
}

/* Feature 61-65: Typography */
.cdx-typography {
  line-height: 1.6;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

.cdx-prose {
  max-width: 75ch;
  color: inherit;
}

.cdx-prose h1 { font-size: 2.5rem; font-weight: 700; margin-bottom: 1rem; }
.cdx-prose h2 { font-size: 2rem; font-weight: 600; margin-bottom: 0.875rem; }
.cdx-prose h3 { font-size: 1.75rem; font-weight: 600; margin-bottom: 0.75rem; }
.cdx-prose h4 { font-size: 1.5rem; font-weight: 500; margin-bottom: 0.625rem; }
.cdx-prose h5 { font-size: 1.25rem; font-weight: 500; margin-bottom: 0.5rem; }
.cdx-prose h6 { font-size: 1rem; font-weight: 500; margin-bottom: 0.5rem; }

.cdx-prose p {
  margin-bottom: 1.25em;
}

/* Feature 68: Link Style */
.cdx-link-underline {
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

/* Feature 69: Whitespace Utilities */
.cdx-mb-1 { margin-bottom: 0.25rem; }
.cdx-mb-2 { margin-bottom: 0.5rem; }
.cdx-mb-3 { margin-bottom: 1rem; }
.cdx-mb-4 { margin-bottom: 1.5rem; }
.cdx-mb-5 { margin-bottom: 2rem; }
.cdx-mb-6 { margin-bottom: 3rem; }

.cdx-mt-1 { margin-top: 0.25rem; }
.cdx-mt-2 { margin-top: 0.5rem; }
.cdx-mt-3 { margin-top: 1rem; }
.cdx-mt-4 { margin-top: 1.5rem; }
.cdx-mt-5 { margin-top: 2rem; }
.cdx-mt-6 { margin-top: 3rem; }

/* Feature 76: Error Text */
.cdx-error-text {
  font-size: 0.75rem;
  color: #ef4444;
  margin-top: 0.25rem;
}

/* Feature 77: Button Primary */
.cdx-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: linear-gradient(135deg, #f5a623 0%, #ff8c00 100%);
  color: #000;
  font-weight: 600;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.cdx-btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(245, 166, 35, 0.4);
}

.cdx-btn-primary:active {
  transform: scale(0.98);
}

.cdx-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.5rem;
  background: transparent;
  color: #fff;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  cursor: pointer;
  transition: all 0.2s;
  min-height: 44px;
}

.cdx-btn-secondary:hover {
  border-color: rgba(245, 166, 35, 0.5);
  color: #f5a623;
}

/* Feature 78: Touch Target */
.cdx-touch-target {
  min-height: 44px;
  min-width: 44px;
}

/* Feature 79: Floating Label */
.cdx-float-label {
  position: relative;
}

.cdx-float-label input,
.cdx-float-label textarea {
  padding: 1.5rem 1rem 0.5rem;
  width: 100%;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  color: #fff;
  font-size: 1rem;
  transition: border-color 0.2s;
}

.cdx-float-label input:focus,
.cdx-float-label textarea:focus {
  border-color: rgba(245, 166, 35, 0.5);
  outline: none;
}

.cdx-float-label label {
  position: absolute;
  left: 1rem;
  top: 50%;
  transform: translateY(-50%);
  color: rgba(255, 255, 255, 0.5);
  font-size: 1rem;
  pointer-events: none;
  transition: all 0.2s;
}

.cdx-float-label input:focus + label,
.cdx-float-label input:not(:placeholder-shown) + label,
.cdx-float-label textarea:focus + label,
.cdx-float-label textarea:not(:placeholder-shown) + label {
  top: 0.75rem;
  transform: translateY(0);
  font-size: 0.75rem;
  color: #f5a623;
}

/* Feature 80: Breadcrumbs */
.cdx-breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
}

.cdx-breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color 0.2s;
}

.cdx-breadcrumbs a:hover {
  color: #f5a623;
}

.cdx-breadcrumbs-separator {
  color: rgba(255, 255, 255, 0.3);
}

.cdx-breadcrumbs-current {
  color: #fff;
}

/* Feature 82: Visited Links */
.cdx-visited-darken a:visited {
  opacity: 0.7;
}

/* Feature 83: Empty State */
.cdx-empty-state {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 3rem;
  text-align: center;
}

.cdx-empty-state-icon {
  width: 80px;
  height: 80px;
  margin-bottom: 1.5rem;
  opacity: 0.3;
}

.cdx-empty-state-title {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.5rem;
}

.cdx-empty-state-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.6);
  max-width: 300px;
}

/* Feature 84: Custom 404 */
.cdx-404 {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);
  z-index: 2147483647;
}

.cdx-404-code {
  font-size: 8rem;
  font-weight: 700;
  color: rgba(245, 166, 35, 0.2);
  line-height: 1;
}

.cdx-404-text {
  font-size: 1.5rem;
  color: #fff;
  margin-top: 1rem;
}

.cdx-404-subtext {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.6);
  margin-top: 0.5rem;
}

/* Feature 86: Back to Top */
.cdx-back-top {
  position: fixed;
  bottom: calc(1.5rem + env(safe-area-inset-bottom));
  right: 1.5rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1a1a2e 0%, #16213e 100%);
  border: 1px solid rgba(255, 165, 0, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(20px);
  transition: all 0.3s;
  z-index: 2147483640;
}

.cdx-back-top.cdx-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.cdx-back-top:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.cdx-back-top svg {
  width: 20px;
  height: 20px;
  color: #f5a623;
}

/* Feature 91: Lazy Load Blur-up */
.cdx-lazy {
  filter: blur(10px);
  transition: filter 0.5s;
}

.cdx-lazy.cdx-loaded {
  filter: blur(0);
}

/* Feature 92: Image Aspect Ratio */
.cdx-aspect-square { aspect-ratio: 1 / 1; }
.cdx-aspect-video { aspect-ratio: 16 / 9; }
.cdx-aspect-portrait { aspect-ratio: 3 / 4; }
.cdx-aspect-wide { aspect-ratio: 21 / 9; }

/* Feature 93: Alt Warning (Dev Mode) */
.cdx-dev-mode img:not([alt]),
.cdx-dev-mode img[alt=""] {
  outline: 3px solid #ef4444 !important;
  outline-offset: 2px;
}

/* Feature 94: Tablet Media Queries */
@media (max-width: 768px) {
  .cdx-hide-tablet { display: none !important; }
  .cdx-show-tablet { display: block !important; }
  
  .cdx-fab {
    width: 48px;
    height: 48px;
  }
  
  .cdx-command-palette-box {
    width: 95%;
    margin: 0 auto;
  }
}

@media (min-width: 769px) {
  .cdx-hide-desktop { display: none !important; }
  .cdx-show-desktop { display: block !important; }
}

/* Feature 95: Fast Tap */
.cdx-fast-tap {
  touch-action: manipulation;
}

/* Feature 97: External Link Icon */
.cdx-external-link::after {
  content: '';
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-left: 4px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23f5a623' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M18 13v6a2 2 0 0 1-2 2H5a2 2 0 0 1-2-2V8a2 2 0 0 1 2-2h6'/%3E%3Cpolyline points='15 3 21 3 21 9'/%3E%3Cline x1='10' y1='14' x2='21' y2='3'/%3E%3C/svg%3E");
  background-size: contain;
  background-repeat: no-repeat;
  vertical-align: middle;
  opacity: 0.7;
}

/* Feature 100: Selection Color */
::selection {
  background: rgba(245, 166, 35, 0.3);
  color: #fff;
}

::-moz-selection {
  background: rgba(245, 166, 35, 0.3);
  color: #fff;
}

/* ==========================================================================
   PART 3: THE ANTICIPATORY LAYER - CSS
   ========================================================================== */

/* Feature 101: Velocity Type (applied via JS) */
.cdx-velocity-bold h1,
.cdx-velocity-bold h2,
.cdx-velocity-bold h3 {
  font-weight: 800 !important;
}

/* Feature 102: Trajectory Glow */
.cdx-trajectory-glow {
  box-shadow: 0 0 20px rgba(245, 166, 35, 0.4) !important;
}

/* Feature 103: Magnet Cursor */
.cdx-magnet {
  transition: transform 0.15s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Feature 106: Circadian Background */
.cdx-circadian-warm {
  filter: sepia(0.1) saturate(1.1);
}

.cdx-circadian-cool {
  filter: saturate(0.95) brightness(0.98);
}

/* Feature 107: Focus Tunnel */
.cdx-focus-tunnel *:not(:focus):not(:focus-within) {
  opacity: 0.3;
  transition: opacity 0.3s;
}

.cdx-focus-tunnel *:focus,
.cdx-focus-tunnel *:focus-within {
  opacity: 1;
}

/* Feature 110: Density (Compact Mode) */
.cdx-compact {
  --cdx-spacer: 0.5rem;
}

.cdx-compact .cdx-mb-4 { margin-bottom: var(--cdx-spacer); }
.cdx-compact .cdx-mt-4 { margin-top: var(--cdx-spacer); }
.cdx-compact .cdx-p-4 { padding: var(--cdx-spacer); }

/* Feature 111: Patina (Frequently Used) */
.cdx-patina-1 { filter: brightness(0.95); }
.cdx-patina-2 { filter: brightness(0.9); }
.cdx-patina-3 { filter: brightness(0.85); }

/* Feature 113: Wait Cursor */
.cdx-wait,
.cdx-wait * {
  cursor: progress !important;
}

/* Feature 117: Changelog Badge */
.cdx-new-badge {
  position: relative;
}

.cdx-new-badge::after {
  content: 'NEW';
  position: absolute;
  top: -8px;
  right: -8px;
  padding: 2px 6px;
  font-size: 0.625rem;
  font-weight: 700;
  background: #f5a623;
  color: #000;
  border-radius: 4px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

/* ==========================================================================
   PART 4: THE PSYCHOLOGICAL CODEX - CSS
   ========================================================================== */

/* Feature 124: Identity Toggle - Blur Noise */
.cdx-noise {
  transition: filter 0.5s;
}

.cdx-long-duration .cdx-noise {
  filter: blur(4px);
  user-select: none;
  pointer-events: none;
}

/* Feature 125: Manifesto Gate - Blurred Content */
.cdx-gated {
  filter: blur(8px);
  user-select: none;
  pointer-events: none;
  transition: filter 0.5s;
}

.cdx-gated.cdx-unlocked {
  filter: none;
  user-select: auto;
  pointer-events: auto;
}

/* Feature 128: Silent Badge */
.cdx-silent-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(245, 166, 35, 0.1);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 20px;
  font-size: 0.75rem;
  color: #f5a623;
  font-weight: 500;
}

/* Feature 129: Peer Notes (Handwritten) */
.cdx-peer-notes {
  font-family: 'Caveat', 'Brush Script MT', cursive;
  font-size: 1.125rem;
  color: rgba(245, 166, 35, 0.8);
  transform: rotate(-1deg);
  margin-left: 1rem;
  position: relative;
}

.cdx-peer-notes::before {
  content: '"';
  font-size: 2rem;
  position: absolute;
  left: -1rem;
  top: -0.5rem;
  opacity: 0.5;
}

/* Feature 131: Quiet Room */
.cdx-quiet-room {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: #f5f0e8;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  padding: 2rem;
}

.cdx-quiet-room-content {
  max-width: 600px;
  text-align: center;
  color: #1a1a2e;
  font-family: 'Crimson Text', Georgia, serif;
  font-size: 1.25rem;
  line-height: 1.8;
}

/* Feature 132: Disqualify Warning */
.cdx-disqualify {
  padding: 1.5rem;
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.3);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.cdx-disqualify-title {
  font-size: 1rem;
  font-weight: 600;
  color: #ef4444;
  margin-bottom: 0.5rem;
}

.cdx-disqualify-text {
  font-size: 0.9375rem;
  color: rgba(255, 255, 255, 0.8);
}

/* Feature 133: Dated Window */
.cdx-dated-closed {
  opacity: 0.5;
  pointer-events: none;
  position: relative;
}

.cdx-dated-closed::after {
  content: 'Window Closed';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.75rem 1.5rem;
  background: rgba(0, 0, 0, 0.8);
  color: #fff;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 8px;
}

/* Feature 134: Underwriting Mode */
.cdx-underwriting table,
.cdx-underwriting .highcharts-container,
.cdx-underwriting .recharts-wrapper,
.cdx-underwriting svg:not(.cdx-icon) {
  filter: grayscale(1);
  font-family: 'Courier New', Courier, monospace !important;
}

/* Feature 135: Legacy Font */
.cdx-legacy-font {
  font-family: 'Crimson Text', Georgia, 'Times New Roman', serif !important;
}

/* Feature 137: Privacy Banner */
.cdx-privacy-banner {
  padding: 1rem 1.5rem;
  background: rgba(34, 197, 94, 0.1);
  border-top: 1px solid rgba(34, 197, 94, 0.2);
  text-align: center;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.8);
}

.cdx-privacy-banner strong {
  color: #22c55e;
}

/* Feature 138: Pacing Tooltip */
.cdx-pacing-tooltip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 1rem 2rem;
  background: rgba(0, 0, 0, 0.9);
  color: #fff;
  font-size: 1.125rem;
  border-radius: 12px;
  z-index: 2147483647;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cdx-pacing-tooltip.cdx-visible {
  opacity: 1;
  visibility: visible;
}

/* Feature 140: Patient Tag */
.cdx-patient-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem 1rem;
  background: rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.6);
  font-style: italic;
}

/* ==========================================================================
   CONFETTI CANVAS (Feature 45)
   ========================================================================== */

.cdx-confetti-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 2147483647;
}

/* ==========================================================================
   LINK PEEK PREVIEW (Feature 116)
   ========================================================================== */

.cdx-link-peek {
  position: fixed;
  width: 400px;
  height: 300px;
  background: #fff;
  border-radius: 12px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
  overflow: hidden;
  z-index: 2147483646;
  opacity: 0;
  visibility: hidden;
  transform: scale(0.9);
  transition: all 0.2s;
  pointer-events: none;
}

.cdx-link-peek.cdx-visible {
  opacity: 1;
  visibility: visible;
  transform: scale(1);
}

.cdx-link-peek iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ==========================================================================
   COPY CODE BUTTON (Features 24 & 99)
   ========================================================================== */

.cdx-code-wrapper {
  position: relative;
}

.cdx-copy-btn {
  position: absolute;
  top: 0.5rem;
  right: 0.5rem;
  padding: 0.375rem 0.75rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  cursor: pointer;
  transition: all 0.2s;
}

.cdx-copy-btn:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.cdx-copy-btn.cdx-copied {
  background: rgba(34, 197, 94, 0.2);
  border-color: rgba(34, 197, 94, 0.5);
  color: #22c55e;
}

/* ==========================================================================
   PASSWORD VISIBILITY TOGGLE (Feature 74)
   ========================================================================== */

.cdx-password-wrapper {
  position: relative;
}

.cdx-password-toggle {
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.25rem;
  transition: color 0.2s;
}

.cdx-password-toggle:hover {
  color: #f5a623;
}

.cdx-password-toggle svg {
  width: 20px;
  height: 20px;
}

/* ==========================================================================
   READ TIME INDICATOR (Feature 23)
   ========================================================================== */

.cdx-read-time {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
}

.cdx-read-time svg {
  width: 16px;
  height: 16px;
}

/* ==========================================================================
   EXIT INTENT OVERLAY (Feature 123)
   ========================================================================== */

.cdx-exit-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cdx-exit-overlay.cdx-active {
  opacity: 1;
  visibility: visible;
}

.cdx-exit-content {
  max-width: 500px;
  padding: 3rem;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 24px;
  text-align: center;
}

.cdx-exit-title {
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 1rem;
}

.cdx-exit-text {
  font-size: 1rem;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.cdx-exit-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 44px;
  height: 44px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cdx-exit-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cdx-exit-logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cdx-exit-logo-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, #f5a623 0%, #e8941c 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(245, 166, 35, 0.3);
}

.cdx-exit-logo-icon svg {
  width: 28px;
  height: 28px;
  color: #fff;
}

.cdx-exit-logo-text {
  font-size: 1.25rem;
  font-weight: 600;
  color: #fff;
  font-family: 'Bodoni Moda', Georgia, serif;
}

.cdx-exit-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.cdx-btn-secondary {
  padding: 0.875rem 1.5rem;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.9375rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s;
}

.cdx-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.cdx-exit-footer {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin: 0;
}

.cdx-exit-footer-icon {
  width: 14px;
  height: 14px;
}

/* ==========================================================================
   WELCOME MODAL (Feature 122)
   ========================================================================== */

.cdx-welcome-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.9);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  padding: 1rem;
  animation: cdx-fade-in 0.3s ease-out;
}

@keyframes cdx-fade-in {
  from { opacity: 0; }
  to { opacity: 1; }
}

.cdx-welcome-content {
  max-width: 520px;
  width: 100%;
  padding: 2.5rem 2rem;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 24px;
  text-align: center;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(245, 166, 35, 0.1);
  animation: cdx-slide-up 0.4s ease-out;
}

@keyframes cdx-slide-up {
  from { transform: translateY(30px); opacity: 0; }
  to { transform: translateY(0); opacity: 1; }
}

.cdx-welcome-logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1.25rem;
  background: linear-gradient(135deg, #f5a623 0%, #e8941c 100%);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(245, 166, 35, 0.3);
}

.cdx-welcome-logo-text {
  font-family: 'Libre Bodoni', serif;
  font-size: 1.75rem;
  font-weight: 700;
  color: #0f0f1a;
  letter-spacing: -0.02em;
}

.cdx-welcome-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 1.5rem;
  color: #f5a623;
}

.cdx-welcome-title {
  font-family: 'Libre Bodoni', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: #fff;
  margin-bottom: 0.25rem;
}

.cdx-welcome-subtitle {
  font-size: 0.9rem;
  color: #f5a623;
  margin-bottom: 1rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.cdx-welcome-text {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.cdx-welcome-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  padding: 1rem;
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
}

.cdx-welcome-feature {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  padding: 0.5rem;
}

.cdx-welcome-feature svg {
  width: 24px;
  height: 24px;
  color: #f5a623;
}

.cdx-welcome-feature span {
  font-size: 0.7rem;
  color: rgba(255, 255, 255, 0.6);
  text-align: center;
}

.cdx-welcome-quickstart {
  text-align: left;
  padding: 1rem;
  background: rgba(245, 166, 35, 0.08);
  border: 1px solid rgba(245, 166, 35, 0.15);
  border-radius: 12px;
  margin-bottom: 1.5rem;
}

.cdx-welcome-quickstart-title {
  font-size: 0.8rem;
  font-weight: 600;
  color: #f5a623;
  margin-bottom: 0.5rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.cdx-welcome-steps {
  margin: 0;
  padding-left: 1.25rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.8;
}

.cdx-welcome-steps li {
  margin-bottom: 0.25rem;
}

.cdx-welcome-steps li::marker {
  color: #f5a623;
}

.cdx-welcome-cta {
  width: 100%;
  padding: 0.875rem 1.5rem;
  font-size: 1rem;
  font-weight: 600;
}

.cdx-welcome-dismiss {
  margin-top: 1rem;
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.5);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.2s;
}

.cdx-welcome-dismiss:hover {
  color: #f5a623;
}

.cdx-welcome-footer {
  margin-top: 1rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.4);
  font-style: italic;
}

@media (max-width: 480px) {
  .cdx-welcome-features {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .cdx-welcome-content {
    padding: 2rem 1.5rem;
  }
}


/* ==========================================================================
   KEYBOARD SHORTCUTS MODAL
   ========================================================================== */

.cdx-shortcuts-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2147483647;
  padding: 1rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.3s, visibility 0.3s;
}

.cdx-shortcuts-modal.cdx-active {
  opacity: 1;
  visibility: visible;
}

.cdx-shortcuts-content {
  position: relative;
  max-width: 600px;
  width: 100%;
  padding: 2rem;
  background: linear-gradient(180deg, #1a1a2e 0%, #0f0f1a 100%);
  border: 1px solid rgba(245, 166, 35, 0.3);
  border-radius: 20px;
  box-shadow: 0 25px 80px rgba(0, 0, 0, 0.6), 0 0 60px rgba(245, 166, 35, 0.1);
  animation: cdx-slide-up 0.3s ease-out;
}

.cdx-shortcuts-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  width: 36px;
  height: 36px;
  background: rgba(255, 255, 255, 0.1);
  border: none;
  border-radius: 50%;
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}

.cdx-shortcuts-close:hover {
  background: rgba(255, 255, 255, 0.2);
}

.cdx-shortcuts-close svg {
  width: 18px;
  height: 18px;
}

.cdx-shortcuts-title {
  font-size: 1.5rem;
  font-weight: 600;
  color: #fff;
  margin: 0 0 0.5rem;
  text-align: center;
}

.cdx-shortcuts-subtitle {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0 0 1.5rem;
  text-align: center;
}

.cdx-shortcuts-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.cdx-shortcuts-category {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 12px;
  padding: 1rem;
}

.cdx-shortcuts-category-title {
  font-size: 0.75rem;
  font-weight: 600;
  color: #f5a623;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin: 0 0 0.75rem;
}

.cdx-shortcuts-list {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cdx-shortcut-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.cdx-shortcut-key {
  min-width: 32px;
  padding: 0.25rem 0.5rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 6px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.75rem;
  font-weight: 500;
  color: #fff;
  text-align: center;
  box-shadow: 0 2px 0 rgba(0, 0, 0, 0.3);
}

.cdx-shortcut-desc {
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.8);
}

.cdx-shortcuts-footer {
  margin-top: 1.5rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

.cdx-shortcuts-footer kbd {
  padding: 0.125rem 0.375rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 4px;
  font-family: ui-monospace, SFMono-Regular, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.6875rem;
  color: #fff;
}

@media (max-width: 640px) {
  .cdx-shortcuts-grid {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  
  .cdx-shortcuts-content {
    padding: 1.5rem;
  }
  
  .cdx-shortcuts-title {
    font-size: 1.25rem;
  }
}
