/* Styling for the static SEO hero in index.html (the pre-mount fallback that lives
   inside #root). It is a linked file, not inline, because the CSP is `style-src 'self'`
   with no unsafe-inline (see public/_headers) so inline <style>/style="" would be blocked.
   Vite copies public/ to the dist root, so this ships as /seo-hero.css.

   React (createRoot) replaces the whole hero on mount, so these rules only ever apply
   pre-hydration and to no-JS / crawler visits. Self-contained (no dependency on the app's
   token bundle) so it paints without waiting on the larger app stylesheet, but the palette,
   4/8pt spacing, type scale and AA-contrast accents mirror the app + /looks/ catalog.

   LIGHT ONLY, on purpose. The app's dark theme is applied via :root[data-theme="dark"]
   (a JS-set attribute, see src/ui/styles/tokens.css), NOT prefers-color-scheme. That
   attribute does not exist until React mounts, so pre-mount the body is always the light
   --bg (#f2f2f7) even on a dark-mode device. A prefers-color-scheme dark block here would
   render light text on that light background and vanish. So the hero matches the app's
   real pre-mount state: light. Colors below clear WCAG AA on #f2f2f7. */

.seo-hero {
  max-width: 34rem;
  margin: 0 auto;
  padding: 12vh 1.5rem 4rem;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
  color: #1c1c1e;
  line-height: 1.5;
  text-align: center;
  -webkit-font-smoothing: antialiased;
}
.seo-hero__mark {
  display: block;
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  border-radius: 14px;
}
.seo-hero__brand {
  margin: 0 0 0.5rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #636366;
}
.seo-hero__title {
  margin: 0 0 1rem;
  font-size: clamp(1.875rem, 6vw, 2.5rem);
  line-height: 1.1;
  font-weight: 700;
  letter-spacing: -0.01em;
}
.seo-hero__lede {
  margin: 0 auto 1.5rem;
  max-width: 30rem;
  font-size: 1.0625rem;
  color: #3a3a3c;
}
.seo-hero__meta {
  margin: 0 0 3rem;
  font-size: 0.9375rem;
  color: #636366;
}
.seo-hero__looks-h {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #636366;
}
.seo-hero__chips {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: center;
}
.seo-hero__chips a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  padding: 0.5rem 1.25rem;
  border: 1px solid rgba(60, 60, 67, 0.18);
  border-radius: 999px;
  color: #1c1c1e;
  font-size: 0.9375rem;
  text-decoration: none;
}
.seo-hero__all {
  display: inline-block;
  min-height: 44px;
  padding: 0.5rem 0;
  font-weight: 600;
  color: #b45309;
}
.seo-hero a:hover {
  text-decoration: underline;
}
.seo-hero__noscript {
  margin: 1.5rem 0 0;
  font-size: 0.9375rem;
  color: #636366;
}
.seo-hero__noscript a {
  color: #b45309;
}
.seo-hero__footer {
  margin: 3rem 0 0;
  font-size: 0.8125rem;
  color: #8e8e93;
}
.seo-hero__footer p {
  margin: 0.25rem 0;
}
.seo-hero__footer a {
  color: #636366;
}
