/* HR-UniOS - SaaSmo Edition Production Stylesheet (Electric Cyan Theme) */

@import url('https://fonts.googleapis.com/css2?family=Fira+Code:wght@400;600&family=Inter:wght@400;500;600;700;800&family=Instrument+Serif:ital@0;1&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&family=Space+Grotesk:wght@500;700;800&display=swap');

/* ==========================================================================
   SAASMO EDITION (Electric Cyan / Turquoise Theme)
   ========================================================================== */
:root, [data-variant="saasmo"] {
  --bg-primary: #0B0F19;
  --bg-secondary: #111827;
  --bg-card: rgba(17, 24, 39, 0.75);
  --glass-border: rgba(34, 211, 238, 0.3);
  --border-color: rgba(255, 255, 255, 0.1);
  --text-primary: #F9FAFB;
  --text-secondary: #9CA3AF;
  --text-muted: #6B7280;
  --accent-primary: #22D3EE;
  --accent-secondary: #06B6D4;
  --accent-gradient: linear-gradient(135deg, #22D3EE 0%, #06B6D4 50%, #3B82F6 100%);
  --font-heading: 'Plus Jakarta Sans', sans-serif;
  --font-serif: 'Plus Jakarta Sans', sans-serif;
  --radius-md: 20px;
  --radius-full: 9999px;
}

body {
  padding-top: 0;
  background-color: var(--bg-primary);
  color: var(--text-primary);
  overflow-x: hidden;
}

/* Brand Header Title */
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  font-size: 1.35rem;
}

.brand-text {
  font-weight: 800;
  color: #FFFFFF;
  letter-spacing: -0.02em;
}

.brand-divider {
  color: rgba(255, 255, 255, 0.35);
  font-weight: 300;
  margin: 0 4px;
}

.brand-subtitle {
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
}

/* Ambient Light Orbs */
.bg-ambient-orb {
  position: fixed;
  border-radius: 50%;
  filter: blur(120px);
  z-index: -1;
  pointer-events: none;
  opacity: 0.35;
}

.orb-1 {
  width: 500px;
  height: 500px;
  background: #22D3EE;
  top: -100px;
  left: 20%;
}

.orb-2 {
  width: 450px;
  height: 450px;
  background: #06B6D4;
  top: 30%;
  right: -100px;
}

.orb-3 {
  width: 600px;
  height: 600px;
  background: #3B82F6;
  bottom: -150px;
  left: -100px;
}

.hero-title {
  font-family: var(--font-heading) !important;
  font-weight: 800 !important;
  letter-spacing: -0.03em;
  font-size: clamp(2.6rem, 5vw, 4.2rem);
}

.gradient-text {
  background: linear-gradient(135deg, #67E8F9 0%, #22D3EE 50%, #3B82F6 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.glass-panel {
  background: rgba(17, 24, 39, 0.75) !important;
  backdrop-filter: blur(20px);
  border: 1px solid rgba(34, 211, 238, 0.3) !important;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5), 0 0 30px rgba(34, 211, 238, 0.2) !important;
}

.btn-cta, .btn-primary {
  background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%) !important;
  color: #0B0F19 !important;
  font-weight: 700 !important;
  border-radius: 9999px;
  box-shadow: 0 6px 25px rgba(34, 211, 238, 0.45) !important;
}

.fomo-badge {
  background: rgba(34, 211, 238, 0.15);
  border: 1px solid rgba(103, 232, 249, 0.35);
  color: #67E8F9;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  margin-bottom: 24px;
}

.pulse-dot {
  width: 8px;
  height: 8px;
  background-color: #22D3EE;
  border-radius: 50%;
  box-shadow: 0 0 10px #22D3EE;
  animation: pulse-glow 2s infinite;
}

@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

/* SaaSmo Tabbed Feature Explorer */
.saasmo-tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.saasmo-tab-btn {
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--text-secondary);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  transition: all 0.25s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.saasmo-tab-btn:hover, .saasmo-tab-btn.active {
  background: linear-gradient(135deg, #06B6D4 0%, #22D3EE 100%);
  color: #0B0F19;
  font-weight: 700;
  border-color: transparent;
  box-shadow: 0 8px 25px rgba(34, 211, 238, 0.4);
}
