/* Standalone styles for canonical-bridge + flat-redirect pages emitted by
 * build-plugins/constants.ts (buildCanonicalBridgePage, buildFlatRedirect).
 *
 * These pages render BEFORE the SPA bundle loads (and may not load it at
 * all — they're thin "this URL has a canonical version" cards). They use
 * hardcoded hex colors instead of var(--color-*) tokens so they render
 * correctly without depending on the SPA stylesheet.
 *
 * Loaded via:
 *   <link rel="stylesheet" href="/assets/bridge.css?v=${BUILD_ID}">
 *
 * Why external: each bridge inlined ~1.5 KB of identical CSS. With ~14k
 * legacy-bridge + alias + canton-orphan pages emitted across dist, the
 * external file deduplicates ~21 MB.
 */

* { margin: 0; padding: 0; box-sizing: border-box; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: #f8fafc;
  color: #334155;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 16px;
}
.card {
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 4px 6px rgba(50, 50, 93, .11), 0 1px 3px rgba(0, 0, 0, .08);
  max-width: 480px;
  width: 100%;
  padding: 32px 24px;
  text-align: center;
}
.logo {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 20px;
}
.logo svg { width: 28px; height: 28px; }
.logo span { font-size: 16px; font-weight: 700; color: #1e293b; }
h1 {
  font-size: 20px;
  font-weight: 700;
  color: #1e293b;
  margin-bottom: 8px;
  line-height: 1.3;
}
p {
  font-size: 14px;
  color: #64748b;
  line-height: 1.6;
  margin-bottom: 16px;
}
.btn {
  display: inline-block;
  background: #533afd;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  padding: 10px 24px;
  border-radius: 6px;
  text-decoration: none;
  transition: background .15s;
}
.btn:hover { background: #4529e6; }
.footer {
  margin-top: 24px;
  font-size: 12px;
  color: #94a3b8;
}
