/*
Theme Name: RUCF — Refined User-Centric Framework
Theme URI: https://rucf.example.com
Author: RUCF
Author URI: https://rucf.example.com
Description: A monochrome, accessibility-first WordPress theme for the Refined User-Centric Framework (RUCF). Pure-black agency aesthetic, oversized grotesk type, iridescent glass objects, and 1.5px line icons — built to advertise UX as a service. Pairs with the RUCF Scorecard plugin.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.6
Requires PHP: 7.4
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: rucf
Tags: one-column, custom-colors, custom-logo, custom-menu, featured-images, threaded-comments, translation-ready, accessibility-ready
*/

/*
 * The full design system lives in assets/css/rucf.css (enqueued in functions.php).
 * This file only carries the required theme header plus a tiny critical reset so
 * the page never flashes unstyled while the main stylesheet loads.
 */

:root { color-scheme: dark; }

html { box-sizing: border-box; }
*, *::before, *::after { box-sizing: inherit; }

body {
	margin: 0;
	background: #000000;
	color: #f5f5f6;
	font-family: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; }

/* Accessibility: visible only on focus skip-link */
.rucf-skip-link {
	position: absolute;
	left: -9999px;
	top: 0;
	z-index: 9999;
	padding: 12px 20px;
	background: #ffffff;
	color: #000;
	border-radius: 0 0 10px 0;
	text-decoration: none;
}
.rucf-skip-link:focus { left: 0; }
