/*
Theme Name: Webby SG
Theme URI: https://webby.sg
Author: Webby SG
Description: Pixel-faithful WordPress theme cloned from the Webby SG design system. Dark, conversion-focused marketing site with an Article (blog) custom post type managed via ACF fields. Marketing-page content and blog articles are editable from the WordPress admin.
Version: 1.0.0
Requires at least: 6.4
Requires PHP: 8.0
License: Proprietary
Text Domain: webby-sg
*/

/* ──────────────────────────────────────────────────────────────
   This theme reproduces the original design's INLINE styling
   verbatim inside each PHP template, so the rendered markup is
   visually identical to the source. This stylesheet only holds
   global resets, font wiring and a few utilities that the inline
   styles assume. Do not "tidy" the inline styles into classes —
   that is what guarantees pixel fidelity.
   ────────────────────────────────────────────────────────────── */

html, body { margin: 0; padding: 0; background: #08111C; }
* { box-sizing: border-box; }
body { font-family: 'Instrument Sans', sans-serif; color: #EAF2F8; -webkit-font-smoothing: antialiased; }
img { max-width: 100%; }
a { color: inherit; }

/* WordPress admin bar must not cover the sticky nav */
@media screen and (max-width: 782px) { html { margin-top: 0 !important; } }

@keyframes wbRise { from { opacity: 0; transform: translateY(22px); } to { opacity: 1; transform: none; } }
@keyframes wbDotBlink { 0%, 100% { opacity: 1; } 50% { opacity: .35; } }

/* Hide default WP page title where templates supply their own hero */
.wsg-template .entry-title { position: absolute; left: -9999px; }
