/*
Theme Name: Syshus Placeholder
Theme URI: https://syshus.com
Author: Syshus
Description: A simple professional placeholder theme for Syshus rebranding, drone services, missions and upcoming information.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.8
Requires PHP: 7.4
Text Domain: syshus-placeholder
*/

:root {
  --syshus-bg: #020617;
  --syshus-bg-2: #0f172a;
  --syshus-card: rgba(15, 23, 42, 0.84);
  --syshus-text: #f8fafc;
  --syshus-muted: #cbd5e1;
  --syshus-soft: #94a3b8;
  --syshus-accent: #38bdf8;
  --syshus-accent-2: #2563eb;
  --syshus-border: rgba(148, 163, 184, 0.22);
}

* { box-sizing: border-box; }

html { min-height: 100%; }

body {
  margin: 0;
  min-height: 100vh;
  font-family: Arial, Helvetica, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(56, 189, 248, 0.20), transparent 34%),
    radial-gradient(circle at bottom left, rgba(37, 99, 235, 0.14), transparent 32%),
    linear-gradient(135deg, var(--syshus-bg) 0%, var(--syshus-bg-2) 58%, #111827 100%);
  color: var(--syshus-text);
}

a { color: var(--syshus-accent); }

.syshus-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
}

.syshus-wrap {
  width: 100%;
  max-width: 980px;
}

.syshus-card {
  border: 1px solid var(--syshus-border);
  background: var(--syshus-card);
  border-radius: 28px;
  padding: 48px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.35);
}

.syshus-brand {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 44px;
}

.syshus-logo {
  width: 44px;
  height: 44px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--syshus-accent), var(--syshus-accent-2));
  box-shadow: 0 0 28px rgba(56, 189, 248, 0.35);
  flex: 0 0 auto;
}

.syshus-brand-text {
  font-size: 1.25rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.syshus-status {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 14px;
  border: 1px solid var(--syshus-border);
  border-radius: 999px;
  color: var(--syshus-muted);
  font-size: 0.9rem;
  margin-bottom: 24px;
  background: rgba(15, 23, 42, 0.65);
}

.syshus-dot {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--syshus-accent);
  box-shadow: 0 0 14px var(--syshus-accent);
}

.syshus-title {
  font-size: clamp(2.3rem, 6vw, 5rem);
  line-height: 1;
  letter-spacing: -0.06em;
  margin: 0 0 24px;
}

.syshus-content {
  max-width: 780px;
  color: var(--syshus-muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  line-height: 1.65;
}

.syshus-content p { margin: 0 0 24px; }
.syshus-content strong { color: #ffffff; }

.syshus-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 36px;
}

.syshus-box {
  border: 1px solid var(--syshus-border);
  border-radius: 18px;
  padding: 20px;
  background: rgba(2, 6, 23, 0.35);
}

.syshus-box h2 {
  font-size: 0.95rem;
  margin: 0 0 8px;
  color: var(--syshus-accent);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.syshus-box p {
  color: var(--syshus-muted);
  line-height: 1.5;
  font-size: 0.95rem;
  margin: 0;
}

.syshus-footer {
  margin-top: 28px;
  color: var(--syshus-soft);
  font-size: 0.9rem;
  text-align: center;
}

@media (max-width: 760px) {
  .syshus-card {
    padding: 32px 24px;
    border-radius: 22px;
  }

  .syshus-brand {
    margin-bottom: 36px;
  }

  .syshus-grid {
    grid-template-columns: 1fr;
  }
}
