/* base.css — Shared base styles for non-service pages.
 * Pages needing different values can override in their own :root or inline style.
 */

:root {
  --card: #0a0a0a;
  --ring: #52525b;
  --input: #27272a;
  --muted: #18181b;
  --border: #27272a;
  --radius: 0.625rem;
  --popover: #0a0a0a;
  --primary: #fafafa;
  --secondary: #27272a;
  --background: #121212;
  --foreground: #fafafa;
  --destructive: #7f1d1d;
  --muted-foreground: #87867f;
  --accent-foreground: #fafafa;
  --popover-foreground: #fafafa;
  --primary-foreground: #18181b;
  --secondary-foreground: #fafafa;
  --font-sans: 'degular-thin', ui-sans-serif, system-ui, -apple-system, sans-serif;
  --font-mono: 'degular-thin', 'Fira Code', ui-monospace, monospace;
  --accent: #2BC8B7;
}

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

html { font-size: 16px; scroll-behavior: smooth; overflow-x: hidden; }

body {
  font-family: var(--font-sans);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

a { text-decoration: none; color: inherit; }

img { display: block; max-width: 100%; }

ul { list-style: none; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

:focus-visible { outline: 2px solid #2BC8B7; outline-offset: 3px; border-radius: 3px; }
:focus:not(:focus-visible) { outline: none; }

.container { width: 100%; max-width: 68rem; margin-inline: auto; padding-inline: 1.5rem; }

/* Entrance animations */
@keyframes blur-in-up {
  from { opacity: 0; filter: blur(8px); transform: translateY(18px); }
  to   { opacity: 1; filter: blur(0);     transform: translateY(0); }
}
.anim   { animation: blur-in-up 0.65s cubic-bezier(0.22, 1, 0.36, 1) both; }
.anim-1 { animation-delay: 0.05s; }
.anim-2 { animation-delay: 0.18s; }
.anim-3 { animation-delay: 0.32s; }
.anim-4 { animation-delay: 0.46s; }
.anim-5 { animation-delay: 0.60s; }
