body { font-family: 'Inter', sans-serif; background-color: var(--aa-ground); color: var(--aa-ink); }
.font-orbitron { font-family: 'Orbitron', sans-serif; }
.glass-card { background: var(--aa-surface); border: 1px solid var(--aa-rule); box-shadow: 0 10px 30px rgba(30,27,22,.08); }
.status-badge { display: inline-block; padding: 2px 8px; border-radius: 9999px; font-size: 12px; border: 1px solid var(--aa-rule-strong); }
.status-Approved { background: var(--aa-documented-tint); color: var(--aa-documented); border-color: var(--aa-documented-line); }
.status-Unconfirmed { background: var(--aa-contested-tint); color: var(--aa-contested); border-color: var(--aa-contested-line); }
.status-Proposed { background: var(--aa-well-tint); color: var(--aa-well); border-color: var(--aa-well-line); }
.status-Rejected { background: var(--aa-unsupported-tint); color: var(--aa-unsupported); border-color: var(--aa-unsupported-line); }
.progress-wrap { background: var(--aa-surface-2); height: 10px; border-radius: 9999px; overflow: hidden; border: 1px solid var(--aa-rule); }
.progress-bar { height: 100%; background: linear-gradient(90deg, var(--aa-ok), #2f9d5c); }
.truncate-2 { display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }

/* Offline stand-in for Tailwind utilities used by mars-arena/index.html */
:root { color-scheme: light; }
* { box-sizing: border-box; }
body { margin: 0; font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; background: var(--aa-ground); color: var(--aa-ink); }
a { color: inherit; text-decoration: none; }
.container { width: 100%; max-width: 1120px; margin: 0 auto; }
.mx-auto { margin-left: auto; margin-right: auto; }
.px-6 { padding-left: 1.5rem; padding-right: 1.5rem; }
.py-4 { padding-top: 1rem; padding-bottom: 1rem; }
.py-8 { padding-top: 2rem; padding-bottom: 2rem; }
.p-3 { padding: .75rem; } .p-4 { padding: 1rem; } .p-5 { padding: 1.25rem; } .p-6 { padding: 1.5rem; }
.pt-24 { padding-top: 6rem; }
.mb-1 { margin-bottom: .25rem; } .mb-4 { margin-bottom: 1rem; } .mb-6 { margin-bottom: 1.5rem; }
.mt-1 { margin-top: .25rem; } .mt-2 { margin-top: .5rem; } .mt-3 { margin-top: .75rem; } .mt-4 { margin-top: 1rem; }
.gap-2 { gap: .5rem; } .gap-3 { gap: .75rem; } .gap-6 { gap: 1.5rem; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; } .flex-1 { flex: 1 1 0%; }
.items-center { align-items: center; } .items-start { align-items: flex-start; }
.justify-between { justify-content: space-between; } .justify-center { justify-content: center; }
.grid { display: grid; } .hidden { display: none !important; }
.fixed { position: fixed; } .sticky { position: sticky; } .relative { position: relative; }
.inset-0 { inset: 0; } .top-0 { top: 0; } .top-24 { top: 6rem; } .left-0 { left: 0; } .right-0 { right: 0; }
.z-50 { z-index: 50; } .z-\[100\] { z-index: 100; }
.w-full { width: 100%; } .w-5 { width: 1.25rem; } .w-28 { width: 7rem; } .w-8 { width: 2rem; }
.h-5 { height: 1.25rem; } .h-8 { height: 2rem; } .h-28 { height: 7rem; }
.min-w-full { min-width: 100%; }
.max-w-3xl { max-width: 48rem; }
.overflow-hidden { overflow: hidden; } .overflow-x-auto { overflow-x: auto; }
.rounded { border-radius: .25rem; } .rounded-md { border-radius: .375rem; }
.rounded-lg { border-radius: .5rem; } .rounded-xl { border-radius: .75rem; }
.rounded-2xl { border-radius: 1rem; } .rounded-full { border-radius: 9999px; }
.border { border: 1px solid var(--aa-rule); }
.border-b { border-bottom: 1px solid var(--aa-rule); }
.border-t { border-top: 1px solid var(--aa-rule); }
.border-gray-700 { border-color: var(--aa-rule-strong); } .border-gray-800 { border-color: var(--aa-rule); }
.bg-black\/40 { background: rgba(250,248,243,.55); } .bg-black\/80 { background: rgba(250,248,243,.85); }
.bg-gray-800 { background: var(--aa-surface-2); } .bg-gray-800\/70 { background: rgba(242,238,229,.7); }
.bg-gray-900 { background: var(--aa-surface); } .bg-gray-900\/50 { background: rgba(255,255,255,.6); }
.bg-gray-900\/60 { background: rgba(255,255,255,.75); } .bg-gray-950 { background: var(--aa-ground); }
.bg-\[\#0D0D11\] { background: var(--aa-ground) !important; }
/* Keep the in-app header below the shared product nav */
header.fixed.top-0 { top: var(--aa-nav-h); }
.bg-green-500 { background: var(--aa-ok); } .bg-green-700 { background: #14663a; }
.backdrop-blur-md { backdrop-filter: blur(12px); } .backdrop-blur-sm { backdrop-filter: blur(6px); }
.text-left { text-align: left; } .text-center { text-align: center; }
.text-xs { font-size: .75rem; } .text-sm { font-size: .875rem; }
.text-lg { font-size: 1.125rem; } .text-xl { font-size: 1.25rem; }
.text-2xl { font-size: 1.5rem; } .font-semibold { font-weight: 600; } .font-bold { font-weight: 700; }
.text-white { color: var(--aa-ink); } .text-black { color: var(--aa-ink); }
.text-gray-200 { color: var(--aa-ink); } .text-gray-300 { color: var(--aa-ink-2); }
.text-gray-400 { color: var(--aa-muted); } .text-gray-500 { color: var(--aa-faint); }
.text-green-300 { color: var(--aa-ok); } .text-green-400 { color: var(--aa-ok); }
.tracking-wider { letter-spacing: .05em; }
.shadow-xl { box-shadow: 0 20px 25px rgba(30,27,22,.12); }
.object-cover { object-fit: cover; }
.divide-y > :not([hidden]) ~ :not([hidden]) { border-top: 1px solid var(--aa-rule); }
.hover\:bg-gray-700:hover { background: var(--aa-surface-2); }
.hover\:bg-gray-900\/40:hover { background: rgba(255,255,255,.5); }
.hover\:underline:hover { text-decoration: underline; }
.hover\:text-white:hover { color: var(--aa-ink); }
.hover\:text-green-300:hover { color: var(--aa-ok); }
.disabled\:opacity-50:disabled { opacity: .5; }
.space-y-2 > * + * { margin-top: .5rem; } .space-y-3 > * + * { margin-top: .75rem; } .space-y-4 > * + * { margin-top: 1rem; }
.cta-button { cursor: pointer; border: 0; }
button, select, input { font: inherit; }
input, select, button { color: inherit; }
.ma-mark { display:inline-flex; width:2rem; height:2rem; align-items:center; justify-content:center; border-radius:.4rem; background:var(--aa-ok); color:#fff; font-weight:800; font-size:.7rem; }
.grid-cols-1 { grid-template-columns: 1fr; }
@media (min-width: 768px) {
  .md\:text-2xl { font-size: 1.5rem; } .md\:text-3xl { font-size: 1.875rem; }
  .md\:grid-cols-3 { grid-template-columns: repeat(3,1fr); }
  .md\:grid-cols-5 { grid-template-columns: repeat(5,1fr); }
  .md\:col-span-2 { grid-column: span 2; }
}
@media (min-width: 1024px) {
  .lg\:grid-cols-3 { grid-template-columns: repeat(3,1fr); }
  .lg\:col-span-1 { grid-column: span 1; } .lg\:col-span-2 { grid-column: span 2; }
}
