/*
 * Pre-hydration app shell: paints a static header + skeleton before React mounts.
 * Shared by every Vite HTML entry (index.html, pricing/index.html).
 * Colors mirror the Tailwind tokens in packages/ui/src/styles/globals.css.
 */
:root {
  color-scheme: light;
  --eb-shell-bg: #ffffff;
  --eb-shell-fg: #09090b;
  --eb-shell-muted: #71717a;
  --eb-shell-border: rgba(0, 0, 0, 0.08);
  --eb-shell-primary: #007994;
}
body {
  background-color: var(--eb-shell-bg);
  color: var(--eb-shell-fg);
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
}
.eb-shell {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-color: var(--eb-shell-bg);
}
.eb-shell-nav {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--eb-shell-border);
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(8px);
  width: 100%;
  box-sizing: border-box;
}
.eb-shell-inner {
  max-width: 1152px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 12px;
  box-sizing: border-box;
}
@media (min-width: 640px) {
  .eb-shell-inner {
    padding: 16px 24px;
  }
}
.eb-shell-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 16px;
  color: var(--eb-shell-fg);
  text-decoration: none;
}
.eb-shell-brand svg {
  flex-shrink: 0;
}
.eb-shell-brand-text {
  display: none;
}
@media (min-width: 640px) {
  .eb-shell-brand-text {
    display: inline;
  }
}
.eb-shell-links {
  display: none;
  align-items: center;
  gap: 24px;
}
@media (min-width: 768px) {
  .eb-shell-links {
    display: flex;
  }
}
.eb-shell-link {
  font-size: 14px;
  color: var(--eb-shell-muted);
  text-decoration: none;
}
.eb-shell-link:hover,
.eb-shell-link:focus-visible {
  color: var(--eb-shell-fg);
}
.eb-shell-actions {
  display: flex;
  align-items: center;
  gap: 4px;
}
@media (min-width: 640px) {
  .eb-shell-actions {
    gap: 12px;
  }
}
.eb-shell-btn-ghost,
.eb-shell-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  font-size: 0.8rem;
  font-weight: 500;
  padding: 0 10px;
  border-radius: 8px;
  box-sizing: border-box;
  white-space: nowrap;
  text-decoration: none;
}
.eb-shell-btn-ghost {
  color: var(--eb-shell-fg);
}
.eb-shell-btn-primary {
  color: #ffffff;
  background: var(--eb-shell-primary);
}
.eb-shell-hero {
  max-width: 896px;
  margin: 48px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}
.eb-pulse {
  background: #f4f4f5;
  border-radius: 8px;
  transform: translateZ(0);
  will-change: opacity;
}
@media (prefers-reduced-motion: no-preference) {
  .eb-pulse {
    animation: eb-pulse 2s cubic-bezier(0.4, 0, 0.6, 1) infinite;
  }
}
@keyframes eb-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.5; }
}
