/*
Theme Name: WPHeal Pro
Theme URI: https://wpheal.io
Author: WPHeal Engineering & SysAdmin Team
Author URI: https://wpheal.io/team
Description: High-performance, production-grade enterprise WordPress theme for emergency recovery, incident triage, and 24/7 SysAdmin operations. Features custom Font Manager, Server Telemetry, Telegram SOS Webhooks, LiteSpeed Cache hooks, and Encrypted Client Portal.
Version: 1.0.0
Requires at least: 6.2
Tested up to: 6.7
Requires PHP: 8.2
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: wpheal-pro
Tags: emergency-recovery, one-page, client-portal, theme-options, custom-fonts, typography-engine, translation-ready, accessibility-ready, block-styles, full-width-template
*/

:root {
  --wpheal-primary-dark: #0f172a;
  --wpheal-primary-hover: #1e293b;
  --wpheal-emergency-red: #dc2626;
  --wpheal-emergency-hover: #b91c1c;
  --wpheal-emerald: #059669;
  --wpheal-emerald-hover: #047857;
  --wpheal-emerald-light: #22c55e;
  --wpheal-charcoal: #475569;
  --wpheal-border-color: #e2e8f0;
  --wpheal-bg-light: #ffffff;
  --wpheal-surface-card: #ffffff;
  --wpheal-font-sans: 'Inter', -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --wpheal-font-heading: 'Inter', sans-serif;
  --wpheal-font-body: 'Inter', sans-serif;
  --wpheal-font-mono: 'JetBrains Mono', monospace;
  --wpheal-font-buttons: 'Inter', sans-serif;
  --wpheal-heading-weight: 700;
  --wpheal-body-line-height: 1.6;
  --wpheal-heading-spacing: -0.02em;
  --wpheal-container-max: 1280px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  font-family: var(--wpheal-font-body, var(--wpheal-font-sans));
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  text-rendering: optimizeLegibility;
}

body {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  color: var(--wpheal-charcoal);
  background-color: var(--wpheal-bg-light);
  background-image: radial-gradient(#e2e8f0 1px, transparent 1px);
  background-size: 20px 20px;
  line-height: var(--wpheal-body-line-height, 1.6);
  font-size: 1rem;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--wpheal-font-heading, var(--wpheal-font-sans));
  font-weight: var(--wpheal-heading-weight, 700);
  letter-spacing: var(--wpheal-heading-spacing, -0.02em);
  color: var(--wpheal-primary-dark);
}

button, .button, input[type="submit"] {
  font-family: var(--wpheal-font-buttons, var(--wpheal-font-sans));
}

code, pre, kbd, samp, .font-mono {
  font-family: var(--wpheal-font-mono, monospace);
}

.screen-reader-text {
  border: 0;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  height: 1px;
  margin: -1px;
  overflow: hidden;
  padding: 0;
  position: absolute !important;
  width: 1px;
  word-wrap: normal !important;
}

.screen-reader-text:focus {
  background-color: #f1f1f1;
  border-radius: 3px;
  box-shadow: 0 0 2px 2px rgba(0, 0, 0, 0.6);
  clip: auto !important;
  clip-path: none;
  color: #21759b;
  display: block;
  font-size: 0.875rem;
  font-weight: 700;
  height: auto;
  left: 5px;
  line-height: normal;
  padding: 15px 23px 14px;
  text-decoration: none;
  top: 5px;
  width: auto;
  z-index: 100000;
}