:root {
  color-scheme: light;
}

/* Small utility shims used by the TSX (Tailwind plugin equivalents). */

.pb-safe {
  padding-bottom: env(safe-area-inset-bottom);
}

.scrollbar-hide::-webkit-scrollbar {
  display: none;
}
.scrollbar-hide {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.no-scrollbar::-webkit-scrollbar {
  display: none;
}
.no-scrollbar {
  -ms-overflow-style: none;
  scrollbar-width: none;
}

.line-clamp-1,
.line-clamp-2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.line-clamp-1 {
  -webkit-line-clamp: 1;
}
.line-clamp-2 {
  -webkit-line-clamp: 2;
}

.text-gradient {
  background: linear-gradient(90deg, #0b3444 0%, #115e59 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.premium-shadow {
  box-shadow:
    0 28px 60px -24px rgba(11, 52, 68, 0.22),
    0 12px 24px -16px rgba(17, 94, 89, 0.18);
}

@keyframes oc-shine {
  0% {
    transform: skewX(12deg) translateX(-120%);
  }
  100% {
    transform: skewX(12deg) translateX(120%);
  }
}

.animate-shine {
  animation: oc-shine 2.2s linear infinite;
}

/* tailwindcss-animate style shims (avoid clobbering Tailwind's transition durations). */

.animate-in {
  animation-timing-function: cubic-bezier(0.16, 1, 0.3, 1);
  animation-fill-mode: both;
}

.animate-in.duration-200 {
  animation-duration: 200ms;
}
.animate-in.duration-300 {
  animation-duration: 300ms;
}
.animate-in.duration-500 {
  animation-duration: 500ms;
}
.animate-in.duration-700 {
  animation-duration: 700ms;
}
.animate-in.duration-1000 {
  animation-duration: 1000ms;
}

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

@keyframes oc-zoom-in {
  from {
    opacity: 0;
    transform: scale(0.98);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes oc-zoom-in-95 {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes oc-slide-in-from-top-2 {
  from {
    opacity: 0;
    transform: translateY(-0.5rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes oc-slide-in-from-top-4 {
  from {
    opacity: 0;
    transform: translateY(-1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes oc-slide-in-from-bottom-4 {
  from {
    opacity: 0;
    transform: translateY(1rem);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes oc-slide-in-from-right-4 {
  from {
    opacity: 0;
    transform: translateX(1rem);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.fade-in {
  animation-name: oc-fade-in;
}

.zoom-in {
  animation-name: oc-zoom-in;
}

.zoom-in-95 {
  animation-name: oc-zoom-in-95;
}

.slide-in-from-top-2 {
  animation-name: oc-slide-in-from-top-2;
}

.slide-in-from-top-4 {
  animation-name: oc-slide-in-from-top-4;
}

.slide-in-from-bottom-4 {
  animation-name: oc-slide-in-from-bottom-4;
}

.slide-in-from-right-4 {
  animation-name: oc-slide-in-from-right-4;
}

@keyframes oc-gradient {
  0% {
    background-position: 0% 50%;
  }
  50% {
    background-position: 100% 50%;
  }
  100% {
    background-position: 0% 50%;
  }
}

.animate-gradient {
  animation: oc-gradient 6s ease infinite;
}

@media (prefers-reduced-motion: reduce) {
  .animate-shine,
  .animate-in,
  .animate-gradient {
    animation: none !important;
  }
}

/* Minimal Typography (Tailwind Typography plugin substitute for static previews). */

.prose {
  color: #0b3444;
  line-height: 1.75;
}

.prose h1,
.prose h2,
.prose h3,
.prose h4 {
  color: #0b3444;
  font-weight: 800;
  line-height: 1.2;
}

.prose h1 {
  font-size: 2rem;
  margin: 0.6em 0 0.3em;
}

.prose h2 {
  font-size: 1.5rem;
  margin: 1.2em 0 0.4em;
}

.prose h3 {
  font-size: 1.25rem;
  margin: 1.1em 0 0.4em;
}

.prose p {
  margin: 0.75em 0;
  color: #4b5563;
}

.prose ul {
  margin: 0.75em 0;
  padding-left: 1.25em;
}

.prose li {
  margin: 0.25em 0;
  color: #4b5563;
}

.prose a {
  color: #115e59;
  text-decoration: underline;
  text-underline-offset: 3px;
}
