/* =========================================================================
   عزو (AZU) — Supply Platform Styles
   -------------------------------------------------------------------------
   This file is a plain-CSS translation of the Tailwind utility classes used
   in app.jsx. Every selector here matches a className used in the markup
   EXACTLY (e.g. `bg-[#0F141C]/60`, `hover:border-[#10B981]`), so no
   Tailwind build step / CDN is required — this file alone reproduces the
   original design pixel-for-pixel.
   If you redesign in Claude Design, you can freely rename classes and
   rewrite these rules; the JSX only depends on the class *names* matching.
   ========================================================================= */

/* --- Reset & base element styles ---------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
body { margin: 0; font-family: ui-sans-serif, system-ui, -apple-system, 'Segoe UI', Tahoma, Arial, sans-serif; }
button, input, select { font: inherit; color: inherit; margin: 0; }
button { background-color: transparent; background-image: none; border: 0; padding: 0; cursor: pointer; text-align: inherit; }
input, select { appearance: auto; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
.focus\:outline-none:focus { outline: none; }

/* --- Animations ----------------------------------------------------------
   Used for: step-change fade-in, the success-state pulse ring,
   and the "sending..." three-dot bounce. */
@keyframes fadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }
@keyframes pulse { 0%, 100% { opacity: 1; } 50% { opacity: 0.7; } }
@keyframes bounce { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }
.animate-fadeIn { animation: fadeIn 0.3s ease-out; }
.animate-pulse { animation: pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite; }
.animate-bounce { animation: bounce 1s infinite; }

/* --- Utility classes (layout, color, spacing, typography) ---------------
   Alphabetical, one utility per class — same convention as Tailwind.
   Colors are the exact brand hexes from the original design:
   emerald #10B981, cyan #06B6D4, near-black #07090E/#0F141C,
   slate border #1E293B, muted text #94A3B8. */
.absolute { position: absolute; }
.accent-\[\#10B981\] { accent-color: #10B981; }
.backdrop-blur { backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px); }
.backdrop-blur-md { backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px); }
.backdrop-blur-sm { backdrop-filter: blur(4px); -webkit-backdrop-filter: blur(4px); }
.bg-\[\#06B6D4\] { background-color: #06B6D4; }
.bg-\[\#06B6D4\]\/10 { background-color: rgba(6, 182, 212, 0.1); }
.bg-\[\#07090E\]\/40 { background-color: rgba(7, 9, 14, 0.4); }
.bg-\[\#0F141C\] { background-color: #0F141C; }
.bg-\[\#0F141C\]\/40 { background-color: rgba(15, 20, 28, 0.4); }
.bg-\[\#0F141C\]\/50 { background-color: rgba(15, 20, 28, 0.5); }
.bg-\[\#0F141C\]\/60 { background-color: rgba(15, 20, 28, 0.6); }
.bg-\[\#0F141C\]\/95 { background-color: rgba(15, 20, 28, 0.95); }
.bg-\[\#10B981\] { background-color: #10B981; }
.bg-\[\#10B981\]\/10 { background-color: rgba(16, 185, 129, 0.1); }
.bg-\[\#1E293B\] { background-color: #1E293B; }
.bg-\[\#1E293B\]\/30 { background-color: rgba(30, 41, 59, 0.3); }
.bg-black\/60 { background-color: rgba(0, 0, 0, 0.6); }
.bg-clip-text { -webkit-background-clip: text; background-clip: text; }
.bg-gradient-to-br { background-image: linear-gradient(to bottom right, var(--tw-from, transparent), var(--tw-to, transparent)); }
.bg-gradient-to-r { background-image: linear-gradient(to right, var(--tw-from, transparent), var(--tw-to, transparent)); }
.bg-red-500\/10 { background-color: rgba(239, 68, 68, 0.1); }
.block { display: block; }
.blur-3xl { filter: blur(64px); }
.border { border-width: 1px; border-style: solid; border-color: #e5e7eb; }
.border-2 { border-width: 2px; border-style: solid; }
.border-\[\#10B981\] { border-color: #10B981; }
.border-\[\#10B981\]\/30 { border-color: rgba(16, 185, 129, 0.3); }
.border-\[\#1E293B\] { border-color: #1E293B; }
.border-\[\#1E293B\]\/50 { border-color: rgba(30, 41, 59, 0.5); }
.border-b { border-bottom-width: 1px; border-bottom-style: solid; }
.border-red-500 { border-color: #EF4444; }
.border-red-500\/30 { border-color: rgba(239, 68, 68, 0.3); }
.border-t { border-top-width: 1px; border-top-style: solid; }
.bottom-20 { bottom: 5rem; }
.cursor-pointer { cursor: pointer; }
.duration-300 { transition-duration: 300ms; }
.fixed { position: fixed; }
.flex { display: flex; }
.font-bold { font-weight: 700; }
.font-medium { font-weight: 500; }
.font-semibold { font-weight: 600; }
.from-\[\#06B6D4\] { --tw-from: #06B6D4; }
.from-\[\#07090E\] { --tw-from: #07090E; }
.from-\[\#10B981\] { --tw-from: #10B981; }
.from-\[\#10B981\]\/30 { --tw-from: rgba(16, 185, 129, 0.3); }
.gap-2 { gap: 0.5rem; }
.gap-3 { gap: 0.75rem; }
.gap-4 { gap: 1rem; }
.gap-8 { gap: 2rem; }
.grid { display: grid; }
.grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.h-1\.5 { height: 0.375rem; }
.h-10 { height: 2.5rem; }
.h-14 { height: 3.5rem; }
.h-20 { height: 5rem; }
.h-3 { height: 0.75rem; }
.h-4 { height: 1rem; }
.h-40 { height: 10rem; }
.h-5 { height: 1.25rem; }
.h-6 { height: 1.5rem; }
.h-7 { height: 1.75rem; }
.h-8 { height: 2rem; }
.h-80 { height: 20rem; }
.h-96 { height: 24rem; }
.h-full { height: 100%; }
.inline-block { display: inline-block; }
.inline-flex { display: inline-flex; }
.inset-0 { top: 0; right: 0; bottom: 0; left: 0; }
.items-center { align-items: center; }
.justify-between { justify-content: space-between; }
.justify-center { justify-content: center; }
.justify-end { justify-content: flex-end; }
.left-20 { left: 5rem; }
.max-h-\[90vh\] { max-height: 90vh; }
.max-w-2xl { max-width: 42rem; }
.max-w-5xl { max-width: 64rem; }
.max-w-6xl { max-width: 72rem; }
.max-w-7xl { max-width: 80rem; }
.mb-1 { margin-bottom: 0.25rem; }
.mb-12 { margin-bottom: 3rem; }
.mb-16 { margin-bottom: 4rem; }
.mb-2 { margin-bottom: 0.5rem; }
.mb-3 { margin-bottom: 0.75rem; }
.mb-4 { margin-bottom: 1rem; }
.mb-6 { margin-bottom: 1.5rem; }
.mb-8 { margin-bottom: 2rem; }
@media (min-width: 768px) { .md\:grid-cols-2 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (min-width: 768px) { .md\:grid-cols-4 { grid-template-columns: repeat(4, minmax(0, 1fr)); } }
.min-h-screen { min-height: 100vh; }
.mr-1 { margin-right: 0.25rem; }
.mt-1 { margin-top: 0.25rem; }
.mt-8 { margin-top: 2rem; }
.mx-auto { margin-left: auto; margin-right: auto; }
.opacity-0 { opacity: 0; }
.opacity-30 { opacity: 0.3; }
.overflow-hidden { overflow: hidden; }
.overflow-y-auto { overflow-y: auto; }
.p-2 { padding: 0.5rem; }
.p-4 { padding: 1rem; }
.p-6 { padding: 1.5rem; }
.p-8 { padding: 2rem; }
.pt-6 { padding-top: 1.5rem; }
.px-4 { padding-left: 1rem; padding-right: 1rem; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.px-8 { padding-left: 2rem; padding-right: 2rem; }
.py-12 { padding-top: 3rem; padding-bottom: 3rem; }
.py-16 { padding-top: 4rem; padding-bottom: 4rem; }
.py-2 { padding-top: 0.5rem; padding-bottom: 0.5rem; }
.py-20 { padding-top: 5rem; padding-bottom: 5rem; }
.py-3 { padding-top: 0.75rem; padding-bottom: 0.75rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.relative { position: relative; }
.right-0 { right: 0; }
.right-40 { right: 10rem; }
.rounded { border-radius: 0.25rem; }
.rounded-full { border-radius: 9999px; }
.rounded-lg { border-radius: 0.5rem; }
.rounded-xl { border-radius: 0.75rem; }
.shadow-2xl { box-shadow: 0 25px 50px -12px rgba(0,0,0,0.25); }
.space-y-2 > * + * { margin-top: 0.5rem; }
.space-y-3 > * + * { margin-top: 0.75rem; }
.space-y-4 > * + * { margin-top: 1rem; }
.sticky { position: sticky; }
.text-2xl { font-size: 1.5rem; line-height: 2rem; }
.text-3xl { font-size: 1.875rem; line-height: 2.25rem; }
.text-5xl { font-size: 3rem; line-height: 1; }
.text-\[\#06B6D4\] { color: #06B6D4; }
.text-\[\#07090E\] { color: #07090E; }
.text-\[\#10B981\] { color: #10B981; }
.text-\[\#64748B\] { color: #64748B; }
.text-\[\#94A3B8\] { color: #94A3B8; }
.text-\[\#F8FAFC\] { color: #F8FAFC; }
.text-center { text-align: center; }
.text-lg { font-size: 1.125rem; line-height: 1.75rem; }
.text-red-400 { color: #F87171; }
.text-red-500 { color: #EF4444; }
.text-sm { font-size: 0.875rem; line-height: 1.25rem; }
.text-transparent { color: transparent; -webkit-text-fill-color: transparent; }
.text-white { color: #FFFFFF; }
.text-xl { font-size: 1.25rem; line-height: 1.75rem; }
.text-xs { font-size: 0.75rem; line-height: 1rem; }
.to-\[\#059669\] { --tw-to: #059669; }
.to-\[\#06B6D4\] { --tw-to: #06B6D4; }
.to-\[\#06B6D4\]\/30 { --tw-to: rgba(6, 182, 212, 0.3); }
.to-\[\#07090E\] { --tw-to: #07090E; }
.to-\[\#0891B2\] { --tw-to: #0891B2; }
.to-\[\#10B981\] { --tw-to: #10B981; }
.top-0 { top: 0; }
.top-20 { top: 5rem; }
.transition-all { transition-property: all; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-colors { transition-property: color, background-color, border-color; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.transition-opacity { transition-property: opacity; transition-timing-function: cubic-bezier(0.4,0,0.2,1); transition-duration: 150ms; }
.via-\[\#0F141C\] { --tw-via: #0F141C; background-image: linear-gradient(to bottom right, var(--tw-from, transparent), #0F141C, var(--tw-to, transparent)); }
.w-10 { width: 2.5rem; }
.w-14 { width: 3.5rem; }
.w-20 { width: 5rem; }
.w-3 { width: 0.75rem; }
.w-4 { width: 1rem; }
.w-40 { width: 10rem; }
.w-5 { width: 1.25rem; }
.w-6 { width: 1.5rem; }
.w-7 { width: 1.75rem; }
.w-8 { width: 2rem; }
.w-80 { width: 20rem; }
.w-96 { width: 24rem; }
.w-full { width: 100%; }
.z-10 { z-index: 10; }
.z-40 { z-index: 40; }
.z-50 { z-index: 50; }
/* --- Interactive states (hover / focus / disabled / group-hover) --------
   These are emitted after the base rules on purpose: same CSS specificity,
   so putting them last lets the state win in the cascade. Keep any new
   state rules below the base rules they modify. */
.disabled\:cursor-not-allowed:disabled { cursor: not-allowed; }
.disabled\:opacity-50:disabled { opacity: 0.5; }
.focus\:border-\[\#06B6D4\]:focus { border-color: #06B6D4; }
.focus\:border-red-500:focus { border-color: #EF4444; }
.group:hover .group-hover\:opacity-20 { opacity: 0.2; }
.hover\:bg-\[\#0F141C\]\/60:hover { background-color: rgba(15, 20, 28, 0.6); }
.hover\:bg-\[\#0F141C\]\/70:hover { background-color: rgba(15, 20, 28, 0.7); }
.hover\:bg-\[\#0F141C\]\/80:hover { background-color: rgba(15, 20, 28, 0.8); }
.hover\:bg-\[\#1E293B\]:hover { background-color: #1E293B; }
.hover\:bg-\[\#1E293B\]\/50:hover { background-color: rgba(30, 41, 59, 0.5); }
.hover\:border-\[\#06B6D4\]:hover { border-color: #06B6D4; }
.hover\:border-\[\#06B6D4\]\/50:hover { border-color: rgba(6, 182, 212, 0.5); }
.hover\:border-\[\#094B45\]\/50:hover { border-color: rgba(9, 75, 69, 0.5); }
.hover\:border-\[\#10B981\]:hover { border-color: #10B981; }
.hover\:border-\[\#10B981\]\/50:hover { border-color: rgba(16, 185, 129, 0.5); }
.hover\:shadow-\[\#06B6D4\]\/50:hover { --tw-shadow-color: rgba(6, 182, 212, 0.5); box-shadow: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); }
.hover\:shadow-\[\#10B981\]\/50:hover { --tw-shadow-color: rgba(16, 185, 129, 0.5); box-shadow: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color); }
.hover\:shadow-lg:hover { box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1), 0 4px 6px -4px rgba(0,0,0,0.1); }
.placeholder-\[\#64748B\]::placeholder { color: #64748B; }