:root {
  --navy: #0B1B3A;
  --accent: #FFC83D;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html, body {
  height: 100%;
  margin: 0 !important;
  padding: 0 !important;
}

header.om-hero {
  margin-top: 0 !important;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  background-color: #ffffff;
  color: #1f2937;
  line-height: 1.6;
}

/* Utility Classes */
.om-hero {
  background: linear-gradient(135deg, #0B1B3A 0%, #1a3a52 100%);
  color: white;
}

.om-card {
  background: white;
  border: 1px solid #e5e7eb;
  border-radius: 0.75rem;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  transition: box-shadow 0.3s ease;
}

.om-card:hover {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.om-button {
  display: inline-block;
  padding: 0.75rem 1.5rem;
  background-color: #FFC83D;
  color: #000;
  border: none;
  border-radius: 9999px;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.om-button:hover {
  background-color: #ffb300;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 200, 61, 0.3);
}

.om-button-dark {
  background-color: transparent;
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.om-button-dark:hover {
  background-color: rgba(255, 255, 255, 0.1);
  border-color: #FFC83D;
}

.om-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background-color: rgba(255, 200, 61, 0.1);
  color: #ffffff;
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 500;
}

.om-gradient-band {
  background: linear-gradient(120deg, rgba(11, 27, 58, 0.05), rgba(255, 200, 61, 0.1));
}

.om-footer {
  background-color: #0B1B3A;
}

/* Layout Utilities */
.hover-scale {
  transition: transform 0.3s ease;
}

.hover-scale:hover {
  transform: scale(1.05);
}

.hover-lift {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.hover-glow:hover {
  filter: brightness(1.1);
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

[data-reveal] {
  animation: fadeIn 0.6s ease-out forwards;
}

/* Typography */
.font-display {
  font-family: inherit;
  font-weight: 700;
}

/* Responsive */
@media (max-width: 768px) {
  .om-button {
    padding: 0.625rem 1.25rem;
    font-size: 0.875rem;
  }
}

