/* [project]/app/globals.css [app-client] (css) */
@layer properties {
  @supports (((-webkit-hyphens: none)) and (not (margin-trim: inline))) or ((-moz-orient: inline) and (not (color: rgb(from red r g b)))) {
    *, :before, :after, ::backdrop {
      --tw-rotate-x: initial;
      --tw-rotate-y: initial;
      --tw-rotate-z: initial;
      --tw-skew-x: initial;
      --tw-skew-y: initial;
      --tw-border-style: solid;
      --tw-blur: initial;
      --tw-brightness: initial;
      --tw-contrast: initial;
      --tw-grayscale: initial;
      --tw-hue-rotate: initial;
      --tw-invert: initial;
      --tw-opacity: initial;
      --tw-saturate: initial;
      --tw-sepia: initial;
      --tw-drop-shadow: initial;
      --tw-drop-shadow-color: initial;
      --tw-drop-shadow-alpha: 100%;
      --tw-drop-shadow-size: initial;
    }
  }
}

.collapse {
  visibility: collapse;
}

.absolute {
  position: absolute;
}

.fixed {
  position: fixed;
}

.relative {
  position: relative;
}

.static {
  position: static;
}

.sticky {
  position: sticky;
}

.block {
  display: block;
}

.flex {
  display: flex;
}

.grid {
  display: grid;
}

.hidden {
  display: none;
}

.inline {
  display: inline;
}

.inline-flex {
  display: inline-flex;
}

.transform {
  transform: var(--tw-rotate-x, ) var(--tw-rotate-y, ) var(--tw-rotate-z, ) var(--tw-skew-x, ) var(--tw-skew-y, );
}

.border {
  border-style: var(--tw-border-style);
  border-width: 1px;
}

.capitalize {
  text-transform: capitalize;
}

.uppercase {
  text-transform: uppercase;
}

.italic {
  font-style: italic;
}

.filter {
  filter: var(--tw-blur, ) var(--tw-brightness, ) var(--tw-contrast, ) var(--tw-grayscale, ) var(--tw-hue-rotate, ) var(--tw-invert, ) var(--tw-saturate, ) var(--tw-sepia, ) var(--tw-drop-shadow, );
}

.transition {
  transition-property: color, background-color, border-color, outline-color, text-decoration-color, fill, stroke, --tw-gradient-from, --tw-gradient-via, --tw-gradient-to, opacity, box-shadow, transform, translate, scale, rotate, filter, -webkit-backdrop-filter, backdrop-filter, display, content-visibility, overlay, pointer-events;
  transition-timing-function: var(--tw-ease, ease);
  transition-duration: var(--tw-duration, 0s);
}

:root {
  --navy: #0f1f3d;
  --navy-mid: #1a3460;
  --blue: #2563eb;
  --blue-light: #3b82f6;
  --cyan: #06b6d4;
  --gold: #f59e0b;
  --surface: #f8fafc;
  --surface-2: #f1f5f9;
  --border: #e2e8f0;
  --text: #0f172a;
  --text-muted: #64748b;
  --white: #fff;
  --success: #10b981;
  --warning: #f59e0b;
  --danger: #ef4444;
  --radius: 12px;
  --radius-sm: 8px;
  --shadow: 0 1px 3px #0000000f, 0 4px 16px #0000000f;
  --shadow-md: 0 4px 6px #00000012, 0 10px 40px #0000001a;
  --shadow-lg: 0 20px 60px #00000026;
}

* {
  box-sizing: border-box;
}

html, body {
  background: var(--surface);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
  font-family: DM Sans, system-ui, sans-serif;
}

h1, h2, h3, h4, h5, .font-display {
  font-family: Syne, sans-serif;
}

::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

::-webkit-scrollbar-track {
  background: none;
}

::-webkit-scrollbar-thumb {
  background: var(--border);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

.ProseMirror {
  min-height: 300px;
  color: var(--text);
  outline: none;
  padding: 1.5rem;
  font-family: DM Sans, sans-serif;
  font-size: 15px;
  line-height: 1.75;
}

.ProseMirror p {
  margin: 0 0 .75rem;
}

.ProseMirror h1 {
  color: var(--navy);
  margin: 1.5rem 0 .75rem;
  font-family: Syne, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
}

.ProseMirror h2 {
  color: var(--navy-mid);
  margin: 1.25rem 0 .5rem;
  font-family: Syne, sans-serif;
  font-size: 1.35rem;
  font-weight: 600;
}

.ProseMirror h3 {
  margin: 1rem 0 .5rem;
  font-family: Syne, sans-serif;
  font-size: 1.1rem;
  font-weight: 600;
}

.ProseMirror ul, .ProseMirror ol {
  margin: .5rem 0 .75rem;
  padding-left: 1.5rem;
}

.ProseMirror li {
  margin: .25rem 0;
}

.ProseMirror strong {
  font-weight: 600;
}

.ProseMirror blockquote {
  border-left: 3px solid var(--blue);
  color: var(--text-muted);
  margin: 1rem 0;
  padding-left: 1rem;
  font-style: italic;
}

.ProseMirror table {
  border-collapse: collapse;
  width: 100%;
  margin: 1rem 0;
}

.ProseMirror td, .ProseMirror th {
  border: 1px solid var(--border);
  padding: .5rem .75rem;
}

.ProseMirror th {
  background: var(--surface-2);
  font-weight: 600;
}

.ProseMirror .is-empty:before {
  content: attr(data-placeholder);
  color: var(--text-muted);
  opacity: .5;
  pointer-events: none;
  float: left;
  height: 0;
}

@keyframes blink {
  0%, 100% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }
}

.cursor-blink {
  animation: 1s infinite blink;
}

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

  100% {
    background-position: 200% 0;
  }
}

.shimmer {
  background: linear-gradient(90deg, var(--surface-2) 25%, var(--border) 50%, var(--surface-2) 75%);
  background-size: 200% 100%;
  animation: 1.5s infinite shimmer;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: none;
  }
}

.fade-in {
  animation: .3s forwards fadeIn;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

.spin {
  animation: 1s linear infinite spin;
}

@keyframes loadDot {
  0%, 80%, 100% {
    opacity: .4;
    transform: scale(.6);
  }

  40% {
    opacity: 1;
    transform: scale(1);
  }
}

.load-dot {
  background: var(--blue);
  border-radius: 50%;
  width: 6px;
  height: 6px;
  animation: 1.2s ease-in-out infinite loadDot;
  display: inline-block;
}

.load-dot:nth-child(2) {
  animation-delay: .2s;
}

.load-dot:nth-child(3) {
  animation-delay: .4s;
}

.step-dot {
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-family: Syne, sans-serif;
  font-size: 13px;
  font-weight: 700;
  transition: all .3s;
  display: flex;
}

.step-dot.active {
  background: var(--blue);
  color: #fff;
  box-shadow: 0 0 0 4px #2563eb33;
}

.step-dot.done {
  background: var(--success);
  color: #fff;
}

.step-dot.pending {
  background: var(--border);
  color: var(--text-muted);
}

.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #fff;
}

.btn {
  border-radius: var(--radius-sm);
  cursor: pointer;
  white-space: nowrap;
  border: none;
  align-items: center;
  gap: .5rem;
  padding: .625rem 1.25rem;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  font-weight: 500;
  transition: all .18s;
  display: inline-flex;
}

.btn-primary {
  background: var(--blue);
  color: #fff;
}

.btn-primary:hover {
  background: #1d4ed8;
  transform: translateY(-1px);
  box-shadow: 0 4px 12px #2563eb59;
}

.btn-secondary {
  color: var(--text);
  border: 1px solid var(--border);
  background: #fff;
}

.btn-secondary:hover {
  background: var(--surface-2);
}

.btn-danger {
  background: var(--danger);
  color: #fff;
}

.btn-ghost {
  color: var(--text-muted);
  background: none;
}

.btn-ghost:hover {
  background: var(--surface-2);
  color: var(--text);
}

.btn:disabled {
  opacity: .5;
  cursor: not-allowed;
  transform: none !important;
}

.badge {
  border-radius: 99px;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  font-size: 12px;
  font-weight: 500;
  display: inline-flex;
}

.badge-blue {
  color: #1e40af;
  background: #dbeafe;
}

.badge-green {
  color: #065f46;
  background: #d1fae5;
}

.badge-yellow {
  color: #92400e;
  background: #fef3c7;
}

.badge-red {
  color: #991b1b;
  background: #fee2e2;
}

.badge-gray {
  background: var(--surface-2);
  color: var(--text-muted);
}

.input {
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  width: 100%;
  color: var(--text);
  background: #fff;
  outline: none;
  padding: .625rem .875rem;
  font-family: DM Sans, sans-serif;
  font-size: 14px;
  transition: border-color .15s, box-shadow .15s;
}

.input:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px #2563eb1f;
}

.input::placeholder {
  color: var(--text-muted);
  opacity: .6;
}

textarea.input {
  resize: vertical;
  min-height: 100px;
}

.label {
  color: var(--text-muted);
  margin-bottom: .375rem;
  font-size: 13px;
  font-weight: 500;
  display: block;
}

.nav-item {
  border-radius: var(--radius-sm);
  cursor: pointer;
  color: var(--text-muted);
  align-items: center;
  gap: .625rem;
  padding: .625rem .875rem;
  font-size: 14px;
  font-weight: 500;
  text-decoration: none;
  transition: all .15s;
  display: flex;
}

.nav-item:hover {
  background: var(--surface-2);
  color: var(--text);
}

.nav-item.active {
  color: var(--blue);
  background: #dbeafe;
}

.section-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: #fff;
  transition: border-color .2s, box-shadow .2s;
  overflow: hidden;
}

.section-card:hover {
  border-color: #93c5fd;
  box-shadow: 0 2px 12px #2563eb14;
}

@property --tw-rotate-x {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-y {
  syntax: "*";
  inherits: false
}

@property --tw-rotate-z {
  syntax: "*";
  inherits: false
}

@property --tw-skew-x {
  syntax: "*";
  inherits: false
}

@property --tw-skew-y {
  syntax: "*";
  inherits: false
}

@property --tw-border-style {
  syntax: "*";
  inherits: false;
  initial-value: solid;
}

@property --tw-blur {
  syntax: "*";
  inherits: false
}

@property --tw-brightness {
  syntax: "*";
  inherits: false
}

@property --tw-contrast {
  syntax: "*";
  inherits: false
}

@property --tw-grayscale {
  syntax: "*";
  inherits: false
}

@property --tw-hue-rotate {
  syntax: "*";
  inherits: false
}

@property --tw-invert {
  syntax: "*";
  inherits: false
}

@property --tw-opacity {
  syntax: "*";
  inherits: false
}

@property --tw-saturate {
  syntax: "*";
  inherits: false
}

@property --tw-sepia {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-color {
  syntax: "*";
  inherits: false
}

@property --tw-drop-shadow-alpha {
  syntax: "<percentage>";
  inherits: false;
  initial-value: 100%;
}

@property --tw-drop-shadow-size {
  syntax: "*";
  inherits: false
}

/*# sourceMappingURL=app_globals_0jn8.0u.css.map*/